Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions benchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void execute_32_bit(Benchmark benchmark, bool pareto, bool only_mode,
check_only("IBTree", benchmark_32_ibtree(benchmark, pareto));
check_only("FAST", benchmark_32_fast(benchmark, pareto));
check_only("ALEX", benchmark_32_alex(benchmark, pareto));
check_only("RMI_CPP", benchmark_32_rmi_cpp(benchmark, pareto));
check_only("RMI-Maltry", benchmark_32_rmi_cpp(benchmark, pareto));
#ifndef __APPLE__
#ifndef DISABLE_FST
check_only("FST", benchmark_32_fst(benchmark, pareto));
Expand Down Expand Up @@ -88,7 +88,7 @@ void execute_64_bit(Benchmark benchmark, bool pareto, bool only_mode,
check_only("IBTree", benchmark_64_ibtree(benchmark, pareto));
check_only("FAST", benchmark_64_fast(benchmark, pareto));
check_only("ALEX", benchmark_64_alex(benchmark, pareto));
check_only("RMI_CPP", benchmark_64_rmi_cpp(benchmark, pareto));
check_only("RMI-Maltry", benchmark_64_rmi_cpp(benchmark, pareto));
#ifndef __APPLE__
#ifndef DISABLE_FST
check_only("FST", benchmark_64_fst(benchmark, pareto));
Expand Down
2 changes: 1 addition & 1 deletion competitors/rmi_cpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class RMICpp : public Competitor {
});
}

std::string name() const { return "RMICpp"; }
std::string name() const { return "RMI-Maltry"; }

std::size_t size() const { return rmi_->size_in_bytes(); }

Expand Down
2 changes: 1 addition & 1 deletion competitors/rmi_cpp_robust.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class RMICppRobust : public Competitor {
});
}

std::string name() const { return "RMICppRobust"; }
std::string name() const { return "RMI-Maltry-Heuristic"; }

std::size_t size() const { return rmi_->size_in_bytes(); }

Expand Down