]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/binpack/binpack.factor
sequences: rename supremum-by/infinum-by
[factor.git] / extra / math / binpack / binpack.factor
index c269c73c3c8a98e71d9e6c4461e751bb984b9067..a62d0e102beca7251a896fc3199fab3f9ac6204f 100644 (file)
@@ -13,7 +13,7 @@ TUPLE: bin items total ;
     V{ } clone 0 bin boa ; inline
 
 : smallest-bin ( bins -- bin )
-    [ total>> ] infimum-by ; inline
+    [ total>> ] minimum-by ; inline
 
 : add-to-bin ( item weight bin -- )
     [ + ] change-total items>> push ;