]> gitweb.factorcode.org Git - factor.git/commitdiff
benchmark.struct-arrays: doesn't actually need HINTS:
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sun, 30 Aug 2009 02:23:35 +0000 (21:23 -0500)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sun, 30 Aug 2009 02:23:35 +0000 (21:23 -0500)
extra/benchmark/struct-arrays/struct-arrays.factor

index 827604a39ef7fd01b941b1377e15e1a5f9b49af9..faed2f4dcad3f02e9ec093aacd459fbfbf8baf02 100644 (file)
@@ -2,7 +2,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors classes.struct combinators.smart fry kernel
 math math.functions math.order math.parser sequences
-struct-arrays hints io ;
+struct-arrays io ;
 IN: benchmark.struct-arrays
 
 STRUCT: point { x float } { y float } { z float } ;
@@ -45,8 +45,6 @@ STRUCT: point { x float } { y float } { z float } ;
 : struct-array-benchmark ( len -- )
     make-points [ normalize-points ] [ max-points ] bi print-point ;
 
-HINTS: struct-array-benchmark fixnum ;
-
 : main ( -- ) 5000000 struct-array-benchmark ;
 
 MAIN: main