]> gitweb.factorcode.org Git - factor.git/commitdiff
Updating non-core libraries for monotonic? change
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Fri, 16 Jan 2009 23:02:54 +0000 (17:02 -0600)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Fri, 16 Jan 2009 23:02:54 +0000 (17:02 -0600)
basis/compiler/cfg/linear-scan/linear-scan-tests.factor
basis/grouping/grouping-tests.factor
basis/io/files/unix/unix-tests.factor
basis/roman/roman.factor
core/generic/standard/standard-tests.factor
core/kernel/kernel-tests.factor
core/math/floats/floats-tests.factor
core/sorting/sorting-tests.factor
core/vocabs/loader/loader-tests.factor
extra/project-euler/052/052.factor

index 7420b4fd175f7ad1c495d8a689aab1b3f6234e01..4ddd1fdc0b18256d698ee4f1ae10ba29e25ceb3e 100644 (file)
@@ -1,7 +1,7 @@
 IN: compiler.cfg.linear-scan.tests
 USING: tools.test random sorting sequences sets hashtables assocs
 kernel fry arrays splitting namespaces math accessors vectors
-math.order
+math.order grouping
 cpu.architecture
 compiler.cfg.instructions
 compiler.cfg.registers
index 647f95f2cb36bf9a24617ceb01b1d7e42d5e24c2..c91e5a56d683ab83e274c66ecd7246f75450a4e4 100644 (file)
@@ -1,4 +1,5 @@
-USING: grouping tools.test kernel sequences arrays ;
+USING: grouping tools.test kernel sequences arrays
+math ;
 IN: grouping.tests
 
 [ { 1 2 3 } 0 group ] must-fail
index 003cb40621258d38bf4126aea11caa67d5909ff2..d2f4494b0c6ab8867975f754a15499b049513f92 100644 (file)
@@ -1,7 +1,8 @@
 USING: tools.test io.files io.files.temp io.pathnames
 io.directories io.files.info io.files.info.unix continuations
 kernel io.files.unix math.bitwise calendar accessors
-math.functions math unix.users unix.groups arrays sequences ;
+math.functions math unix.users unix.groups arrays sequences
+grouping ;
 IN: io.files.unix.tests
 
 [ "/usr/libexec/" ] [ "/usr/libexec/awk/" parent-directory ] unit-test
index c9394b07ed348f6f0fb648a10e55b4319c190302..81a6d69a09a9fb69749a61b63e96301cf9208ae6 100644 (file)
@@ -2,7 +2,8 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: arrays assocs kernel math math.order math.vectors
 namespaces make quotations sequences splitting.monotonic
-sequences.private strings unicode.case lexer parser ;
+sequences.private strings unicode.case lexer parser
+grouping ;
 IN: roman
 
 <PRIVATE
index f5f8f85376794470401b94317cfc5eda4031c71b..516d40893388d0ed662aac74bfbf7795e7eaf82b 100644 (file)
@@ -4,7 +4,8 @@ generic.standard strings sequences arrays kernel accessors words
 specialized-arrays.double byte-arrays bit-arrays parser
 namespaces make quotations stack-checker vectors growable
 hashtables sbufs prettyprint byte-vectors bit-vectors
-specialized-vectors.double definitions generic sets graphs assocs ;
+specialized-vectors.double definitions generic sets graphs assocs
+grouping ;
 
 GENERIC: lo-tag-test ( obj -- obj' )
 
index 7ebaaeb3a86f3abba85f0195bf3a1394fc486f87..4d725e57f892c3b150a992c63b838d5573d2545b 100644 (file)
@@ -1,7 +1,7 @@
 USING: arrays byte-arrays kernel kernel.private math memory
 namespaces sequences tools.test math.private quotations
 continuations prettyprint io.streams.string debugger assocs
-sequences.private accessors locals.backend ;
+sequences.private accessors locals.backend grouping ;
 IN: kernel.tests
 
 [ 0 ] [ f size ] unit-test
index dbdd5b27fea356a65686a597fca1200f7d05caf3..27cc510ea2861f70549961965ab02f4931b41058 100644 (file)
@@ -1,4 +1,5 @@
-USING: kernel math math.constants tools.test sequences ;
+USING: kernel math math.constants tools.test sequences
+grouping ;
 IN: math.floats.tests
 
 [ t ] [ 0.0 float? ] unit-test
index 74cbe3b532a109964aaf54bd5a79d85961faf245..0bda4ba9b0be9e4324c69677d6734c4a7c1e3d3e 100644 (file)
@@ -1,5 +1,5 @@
 USING: sorting sequences kernel math math.order random
-tools.test vectors sets vocabs ;
+tools.test vectors sets vocabs grouping ;
 IN: sorting.tests
 
 [ { } ] [ { } natural-sort ] unit-test
index 57bc824f59b0614b62433d2fdce1674eef3ff28a..cb4a0b50aa9c78f176f162ce25705ced54d78911 100644 (file)
@@ -3,7 +3,7 @@ USING: vocabs.loader tools.test continuations vocabs math
 kernel arrays sequences namespaces io.streams.string
 parser source-files words assocs classes.tuple definitions
 debugger compiler.units tools.vocabs accessors eval
-combinators vocabs.parser ;
+combinators vocabs.parser grouping ;
 
 ! This vocab should not exist, but just in case...
 [ ] [
index c382d992f660db94992bd95c19cb2fecf23d7721..6245a794af257dfd4f3b46b3970b8076b192521e 100644 (file)
@@ -1,7 +1,8 @@
 ! Copyright (c) 2008 Aaron Schaefer.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: combinators.short-circuit kernel math
-    project-euler.common sequences sorting ;
+    project-euler.common sequences sorting
+    grouping ;
 IN: project-euler.052
 
 ! http://projecteuler.net/index.php?section=problems&id=52