28 Jul
2013
28 Jul
'13
10:18 a.m.
On Fri, Jul 26, 2013 at 3:49 PM, Evgeny Panasyuk
FYI, some time ago I implemented verification of sorting - https://ideone.com/WeZU66 It generates sorted sequences of given size "isomorphic" to all other sorted sequences of that size. I.e. for N=3 it generates: 0 1 2 0 1 1 0 0 1 0 0 0 For each of such sorted sequences it loops thru all possible permutations and tests given sorting algorithm. I have just successfully tested boost::spread_sort and boost::integer_sort for N [0, 12).
Thanks Evgeny.