]> gitweb.factorcode.org Git - factor.git/commitdiff
Remove useless USING:
authorSamuel Tardieu <sam@rfc1149.net>
Sat, 6 Mar 2010 13:31:46 +0000 (14:31 +0100)
committerSamuel Tardieu <sam@rfc1149.net>
Sat, 6 Mar 2010 13:31:46 +0000 (14:31 +0100)
extra/astar/astar.factor

index 6a5c431ae4d22f00bf46192960fe4989c483a302..1912b6af21606cb43b521d97a27dff950c138568 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2010 Samuel Tardieu.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays assocs heaps kernel math math.order sequences sets shuffle ;
+USING: accessors assocs heaps kernel math sequences sets shuffle ;
 IN: astar
 
 ! This implements the A* algorithm. See http://en.wikipedia.org/wiki/A*