]> gitweb.factorcode.org Git - factor.git/commitdiff
Some files only need lists.lazy, not lists as well
authorJames Cash <james.nvc@gmail.com>
Tue, 3 Jun 2008 08:41:36 +0000 (04:41 -0400)
committerJames Cash <james.nvc@gmail.com>
Tue, 3 Jun 2008 08:41:36 +0000 (04:41 -0400)
extra/math/erato/erato-tests.factor
extra/math/erato/erato.factor
extra/math/primes/primes-tests.factor
extra/math/primes/primes.factor
extra/parser-combinators/parser-combinators-tests.factor
extra/parser-combinators/simple/simple.factor
extra/project-euler/007/007.factor

index 1f59659fa9901bfc9150a3fe719b7784715a8681..041cb8dc3af6e1c89f7843b9b2fb816051a06883 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (c) 2007 Samuel Tardieu.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: lists lists.lazy math.erato tools.test ;
+USING: lists.lazy math.erato tools.test ;
 IN: math.erato.tests
 
 [ { 2 3 5 7 11 13 17 19 } ] [ 20 lerato list>array ] unit-test
index 292cec8deff0439ed73148a6c595c82adee13b43..b9d997c038ac5215427a918e8dd56a071aeaacfb 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (c) 2007 Samuel Tardieu.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: bit-arrays kernel lists lists.lazy math math.functions math.primes.list
+USING: bit-arrays kernel lists.lazy math math.functions math.primes.list
        math.ranges sequences ;
 IN: math.erato
 
index 2db98af893ff6502837447a17405581da627cbb9..186acc9b1127d3b3808e2fe6221b00bbbaa30ecd 100644 (file)
@@ -1,4 +1,4 @@
-USING: arrays math.primes tools.test lists lists.lazy ;
+USING: arrays math.primes tools.test lists.lazy ;
 
 { 1237 } [ 1234 next-prime ] unit-test
 { f t } [ 1234 prime? 1237 prime? ] unit-test
index e42bb8d82d110ae50368bb16a69b0bd31a26b920..59aebbf0dd632cf9f1797542c1b9f63d7c1481d0 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2007 Samuel Tardieu.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: combinators kernel lists lists.lazy math math.functions math.miller-rabin
+USING: combinators kernel lists.lazy math math.functions math.miller-rabin
        math.order math.primes.list math.ranges sequences sorting ;
 IN: math.primes
 
index 062277ec4d6f2b42dff2ae3d466397d97fa71cd3..70698daa0bf73bc8fe501b69980d853b8c590d5a 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2005 Chris Double.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel lists lists.lazy tools.test strings math
+USING: kernel lists.lazy tools.test strings math
 sequences parser-combinators arrays math.parser unicode.categories ;
 IN: parser-combinators.tests
 
index 5182260e982690a1aaea4156513423249d2e1f21..f7a696ca35cd1ac269d324d7f2cefc8f2e9b494b 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2006 Chris Double.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel strings math sequences lists lists.lazy words
+USING: kernel strings math sequences lists.lazy words
 math.parser promises parser-combinators unicode.categories ;
 IN: parser-combinators.simple
 
index 10e95bd2b5c3ab56020bb8e15ac0424bc754e467..40178c42919dddc22527bb657aa8a598e5602ef0 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (c) 2007 Aaron Schaefer.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: lists lists.lazy math math.primes ;
+USING: lists.lazy math math.primes ;
 IN: project-euler.007
 
 ! http://projecteuler.net/index.php?section=problems&id=7