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-10-08 01:15:14 -04:00
100000 [ drop 100000 random-int ] map number-sort drop ; compiled
2004-12-17 21:46:19 -05:00
[ ] [ sort-benchmark ] unit-test