]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/tuple-arrays/tuple-arrays.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / extra / benchmark / tuple-arrays / tuple-arrays.factor
index 483311d4f4c9d7fed812fc892ef89c0213b33036..bd9a7139b3c3511214088df988538e4e61a6d289 100644 (file)
@@ -11,10 +11,10 @@ TUPLE-ARRAY: point
 : tuple-array-benchmark ( -- )
     100 [
         drop 5000 <point-array> [
-            [ 1+ ] change-x
-            [ 1- ] change-y
-            [ 1+ 2 / ] change-z
+            [ 1 + ] change-x
+            [ 1 - ] change-y
+            [ 1 + 2 / ] change-z
         ] map [ z>> ] sigma
     ] sigma . ;
 
-MAIN: tuple-array-benchmark
\ No newline at end of file
+MAIN: tuple-array-benchmark