factor/library/test/benchmark/sort.factor

8 lines
181 B
Factor
Raw Normal View History

IN: temporary
2005-08-14 01:17:25 -04:00
USING: compiler kernel math sequences test ;
2004-08-23 23:27:55 -04:00
2004-12-17 21:46:19 -05:00
: sort-benchmark
2005-08-14 01:17:25 -04:00
100000 [ drop 0 10000 random-int ] map [ - ] sort drop ; compiled
2004-12-17 21:46:19 -05:00
[ ] [ sort-benchmark ] unit-test