From 880fb7e991a6ca71696888281567a7d7f1b399af Mon Sep 17 00:00:00 2001 From: Richard Thier Date: Sat, 1 Jul 2023 06:37:20 +0200 Subject: [PATCH] with -g it seems there is some error actually... --- ypsu.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ypsu.cpp b/ypsu.cpp index b643881..d6c53a8 100644 --- a/ypsu.cpp +++ b/ypsu.cpp @@ -510,8 +510,8 @@ void measure_single(int n) { int main(void) { //int n = 100000000; //int n = 10000000; - //int n = 1000000; - int n = 100000; + int n = 1000000; + //int n = 100000; //int n = 10000; //int n = 100; //int n = 10; @@ -574,10 +574,12 @@ int main(void) { measure(inputtype, "magbuck2", [&] { magyar_bucket_sort2(&w[0], w.size()); }); assert(w == expected); */ - //w = {10, 20, 5, 200, 42, 41, 43, 5}; + /* w = v; + //w = {10, 20, 5, 200, 42, 41, 43, 5}; measure(inputtype, "qsmine", [&] { thier_quicksort(&w[0], w.size()); }); assert(w == expected); + */ w = v; measure(inputtype, "thier", [&] { thiersort_uintkey8(&w[0], w.size()); }); if(w != expected) {