Skip to content

Commit

Permalink
Replace deprecated verge_sort with spin_sort in patterns benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
Morwenn committed Jul 2, 2023
1 parent 55aaccf commit ae3ecdd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmarks/patterns/bars.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def main():
"pdq_sort",
"quick_sort",
"ska_sort",
"spin_sort",
"std_sort",
"verge_sort",
]

root = pathlib.Path(args.root)
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/patterns/bench.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2015-2021 Morwenn
* Copyright (c) 2015-2023 Morwenn
* SPDX-License-Identifier: MIT
*/

Expand Down Expand Up @@ -77,8 +77,8 @@ int main()
{ "pdq_sort", cppsort::pdq_sort },
{ "quick_sort", cppsort::quick_sort },
{ "ska_sort", cppsort::ska_sort },
{ "spin_sort", cppsort::spin_sort },
{ "std_sort", cppsort::std_sort },
{ "verge_sort", cppsort::verge_sort },
};

std::size_t sizes[] = { 1'000'000 };
Expand Down

0 comments on commit ae3ecdd

Please sign in to comment.