]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/math/primes/pollard-rho-brent/pollard-rho-brent.factor
factor: Move math.ranges => ranges.
[factor.git] / basis / math / primes / pollard-rho-brent / pollard-rho-brent.factor
index 66f32e0388372afcf0a1c627753119e2113822f0..2a038c8cde57b7bb25a27b4b2373110f5a3c3b68 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2021 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: arrays kernel make math math.order math.primes
-math.ranges random sorting ;
+ranges random sorting ;
 IN: math.primes.pollard-rho-brent
 
 ! https://comeoncodeon.wordpress.com/2010/09/18/pollard-rho-brent-integer-factorization/