Adding bin-packing routines in extra/math/binpack.

db4
John Benediktsson 2008-10-01 19:58:53 -07:00
parent 0b57ce6c52
commit b0ad7dfebc
5 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1 @@
John Benediktsson

View File

@ -0,0 +1,19 @@
! Copyright (C) 2008 John Benediktsson
! See http://factorcode.org/license.txt for BSD license
USING: help.syntax help.markup kernel assocs sequences quotations ;
IN: math.binpack
HELP: binpack
{ $values { "assoc" assoc } { "n" "number of bins" } { "bins" "packed bins" } }
{ $description "Packs the (key, value) pairs into the specified number of bins, using the value as a weight." } ;
HELP: binpack*
{ $values { "items" sequence } { "n" "number of bins" } { "bins" "packed bins" } }
{ $description "Packs a sequence of numbers into the specified number of bins." } ;
HELP: binpack!
{ $values { "items" sequence } { "quot" quotation } { "n" "number of bins" } { "bins" "packed bins" } }
{ $description "Packs a sequence of items into the specified number of bins, using the quotatino to determine the weight." } ;

View File

@ -0,0 +1,11 @@
! Copyright (C) 2008 John Benediktsson
! See http://factorcode.org/license.txt for BSD license
USING: kernel tools.test ;
[ t ] [ { { 3 } { 2 1 } } { 1 2 3 } 2 binpack-numbers = ] unit-test
[ t ] [ { { 1000 } { 100 30 } { 70 40 23 } { 60 60 7 3 } }
{ 100 23 40 60 1000 30 60 07 70 03 } 3 binpack-numbers = ] unit-test

View File

@ -0,0 +1,21 @@
! Copyright (C) 2008 John Benediktsson
! See http://factorcode.org/license.txt for BSD license
USING: sequences kernel arrays vectors accessors assocs sorting math math.functions ;
IN: math.binpack
: (binpack) ( bins item -- )
swap dup [ [ second ] map sum ] map swap zip sort-keys values first push ;
: binpack ( assoc n -- bins )
[ sort-values reverse [ length ] keep swap ] dip
[ / ceiling ] keep <array> [ <vector> ] map
swap [ dupd (binpack) ] each ;
: binpack* ( items n -- bins )
[ dup zip ] dip binpack [ keys ] map ;
: binpack! ( items quot n -- bins )
[ dup ] 2dip [ map zip ] dip binpack [ keys ] map ;

View File

@ -0,0 +1 @@
Bin-packing algorithms.