2005-07-31 23:38:33 -04:00
|
|
|
USING: compiler hashtables kernel math namespaces sequences test ;
|
2004-10-27 21:21:31 -04:00
|
|
|
|
|
|
|
: store-hash ( hashtable n -- )
|
2005-09-24 23:21:09 -04:00
|
|
|
[ dup pick set-hash ] each drop ;
|
2004-10-27 21:21:31 -04:00
|
|
|
|
|
|
|
: lookup-hash ( hashtable n -- )
|
2005-09-24 23:21:09 -04:00
|
|
|
[ over hash drop ] each drop ;
|
2004-10-27 21:21:31 -04:00
|
|
|
|
2005-07-22 22:18:47 -04:00
|
|
|
: hashtable-benchmark ( -- )
|
|
|
|
100 [
|
2005-09-24 23:21:09 -04:00
|
|
|
drop
|
|
|
|
80000 100000 <hashtable> swap 2dup store-hash lookup-hash
|
|
|
|
] each ; compiled
|
2004-10-27 21:21:31 -04:00
|
|
|
|
2005-07-22 22:18:47 -04:00
|
|
|
[ ] [ hashtable-benchmark ] unit-test
|