]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/math/primes/factors/factors.factor
factor: update download to return path and using lists
[factor.git] / basis / math / primes / factors / factors.factor
index 20a485e46fc10ab79c43db098676ea84e407f000..a0626143db578ed0f1dde1c6c8103ebe792e3504 100644 (file)
@@ -2,8 +2,8 @@
 ! See https://factorcode.org/license.txt for BSD license.
 USING: arrays combinators command-line io kernel math
 math.functions math.parser math.primes.pollard-rho-brent
-ranges math.statistics namespaces sequences
-sequences.product sets sorting splitting ;
+math.statistics namespaces ranges sequences sequences.product
+sets sorting splitting ;
 IN: math.primes.factors
 
 : factors ( n -- seq ) pollard-rho-brent-factors ; flushable