2008-10-01 22:58:53 -04:00
|
|
|
! Copyright (C) 2008 John Benediktsson
|
|
|
|
! See http://factorcode.org/license.txt for BSD license
|
|
|
|
|
|
|
|
USING: help.syntax help.markup kernel assocs sequences quotations ;
|
|
|
|
|
2014-11-29 18:54:14 -05:00
|
|
|
IN: math.binpack
|
2008-10-01 22:58:53 -04:00
|
|
|
|
|
|
|
HELP: binpack
|
2014-11-29 18:54:14 -05:00
|
|
|
{ $values { "items" sequence } { "#bins" "number of bins" } { "bins" "packed bins" } }
|
2008-10-01 22:58:53 -04:00
|
|
|
{ $description "Packs a sequence of numbers into the specified number of bins." } ;
|
|
|
|
|
2014-11-29 18:54:14 -05:00
|
|
|
HELP: map-binpack
|
|
|
|
{ $values { "items" sequence } { "quot" { $quotation ( item -- weight ) } } { "#bins" "number of bins" } { "bins" "packed bins" } }
|
2008-12-09 19:40:32 -05:00
|
|
|
{ $description "Packs a sequence of items into the specified number of bins, using the quotation to determine the weight." } ;
|
2008-10-01 22:58:53 -04:00
|
|
|
|