From b1ab4f2f87aab61193569dab0ac8dcc698039ac6 Mon Sep 17 00:00:00 2001 From: Richard Thier Date: Tue, 16 Aug 2022 16:00:02 +0200 Subject: [PATCH] tested sp sort and works the first version. Slightly slower on random than std and sometimes slightly faster - but this version do copies that I should optimize out! --- ypsu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ypsu.cpp b/ypsu.cpp index f1362c0..19143a8 100644 --- a/ypsu.cpp +++ b/ypsu.cpp @@ -393,9 +393,9 @@ } int main(void) { - //int n = 100000000; + int n = 100000000; //int n = 10000000; - int n = 64; + //int n = 64; for (auto inputtype : inputtypes) { printf("%10s", inputtype.c_str()); fflush(stdout);