]> gitweb.factorcode.org Git - factor.git/commitdiff
basis/extra: fix using for map-index move back to sequences.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 12 Nov 2014 02:00:44 +0000 (18:00 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 12 Nov 2014 02:00:44 +0000 (18:00 -0800)
basis/game/input/xinput/xinput.factor
basis/interpolate/interpolate.factor
extra/classes/struct/vectored/vectored.factor
extra/cuda/demos/hello-world/hello-world.factor
extra/math/matrices/laplace/laplace.factor
extra/math/transforms/fft/fft.factor
extra/project-euler/022/022.factor
extra/rosetta-code/bitmap/bitmap.factor
unmaintained/adsoda/combinators/combinators.factor

index bce908edc8efbf307ec4486cc766d7638c24ac61..c51ec1e09812c66863a3d228dd9149f9be235155 100644 (file)
@@ -1,4 +1,4 @@
-USING: assocs game.input math math.order kernel macros fry sequences quotations
+USING: game.input math math.order kernel macros fry sequences quotations
 arrays windows.directx.xinput combinators accessors windows.types
 game.input.dinput sequences.private namespaces classes.struct
 windows.errors windows.com.syntax alien.strings ;
index 8a0b43797034063472f25ed902b6b406d9520b01..bed5b7416c9e79586d327a3c48977505641267c8 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays assocs fry hashtables io kernel macros make
+USING: accessors arrays fry hashtables io kernel macros make
 math.parser multiline namespaces present sequences
 sequences.generalizations splitting strings vocabs.parser ;
 IN: interpolate
index fff479b7984305e25f275770903dbd38c6782911..53f9fce988a5e0e18fd6a07027d9e19d9ad65142 100644 (file)
@@ -1,5 +1,5 @@
 ! (c)2009 Joe Groff bsd license
-USING: accessors assocs classes.struct classes.tuple combinators fry
+USING: accessors classes.struct classes.tuple combinators fry
 functors kernel locals macros math parser quotations sequences
 sequences.private slots specialized-arrays words ;
 IN: classes.struct.vectored
index 68c3064be13bef654a7e9dd7fcc47e2319bed37e..8a7adb7b4deff499d7f8524ab08e30bf53acb2d9 100644 (file)
@@ -3,7 +3,7 @@
 USING: accessors alien.c-types alien.strings byte-arrays cuda
 cuda.contexts cuda.devices cuda.libraries cuda.memory cuda.syntax
 destructors io io.encodings.string io.encodings.utf8 kernel locals
-math math.parser namespaces sequences strings assocs ;
+math math.parser namespaces sequences strings ;
 IN: cuda.demos.hello-world
 
 CUDA-LIBRARY: hello cuda32 vocab:cuda/demos/hello-world/hello.ptx
index dcc6f39a1a9486df902430272c419dda49e9bf23..817fa89d9a9845bc1a2f5949f13aee3691d8c740 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2013 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays assocs fry kernel locals math math.matrices
+USING: accessors arrays fry kernel locals math math.matrices
 math.vectors sequences sequences.private ;
 IN: math.matrices.laplace
 
index 3c76051c990153c68117aec419886c40e502fcb8..b887b55a5345fe405a7caf2624625721dd96dfe2 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (c) 2012 John Benediktsson
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays assocs kernel locals math math.constants math.functions
+USING: arrays kernel locals math math.constants math.functions
 math.vectors sequences sequences.extras sequences.private ;
 IN: math.transforms.fft
 
index a20d568c7b5aab7d6ac765a43c3a92e6a699f83e..fa498d84999481987187084dff92d68ef7cce12c 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (c) 2007 Aaron Schaefer.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: ascii assocs io.encodings.ascii io.files kernel math
+USING: ascii io.encodings.ascii io.files kernel math
 project-euler.common sequences sorting splitting ;
 IN: project-euler.022
 
index 114249ca3807827f11fdaf27de9e24c7c6ae94ed..3cac8cba12e1e827ac6842b15824ebf08cbe087d 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (c) 2012 Anonymous
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays assocs fry kernel math.matrices sequences ;
+USING: arrays fry kernel math.matrices sequences ;
 IN: rosetta-code.bitmap
 
 ! http://rosettacode.org/wiki/Basic_bitmap_storage
index 8b0ceca0abbf062831295757a7d4ae41c9f14be1..52a5b83c5180e3dc7a2c2d2dc0ac441fb6163c49 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Jeff Bigot\r
 ! See http://factorcode.org/license.txt for BSD license.\r
-USING: kernel arrays assocs sequences fry math combinators ;\r
+USING: kernel arrays sequences fry math combinators ;\r
 \r
 IN: adsoda.combinators\r
 \r