gecoder-with-gecode 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +6 -0
- data/README +1 -1
- data/THANKS +18 -0
- data/example/equation_system.rb +3 -1
- data/example/magic_sequence.rb +3 -1
- data/example/queens.rb +3 -1
- data/example/send_more_money.rb +24 -30
- data/example/send_most_money.rb +15 -26
- data/example/square_tiling.rb +3 -1
- data/example/sudoku-set.rb +3 -1
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/LICENSE +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/Makefile.contribs +0 -0
- data/ext/gecode-2.2.0/Makefile.dep +8056 -0
- data/ext/gecode-2.2.0/Makefile.in +1590 -0
- data/ext/gecode-2.2.0/changelog.in +2698 -0
- data/ext/gecode-2.2.0/configure +13112 -0
- data/ext/gecode-2.2.0/configure.ac +273 -0
- data/ext/gecode-2.2.0/configure.ac.in +269 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/contribs/README +0 -0
- data/ext/gecode-2.2.0/contribs/qecode/Doxyfile +263 -0
- data/ext/gecode-2.2.0/contribs/qecode/Implicative.cc +267 -0
- data/ext/gecode-2.2.0/contribs/qecode/Implicative.hh +164 -0
- data/ext/gecode-2.2.0/contribs/qecode/Makefile.in.in +163 -0
- data/ext/gecode-2.2.0/contribs/qecode/OptVar.cc +82 -0
- data/ext/gecode-2.2.0/contribs/qecode/OptVar.hh +123 -0
- data/ext/gecode-2.2.0/contribs/qecode/Strategy.cc +131 -0
- data/ext/gecode-2.2.0/contribs/qecode/Strategy.hh +91 -0
- data/ext/gecode-2.2.0/contribs/qecode/StrategyNode.cc +62 -0
- data/ext/gecode-2.2.0/contribs/qecode/StrategyNode.hh +47 -0
- data/ext/gecode-2.2.0/contribs/qecode/autom4te.cache/output.0 +2264 -0
- data/ext/gecode-2.2.0/contribs/qecode/autom4te.cache/requests +115 -0
- data/ext/gecode-2.2.0/contribs/qecode/autom4te.cache/traces.0 +57 -0
- data/ext/gecode-2.2.0/contribs/qecode/config.log +147 -0
- data/ext/gecode-2.2.0/contribs/qecode/config.status +817 -0
- data/ext/gecode-2.2.0/contribs/qecode/configure +2264 -0
- data/ext/gecode-2.2.0/contribs/qecode/configure.ac +23 -0
- data/ext/gecode-2.2.0/contribs/qecode/examples/COMPILING +13 -0
- data/ext/gecode-2.2.0/contribs/qecode/examples/MatrixGame.cpp +140 -0
- data/ext/gecode-2.2.0/contribs/qecode/examples/NimFibo.cpp +73 -0
- data/ext/gecode-2.2.0/contribs/qecode/examples/connect-5-3-3-3.cpp +842 -0
- data/ext/gecode-2.2.0/contribs/qecode/examples/network-pricing.cc +146 -0
- data/ext/gecode-2.2.0/contribs/qecode/examples/optim2.cc +149 -0
- data/ext/gecode-2.2.0/contribs/qecode/examples/stress_test.cpp +240 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/contribs/qecode/heap.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/contribs/qecode/myDom.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/contribs/qecode/myspace.cc +0 -0
- data/ext/gecode-2.2.0/contribs/qecode/myspace.hh +68 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/contribs/qecode/qecode.hh +0 -0
- data/ext/gecode-2.2.0/contribs/qecode/qsolver.cc +268 -0
- data/ext/gecode-2.2.0/contribs/qecode/qsolver.hh +46 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/contribs/qecode/shortdesc.ac +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/contribs/qecode/vartype.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/doxygen/doxygen.conf.in +0 -0
- data/ext/gecode-2.2.0/doxygen/doxygen.hh.in +1112 -0
- data/ext/gecode-2.2.0/doxygen/reflection.hh +417 -0
- data/ext/gecode-2.2.0/examples/all-interval.cc +133 -0
- data/ext/gecode-2.2.0/examples/alpha.cc +137 -0
- data/ext/gecode-2.2.0/examples/bacp.cc +521 -0
- data/ext/gecode-2.2.0/examples/baseline.cc +87 -0
- data/ext/gecode-2.2.0/examples/bibd.cc +203 -0
- data/ext/gecode-2.2.0/examples/black-hole.cc +389 -0
- data/ext/gecode-2.2.0/examples/crew.cc +286 -0
- data/ext/gecode-2.2.0/examples/crowded-chess.cc +424 -0
- data/ext/gecode-2.2.0/examples/domino.cc +297 -0
- data/ext/gecode-2.2.0/examples/donald.cc +107 -0
- data/ext/gecode-2.2.0/examples/eq20.cc +125 -0
- data/ext/gecode-2.2.0/examples/golf.cc +297 -0
- data/ext/gecode-2.2.0/examples/golomb-ruler.cc +199 -0
- data/ext/gecode-2.2.0/examples/graph-color.cc +407 -0
- data/ext/gecode-2.2.0/examples/grocery.cc +113 -0
- data/ext/gecode-2.2.0/examples/hamming.cc +129 -0
- data/ext/gecode-2.2.0/examples/ind-set.cc +143 -0
- data/ext/gecode-2.2.0/examples/javascript.cc +163 -0
- data/ext/gecode-2.2.0/examples/kakuro.cc +686 -0
- data/ext/gecode-2.2.0/examples/knights.cc +220 -0
- data/ext/gecode-2.2.0/examples/langford-number.cc +225 -0
- data/ext/gecode-2.2.0/examples/magic-sequence.cc +146 -0
- data/ext/gecode-2.2.0/examples/magic-square.cc +138 -0
- data/ext/gecode-2.2.0/examples/minesweeper.cc +304 -0
- data/ext/gecode-2.2.0/examples/money.cc +105 -0
- data/ext/gecode-2.2.0/examples/nonogram.cc +492 -0
- data/ext/gecode-2.2.0/examples/ortho-latin.cc +172 -0
- data/ext/gecode-2.2.0/examples/partition.cc +141 -0
- data/ext/gecode-2.2.0/examples/pentominoes.cc +949 -0
- data/ext/gecode-2.2.0/examples/perfect-square.cc +311 -0
- data/ext/gecode-2.2.0/examples/photo.cc +170 -0
- data/ext/gecode-2.2.0/examples/queen-armies.cc +284 -0
- data/ext/gecode-2.2.0/examples/queens.cc +147 -0
- data/ext/gecode-2.2.0/examples/queens.js +57 -0
- data/ext/gecode-2.2.0/examples/sports-league.cc +342 -0
- data/ext/gecode-2.2.0/examples/steiner.cc +192 -0
- data/ext/gecode-2.2.0/examples/stress-distinct.cc +90 -0
- data/ext/gecode-2.2.0/examples/stress-domain.cc +99 -0
- data/ext/gecode-2.2.0/examples/stress-element.cc +112 -0
- data/ext/gecode-2.2.0/examples/stress-exec.cc +97 -0
- data/ext/gecode-2.2.0/examples/stress-extensional.cc +134 -0
- data/ext/gecode-2.2.0/examples/stress-linear-bool.cc +97 -0
- data/ext/gecode-2.2.0/examples/stress-min.cc +98 -0
- data/ext/gecode-2.2.0/examples/stress-search.cc +88 -0
- data/ext/gecode-2.2.0/examples/sudoku.cc +2341 -0
- data/ext/gecode-2.2.0/examples/support.hh +338 -0
- data/ext/gecode-2.2.0/examples/support/example.cc +64 -0
- data/ext/gecode-2.2.0/examples/support/example.icc +321 -0
- data/ext/gecode-2.2.0/examples/support/options.cc +226 -0
- data/ext/gecode-2.2.0/examples/support/options.icc +276 -0
- data/ext/gecode-2.2.0/examples/tsp.cc +317 -0
- data/ext/gecode-2.2.0/examples/warehouses.cc +191 -0
- data/ext/gecode-2.2.0/gecode.m4 +1046 -0
- data/ext/gecode-2.2.0/gecode/cpltset.hh +797 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/array.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/array.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/bddmanager.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/bddmanager.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/branch.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/branch.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/branch/select-val.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/branch/select-view.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/constraints/atmost.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/constraints/cardinality.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/constraints/distinct.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/constraints/dom.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/constraints/partition.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/constraints/rangeroots.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/constraints/rel.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/constraints/select.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/constraints/singleton.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/exception.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/propagators.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/propagators/binary.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/propagators/nary.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/propagators/naryone.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/propagators/narytwo.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/propagators/singleton.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/propagators/unary.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/support.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/support.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/var-imp.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/var-imp/cpltset.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/var-imp/cpltset.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/var-imp/cpltset.vis +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/var/cpltset.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/var/cpltset.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/view.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/view/cpltset.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/cpltset/view/print.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/addchild.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/addchild.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/addvisualisationdialog.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/addvisualisationdialog.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/better.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/config.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/config.hh +0 -0
- data/ext/gecode-2.2.0/gecode/gist/drawingcursor.cc +281 -0
- data/ext/gecode-2.2.0/gecode/gist/drawingcursor.hh +103 -0
- data/ext/gecode-2.2.0/gecode/gist/drawingcursor.icc +70 -0
- data/ext/gecode-2.2.0/gecode/gist/gecodelogo.cc +672 -0
- data/ext/gecode-2.2.0/gecode/gist/gecodelogo.hh +64 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/gist.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/gist.icc +0 -0
- data/ext/gecode-2.2.0/gecode/gist/layoutcursor.cc +115 -0
- data/ext/gecode-2.2.0/gecode/gist/layoutcursor.hh +75 -0
- data/ext/gecode-2.2.0/gecode/gist/layoutcursor.icc +48 -0
- data/ext/gecode-2.2.0/gecode/gist/mainwindow.cc +274 -0
- data/ext/gecode-2.2.0/gecode/gist/mainwindow.hh +86 -0
- data/ext/gecode-2.2.0/gecode/gist/node.cc +148 -0
- data/ext/gecode-2.2.0/gecode/gist/node.hh +117 -0
- data/ext/gecode-2.2.0/gecode/gist/node.icc +99 -0
- data/ext/gecode-2.2.0/gecode/gist/nodecursor.cc +123 -0
- data/ext/gecode-2.2.0/gecode/gist/nodecursor.hh +147 -0
- data/ext/gecode-2.2.0/gecode/gist/nodecursor.icc +122 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/nodevisitor.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/nodevisitor.icc +0 -0
- data/ext/gecode-2.2.0/gecode/gist/preferences.cc +120 -0
- data/ext/gecode-2.2.0/gecode/gist/preferences.hh +79 -0
- data/ext/gecode-2.2.0/gecode/gist/spacenode.cc +468 -0
- data/ext/gecode-2.2.0/gecode/gist/spacenode.hh +227 -0
- data/ext/gecode-2.2.0/gecode/gist/spacenode.icc +170 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/test.cc +0 -0
- data/ext/gecode-2.2.0/gecode/gist/textoutput.cc +134 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/textoutput.hh +0 -0
- data/ext/gecode-2.2.0/gecode/gist/treecanvas.cc +1343 -0
- data/ext/gecode-2.2.0/gecode/gist/treecanvas.hh +361 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/ui_addchild.hh +0 -0
- data/ext/gecode-2.2.0/gecode/gist/ui_addvisualisationdialog.hh +165 -0
- data/ext/gecode-2.2.0/gecode/gist/visualisation/intvaritem.cc +192 -0
- data/ext/gecode-2.2.0/gecode/gist/visualisation/intvaritem.hh +75 -0
- data/ext/gecode-2.2.0/gecode/gist/visualisation/setvaritem.cc +235 -0
- data/ext/gecode-2.2.0/gecode/gist/visualisation/setvaritem.hh +77 -0
- data/ext/gecode-2.2.0/gecode/gist/visualisation/vararrayitem.hh +125 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/visualisation/vararrayview.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/visualisation/vararrayview.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/visualisation/vararrayviewt.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/visualisation/varitem.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/gist/visualisation/varitem.hh +0 -0
- data/ext/gecode-2.2.0/gecode/gist/visualnode.cc +474 -0
- data/ext/gecode-2.2.0/gecode/gist/visualnode.hh +226 -0
- data/ext/gecode-2.2.0/gecode/gist/visualnode.icc +198 -0
- data/ext/gecode-2.2.0/gecode/gist/zoomToFitIcon.icc +113 -0
- data/ext/gecode-2.2.0/gecode/int.hh +2116 -0
- data/ext/gecode-2.2.0/gecode/int/arithmetic.cc +237 -0
- data/ext/gecode-2.2.0/gecode/int/arithmetic.hh +827 -0
- data/ext/gecode-2.2.0/gecode/int/arithmetic/abs.icc +278 -0
- data/ext/gecode-2.2.0/gecode/int/arithmetic/divmod.icc +496 -0
- data/ext/gecode-2.2.0/gecode/int/arithmetic/max.icc +474 -0
- data/ext/gecode-2.2.0/gecode/int/arithmetic/mult.icc +858 -0
- data/ext/gecode-2.2.0/gecode/int/arithmetic/sqr.icc +464 -0
- data/ext/gecode-2.2.0/gecode/int/arithmetic/sqrt.icc +260 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/array.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/array.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/bool.cc +734 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/bool.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/bool/base.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/bool/eq.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/bool/eqv.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/bool/lq.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/bool/or.icc +1000 -0
- data/ext/gecode-2.2.0/gecode/int/branch.cc +167 -0
- data/ext/gecode-2.2.0/gecode/int/branch.hh +587 -0
- data/ext/gecode-2.2.0/gecode/int/branch/create-branch.icc +190 -0
- data/ext/gecode-2.2.0/gecode/int/branch/select-val.icc +340 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/branch/select-view.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/channel.cc +165 -0
- data/ext/gecode-2.2.0/gecode/int/channel.hh +259 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/channel/base.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/channel/dom.icc +348 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/channel/link-multi.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/channel/link-multi.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/channel/link-single.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/channel/link-single.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/channel/val.icc +278 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/circuit.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/circuit.hh +175 -0
- data/ext/gecode-2.2.0/gecode/int/circuit/base.icc +266 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/circuit/dom.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/circuit/val.icc +126 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/count.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/count.hh +487 -0
- data/ext/gecode-2.2.0/gecode/int/count/int.icc +620 -0
- data/ext/gecode-2.2.0/gecode/int/count/rel.icc +144 -0
- data/ext/gecode-2.2.0/gecode/int/count/view.icc +449 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/cumulatives.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/cumulatives.hh +138 -0
- data/ext/gecode-2.2.0/gecode/int/cumulatives/val.icc +455 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/distinct.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/distinct.hh +341 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/distinct/bilink.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/distinct/bnd.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/distinct/combptr.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/distinct/dom.icc +752 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/distinct/edge.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/distinct/node.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/distinct/ter-dom.icc +136 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/distinct/val.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/dom.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/dom.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/dom/range.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/dom/spec.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/element.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/element.hh +239 -0
- data/ext/gecode-2.2.0/gecode/int/element/int.icc +444 -0
- data/ext/gecode-2.2.0/gecode/int/element/view.icc +584 -0
- data/ext/gecode-2.2.0/gecode/int/exception.icc +174 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/extensional.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/extensional.hh +415 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/extensional/base.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/extensional/basic.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/extensional/bitset.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/extensional/dfa.cc +565 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/extensional/dfa.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/extensional/incremental.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/extensional/layered-graph.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/extensional/tuple-set.cc +285 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/extensional/tuple-set.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/gcc.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/gcc.hh +329 -0
- data/ext/gecode-2.2.0/gecode/int/gcc/bnd.icc +660 -0
- data/ext/gecode-2.2.0/gecode/int/gcc/dom.icc +531 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/gcc/gccbndsup.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/gcc/graphsup.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/gcc/lbc.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/gcc/occur.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/gcc/ubc.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/gcc/val.icc +400 -0
- data/ext/gecode-2.2.0/gecode/int/int-set.cc +157 -0
- data/ext/gecode-2.2.0/gecode/int/int-set.icc +195 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/limits.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/linear-bool.cc +235 -0
- data/ext/gecode-2.2.0/gecode/int/linear-int.cc +272 -0
- data/ext/gecode-2.2.0/gecode/int/linear.hh +1849 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/linear/bool-int.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/linear/bool-post.cc +433 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/linear/bool-scale.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/linear/bool-view.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/linear/int-bin.icc +605 -0
- data/ext/gecode-2.2.0/gecode/int/linear/int-dom.icc +539 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/linear/int-nary.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/linear/int-noview.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/linear/int-post.cc +493 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/linear/int-ter.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/linear/post.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/propagator.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/rel.cc +420 -0
- data/ext/gecode-2.2.0/gecode/int/rel.hh +627 -0
- data/ext/gecode-2.2.0/gecode/int/rel/eq.icc +885 -0
- data/ext/gecode-2.2.0/gecode/int/rel/lex.icc +275 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/rel/lq-le.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/rel/nq.icc +118 -0
- data/ext/gecode-2.2.0/gecode/int/sorted.cc +81 -0
- data/ext/gecode-2.2.0/gecode/int/sorted.hh +118 -0
- data/ext/gecode-2.2.0/gecode/int/sorted/matching.icc +173 -0
- data/ext/gecode-2.2.0/gecode/int/sorted/narrowing.icc +249 -0
- data/ext/gecode-2.2.0/gecode/int/sorted/order.icc +212 -0
- data/ext/gecode-2.2.0/gecode/int/sorted/propagate.icc +702 -0
- data/ext/gecode-2.2.0/gecode/int/sorted/sortsup.icc +563 -0
- data/ext/gecode-2.2.0/gecode/int/support-values.hh +158 -0
- data/ext/gecode-2.2.0/gecode/int/support-values.icc +203 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/unshare.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/var-imp.icc +745 -0
- data/ext/gecode-2.2.0/gecode/int/var-imp/bool.cc +105 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/var-imp/bool.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/var-imp/bool.vis +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/var-imp/delta.icc +0 -0
- data/ext/gecode-2.2.0/gecode/int/var-imp/int.cc +408 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/var-imp/int.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/var-imp/int.vis +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/var/bool.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/var/bool.icc +128 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/var/int.cc +0 -0
- data/ext/gecode-2.2.0/gecode/int/var/int.icc +153 -0
- data/ext/gecode-2.2.0/gecode/int/view.icc +1918 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/bool.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/constint.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/int.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/iter.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/minus.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/offset.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/print.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/rtest.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/scale.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/int/view/zero.icc +0 -0
- data/ext/gecode-2.2.0/gecode/iter.hh +98 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-add.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-append.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-array.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-cache.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-compl.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-diff.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-empty.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-inter.icc +0 -0
- data/ext/gecode-2.2.0/gecode/iter/ranges-map.icc +260 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-minmax.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-minus.icc +0 -0
- data/ext/gecode-2.2.0/gecode/iter/ranges-negative.icc +137 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-offset.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-operations.icc +0 -0
- data/ext/gecode-2.2.0/gecode/iter/ranges-positive.icc +139 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-scale.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-singleton-append.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-singleton.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-size.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-union.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/ranges-values.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/values-array.icc +0 -0
- data/ext/gecode-2.2.0/gecode/iter/values-inter.icc +130 -0
- data/ext/gecode-2.2.0/gecode/iter/values-map.icc +136 -0
- data/ext/gecode-2.2.0/gecode/iter/values-minus.icc +130 -0
- data/ext/gecode-2.2.0/gecode/iter/values-negative.icc +116 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/values-offset.icc +0 -0
- data/ext/gecode-2.2.0/gecode/iter/values-positive.icc +123 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/values-ranges.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/values-singleton.icc +0 -0
- data/ext/gecode-2.2.0/gecode/iter/values-union.icc +137 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/values-unique.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/virtual-ranges-compl.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/virtual-ranges-inter.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/virtual-ranges-union.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/iter/virtual-ranges.icc +0 -0
- data/ext/gecode-2.2.0/gecode/kernel.hh +188 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/kernel/advisor.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/kernel/array.icc +0 -0
- data/ext/gecode-2.2.0/gecode/kernel/branching.icc +433 -0
- data/ext/gecode-2.2.0/gecode/kernel/core.cc +474 -0
- data/ext/gecode-2.2.0/gecode/kernel/core.icc +2311 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/kernel/exception.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/kernel/macros.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/kernel/memory-manager.cc +0 -0
- data/ext/gecode-2.2.0/gecode/kernel/memory-manager.icc +454 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/kernel/modevent.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/kernel/propagator.icc +0 -0
- data/ext/gecode-2.2.0/gecode/kernel/reflection.cc +951 -0
- data/ext/gecode-2.2.0/gecode/kernel/reflection.icc +1213 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/kernel/shared-array.icc +0 -0
- data/ext/gecode-2.2.0/gecode/kernel/var-imp.icc +433 -0
- data/ext/gecode-2.2.0/gecode/kernel/var-map.cc +269 -0
- data/ext/gecode-2.2.0/gecode/kernel/var-map.icc +230 -0
- data/ext/gecode-2.2.0/gecode/kernel/var-traits.icc +79 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/kernel/var-type.cc +0 -0
- data/ext/gecode-2.2.0/gecode/kernel/var-type.icc +915 -0
- data/ext/gecode-2.2.0/gecode/kernel/var.icc +114 -0
- data/ext/gecode-2.2.0/gecode/kernel/view.icc +413 -0
- data/ext/gecode-2.2.0/gecode/minimodel.hh +1206 -0
- data/ext/gecode-2.2.0/gecode/minimodel/arithmetic.icc +118 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/minimodel/bool-expr.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/minimodel/bool-expr.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/minimodel/bool-rel.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/minimodel/exception.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/minimodel/lin-expr.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/minimodel/lin-rel.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/minimodel/matrix.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/minimodel/reg.cc +0 -0
- data/ext/gecode-2.2.0/gecode/search.hh +759 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/bab.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/bab.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/dfs.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/dfs.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/engine-ctrl.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/lds.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/lds.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/options.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/options.icc +0 -0
- data/ext/gecode-2.2.0/gecode/search/reco-stack.icc +277 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/restart.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/statistics.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/stop.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/search/stop.icc +0 -0
- data/ext/gecode-2.2.0/gecode/serialization.hh +149 -0
- data/ext/gecode-2.2.0/gecode/serialization/boost.cc +78 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/serialization/boost.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/serialization/flatzinc.cc +0 -0
- data/ext/gecode-2.2.0/gecode/serialization/javascript.cc +343 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/serialization/javascript.hh +0 -0
- data/ext/gecode-2.2.0/gecode/serialization/register.cc +8498 -0
- data/ext/gecode-2.2.0/gecode/set.hh +970 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/array.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/array.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/branch.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/branch.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/branch/select-val.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/branch/select-view.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/cardinality.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/convex.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/convex.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/convex/conv.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/convex/conv.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/convex/hull.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/convex/hull.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/distinct.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/distinct.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/distinct/atmostOne.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/distinct/atmostOne.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/dom.cc +0 -0
- data/ext/gecode-2.2.0/gecode/set/element.cc +135 -0
- data/ext/gecode-2.2.0/gecode/set/element.hh +233 -0
- data/ext/gecode-2.2.0/gecode/set/element/disjoint.cc +308 -0
- data/ext/gecode-2.2.0/gecode/set/element/disjoint.icc +75 -0
- data/ext/gecode-2.2.0/gecode/set/element/idxarray.hh +113 -0
- data/ext/gecode-2.2.0/gecode/set/element/idxarray.icc +155 -0
- data/ext/gecode-2.2.0/gecode/set/element/inter.icc +348 -0
- data/ext/gecode-2.2.0/gecode/set/element/union.icc +371 -0
- data/ext/gecode-2.2.0/gecode/set/element/unionConst.icc +334 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/exception.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/int.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/int.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/int/card.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/int/channel-bool.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/int/channel-int.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/int/match.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/int/minmax.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/int/weights.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/limits.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors-compiler.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors.cc +0 -0
- data/ext/gecode-2.2.0/gecode/set/projectors.hh +438 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/compiler.cc +0 -0
- data/ext/gecode-2.2.0/gecode/set/projectors/formula.cc +312 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/formula.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/projector-set.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/projector-set.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/projector.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/projector.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/propagator.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/propagator/card.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/propagator/nary.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/propagator/re-nary.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/propagator/re-nary.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/set-expr.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/projectors/set-expr.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/propagator.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel-op-const.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel-op.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel-op.hh +0 -0
- data/ext/gecode-2.2.0/gecode/set/rel-op/common.icc +613 -0
- data/ext/gecode-2.2.0/gecode/set/rel-op/inter.icc +452 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel-op/partition.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel-op/post.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel-op/subofunion.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel-op/superofinter.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel-op/union.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel/common.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel/eq.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel/nosubset.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel/nq.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel/re-eq.icc +0 -0
- data/ext/gecode-2.2.0/gecode/set/rel/re-subset.icc +174 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/rel/subset.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/sequence.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/sequence.hh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/sequence/common.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/sequence/seq-u.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/sequence/seq-u.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/sequence/seq.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/sequence/seq.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/var-imp.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/var-imp/delta.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/var-imp/integerset.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/var-imp/integerset.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/var-imp/iter.icc +0 -0
- data/ext/gecode-2.2.0/gecode/set/var-imp/set.cc +215 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/var-imp/set.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/var-imp/set.vis +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/var/set.cc +0 -0
- data/ext/gecode-2.2.0/gecode/set/var/set.icc +303 -0
- data/ext/gecode-2.2.0/gecode/set/view.icc +1451 -0
- data/ext/gecode-2.2.0/gecode/set/view/complement.icc +614 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/view/const.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/view/offset.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/view/print.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/view/set.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/set/view/singleton.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support.hh +0 -0
- data/ext/gecode-2.2.0/gecode/support/block-allocator.icc +159 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/AUTHORS +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/ChangeLog +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/NEWS +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/README +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/bdd.h +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/bddio.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/bddop.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/bddtree.h +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/bvec.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/bvec.h +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/cache.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/cache.h +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/config.h +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/cppext.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/fdd.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/fdd.h +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/imatrix.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/imatrix.h +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/kernel.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/kernel.h +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/pairs.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/prime.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/prime.h +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/reorder.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/buddy/tree.c +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/cast.icc +0 -0
- data/ext/gecode-2.2.0/gecode/support/config.icc.in +83 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/dynamic-array.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/dynamic-stack.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/exception.cc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/exception.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/macros.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/map.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/marked-pointer.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/memory.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/random.icc +0 -0
- data/ext/gecode-2.2.0/gecode/support/sentinel-stack.icc +138 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/sort.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/static-pqueue.icc +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/gecode/support/static-stack.icc +0 -0
- data/ext/gecode-2.2.0/gecode/support/symbol.cc +241 -0
- data/ext/gecode-2.2.0/gecode/support/symbol.icc +134 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/install-sh +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/AppleHelpbookInfo.plist +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/allexamples.perl +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/debian/Makefile.am +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/debian/changelog +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/debian/control +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/debian/copyright +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/debian/gecode.info +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/debian/gecode.install +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/debian/gecode.spec +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/debian/rules +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/doxygen/back.png +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/doxygen/footer.html +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/doxygen/gecode-logo-100.png +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/doxygen/header.html +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/doxygen/stylesheet.css +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/fixproperties.sh +0 -0
- data/ext/gecode-2.2.0/misc/gecode-gist.pc.in +45 -0
- data/ext/gecode-2.2.0/misc/gecode-minimodel.pc.in +45 -0
- data/ext/gecode-2.2.0/misc/gecode-search.pc.in +45 -0
- data/ext/gecode-2.2.0/misc/gecode-serialization.pc.in +45 -0
- data/ext/gecode-2.2.0/misc/gecode.pc.in +45 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/genchangelog.perl +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/genlcovmakefile.perl +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/genlicense.perl +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/genregistry.perl +0 -0
- data/ext/gecode-2.2.0/misc/genstatistics.perl +179 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/gentxtchangelog.perl +0 -0
- data/ext/gecode-2.2.0/misc/genvariables.perl +905 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/getrevision.perl +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/makedepend.perl +0 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/misc/svn-ignore.txt +0 -0
- data/ext/gecode-2.2.0/test/assign.cc +181 -0
- data/ext/gecode-2.2.0/test/assign.hh +93 -0
- data/ext/gecode-2.2.0/test/assign/bool.cc +61 -0
- data/ext/gecode-2.2.0/test/assign/int.cc +70 -0
- data/ext/gecode-2.2.0/test/branch.cc +563 -0
- data/ext/gecode-2.2.0/test/branch.hh +144 -0
- data/ext/gecode-2.2.0/test/branch/bool.cc +61 -0
- data/ext/gecode-2.2.0/test/branch/cpltset.cc +71 -0
- data/ext/gecode-2.2.0/test/branch/int.cc +70 -0
- data/ext/gecode-2.2.0/test/branch/set.cc +74 -0
- data/ext/gecode-2.2.0/test/cpltset.cc +568 -0
- data/ext/gecode-2.2.0/test/cpltset.hh +125 -0
- data/ext/gecode-2.2.0/test/cpltset/atmost.cc +155 -0
- data/ext/gecode-2.2.0/test/cpltset/cardinality.cc +138 -0
- data/ext/gecode-2.2.0/test/cpltset/dom.cc +137 -0
- data/ext/gecode-2.2.0/test/cpltset/partition.cc +210 -0
- data/ext/gecode-2.2.0/test/cpltset/rel.cc +158 -0
- data/ext/gecode-2.2.0/test/cpltset/select.cc +216 -0
- data/ext/gecode-2.2.0/test/int.cc +688 -0
- data/ext/gecode-2.2.0/test/int.hh +267 -0
- data/ext/gecode-2.2.0/test/int.icc +266 -0
- data/ext/gecode-2.2.0/test/int/arithmetic.cc +766 -0
- data/ext/gecode-2.2.0/test/int/basic.cc +77 -0
- data/ext/gecode-2.2.0/test/int/bool.cc +340 -0
- data/ext/gecode-2.2.0/test/int/channel.cc +238 -0
- data/ext/gecode-2.2.0/test/int/circuit.cc +100 -0
- data/ext/gecode-2.2.0/test/int/count.cc +357 -0
- data/ext/gecode-2.2.0/test/int/distinct.cc +248 -0
- data/ext/gecode-2.2.0/test/int/dom.cc +123 -0
- data/ext/gecode-2.2.0/test/int/element.cc +333 -0
- data/ext/gecode-2.2.0/test/int/extensional.cc +475 -0
- data/ext/gecode-2.2.0/test/int/gcc.cc +293 -0
- data/ext/gecode-2.2.0/test/int/linear.cc +383 -0
- data/ext/gecode-2.2.0/test/int/mm-arithmetic.cc +302 -0
- data/ext/gecode-2.2.0/test/int/mm-bool.cc +4342 -0
- data/ext/gecode-2.2.0/test/int/mm-count.cc +295 -0
- data/ext/gecode-2.2.0/test/int/mm-lin.cc +2035 -0
- data/ext/gecode-2.2.0/test/int/mm-rel.cc +136 -0
- data/ext/gecode-2.2.0/test/int/rel.cc +416 -0
- data/ext/gecode-2.2.0/test/int/scheduling.cc +276 -0
- data/ext/gecode-2.2.0/test/int/sorted.cc +165 -0
- data/ext/gecode-2.2.0/test/int/unshare.cc +109 -0
- data/ext/gecode-2.2.0/test/search.cc +618 -0
- data/ext/gecode-2.2.0/test/set.cc +753 -0
- data/ext/gecode-2.2.0/test/set.hh +286 -0
- data/ext/gecode-2.2.0/test/set.icc +108 -0
- data/ext/gecode-2.2.0/test/set/convex.cc +139 -0
- data/ext/gecode-2.2.0/test/set/distinct.cc +116 -0
- data/ext/gecode-2.2.0/test/set/dom.cc +292 -0
- data/ext/gecode-2.2.0/test/set/int.cc +473 -0
- data/ext/gecode-2.2.0/test/set/projection.cc +436 -0
- data/ext/gecode-2.2.0/test/set/rel-op-const.cc +368 -0
- data/ext/gecode-2.2.0/test/set/rel-op.cc +465 -0
- data/ext/gecode-2.2.0/test/set/rel.cc +125 -0
- data/ext/gecode-2.2.0/test/set/select.cc +299 -0
- data/ext/gecode-2.2.0/test/set/sequence.cc +125 -0
- data/ext/gecode-2.2.0/test/test.cc +287 -0
- data/ext/gecode-2.2.0/test/test.hh +175 -0
- data/ext/gecode-2.2.0/test/test.icc +93 -0
- data/ext/{gecode-2.1.1 → gecode-2.2.0}/variables.vsl +0 -0
- data/lib/gecoder/bindings.rb +7 -5
- data/lib/gecoder/bindings/bindings.rb +8 -8
- data/lib/gecoder/interface.rb +4 -2
- data/lib/gecoder/interface/binding_changes.rb +1 -1
- data/lib/gecoder/interface/branch.rb +1 -1
- data/lib/gecoder/interface/constraints/bool_enum_constraints.rb +4 -4
- data/lib/gecoder/interface/constraints/bool_var_constraints.rb +2 -2
- data/lib/gecoder/interface/constraints/extensional_regexp.rb +1 -1
- data/lib/gecoder/interface/constraints/fixnum_enum_constraints.rb +2 -2
- data/lib/gecoder/interface/constraints/int_enum/extensional.rb +5 -5
- data/lib/gecoder/interface/constraints/int_enum_constraints.rb +4 -4
- data/lib/gecoder/interface/constraints/int_var_constraints.rb +2 -2
- data/lib/gecoder/interface/constraints/selected_set/select.rb +8 -8
- data/lib/gecoder/interface/constraints/set_enum/element.rb +79 -0
- data/lib/gecoder/interface/constraints/set_enum_constraints.rb +5 -5
- data/lib/gecoder/interface/constraints/set_var_constraints.rb +2 -2
- data/lib/gecoder/interface/convenience.rb +99 -0
- data/lib/gecoder/interface/enum_wrapper.rb +1 -1
- data/lib/gecoder/interface/mixin.rb +486 -0
- data/lib/gecoder/interface/search.rb +23 -22
- data/lib/gecoder/version.rb +1 -1
- data/specs/branch.rb +5 -3
- data/specs/constraints/bool/boolean.rb +3 -1
- data/specs/constraints/bool/linear.rb +3 -1
- data/specs/constraints/bool_enum/bool_enum_relation.rb +3 -1
- data/specs/constraints/bool_enum/channel.rb +3 -1
- data/specs/constraints/fixnum_enum/element.rb +3 -1
- data/specs/constraints/int/arithmetic.rb +3 -1
- data/specs/constraints/int/channel.rb +3 -1
- data/specs/constraints/int/linear.rb +3 -1
- data/specs/constraints/int/linear_properties.rb +3 -1
- data/specs/constraints/int_enum/arithmetic.rb +3 -1
- data/specs/constraints/int_enum/channel.rb +3 -1
- data/specs/constraints/int_enum/count.rb +3 -1
- data/specs/constraints/int_enum/distinct.rb +3 -1
- data/specs/constraints/int_enum/element.rb +3 -1
- data/specs/constraints/int_enum/sort.rb +3 -1
- data/specs/constraints/property_helper.rb +10 -10
- data/specs/constraints/reification_sugar.rb +3 -1
- data/specs/constraints/selected_set/select.rb +6 -5
- data/specs/constraints/selected_set/select_properties.rb +12 -10
- data/specs/constraints/set/channel.rb +3 -1
- data/specs/constraints/set/domain.rb +4 -4
- data/specs/constraints/set/relation.rb +4 -4
- data/specs/constraints/set_enum/channel.rb +3 -1
- data/specs/constraints/set_enum/distinct.rb +3 -1
- data/specs/constraints/set_enum/element.rb +77 -0
- data/specs/enum_wrapper.rb +1 -1
- data/specs/mixin.rb +78 -0
- data/specs/model.rb +5 -5
- data/specs/search.rb +20 -14
- data/specs/selected_set.rb +3 -3
- data/specs/set_elements.rb +2 -2
- data/tasks/distribution.rake +25 -4
- metadata +739 -602
- data/example/money.rb +0 -36
- data/ext/gecode-2.1.1/Makefile.dep +0 -7622
- data/ext/gecode-2.1.1/Makefile.in +0 -1568
- data/ext/gecode-2.1.1/changelog.in +0 -2459
- data/ext/gecode-2.1.1/configure +0 -11631
- data/ext/gecode-2.1.1/configure.ac +0 -249
- data/ext/gecode-2.1.1/configure.ac.in +0 -245
- data/ext/gecode-2.1.1/contribs/qecode/Doxyfile +0 -263
- data/ext/gecode-2.1.1/contribs/qecode/FirstFailValueHeuristic.cc +0 -82
- data/ext/gecode-2.1.1/contribs/qecode/FirstFailValueHeuristic.hh +0 -37
- data/ext/gecode-2.1.1/contribs/qecode/Makefile.in.in +0 -162
- data/ext/gecode-2.1.1/contribs/qecode/NaiveValueHeuristics.cc +0 -172
- data/ext/gecode-2.1.1/contribs/qecode/NaiveValueHeuristics.hh +0 -63
- data/ext/gecode-2.1.1/contribs/qecode/SDFVariableHeuristic.cc +0 -37
- data/ext/gecode-2.1.1/contribs/qecode/SDFVariableHeuristic.hh +0 -35
- data/ext/gecode-2.1.1/contribs/qecode/configure +0 -2264
- data/ext/gecode-2.1.1/contribs/qecode/configure.ac +0 -23
- data/ext/gecode-2.1.1/contribs/qecode/examples/COMPILING +0 -13
- data/ext/gecode-2.1.1/contribs/qecode/examples/MatrixGame.cpp +0 -144
- data/ext/gecode-2.1.1/contribs/qecode/examples/NimFibo.cpp +0 -73
- data/ext/gecode-2.1.1/contribs/qecode/examples/stress_test.cpp +0 -179
- data/ext/gecode-2.1.1/contribs/qecode/extensivecomparator.cc +0 -34
- data/ext/gecode-2.1.1/contribs/qecode/extensivecomparator.hh +0 -46
- data/ext/gecode-2.1.1/contribs/qecode/implicative.cc +0 -595
- data/ext/gecode-2.1.1/contribs/qecode/implicative.hh +0 -184
- data/ext/gecode-2.1.1/contribs/qecode/myspace.hh +0 -69
- data/ext/gecode-2.1.1/contribs/qecode/qecore.cc +0 -145
- data/ext/gecode-2.1.1/contribs/qecode/qecore.hh +0 -247
- data/ext/gecode-2.1.1/contribs/qecode/qsolver.cc +0 -168
- data/ext/gecode-2.1.1/contribs/qecode/qsolver.hh +0 -73
- data/ext/gecode-2.1.1/contribs/qecode/valueHeuristic.hh +0 -91
- data/ext/gecode-2.1.1/contribs/qecode/warner.cc +0 -101
- data/ext/gecode-2.1.1/contribs/qecode/warner.hh +0 -83
- data/ext/gecode-2.1.1/doxygen/doxygen.hh.in +0 -1111
- data/ext/gecode-2.1.1/doxygen/reflection.hh +0 -417
- data/ext/gecode-2.1.1/gecode.m4 +0 -956
- data/ext/gecode-2.1.1/gecode/cpltset.hh +0 -797
- data/ext/gecode-2.1.1/gecode/gist/analysiscursor.cc +0 -115
- data/ext/gecode-2.1.1/gecode/gist/analysiscursor.hh +0 -77
- data/ext/gecode-2.1.1/gecode/gist/drawingcursor.cc +0 -245
- data/ext/gecode-2.1.1/gecode/gist/drawingcursor.hh +0 -101
- data/ext/gecode-2.1.1/gecode/gist/gecodelogo.icc +0 -522
- data/ext/gecode-2.1.1/gecode/gist/mainwindow.cc +0 -254
- data/ext/gecode-2.1.1/gecode/gist/mainwindow.hh +0 -86
- data/ext/gecode-2.1.1/gecode/gist/node.cc +0 -100
- data/ext/gecode-2.1.1/gecode/gist/node.hh +0 -89
- data/ext/gecode-2.1.1/gecode/gist/nodecursor.cc +0 -124
- data/ext/gecode-2.1.1/gecode/gist/nodecursor.hh +0 -122
- data/ext/gecode-2.1.1/gecode/gist/nodecursor.icc +0 -79
- data/ext/gecode-2.1.1/gecode/gist/postscript.cc +0 -543
- data/ext/gecode-2.1.1/gecode/gist/postscript.hh +0 -56
- data/ext/gecode-2.1.1/gecode/gist/preferences.cc +0 -110
- data/ext/gecode-2.1.1/gecode/gist/preferences.hh +0 -76
- data/ext/gecode-2.1.1/gecode/gist/reflectionhelpers.cc +0 -55
- data/ext/gecode-2.1.1/gecode/gist/reflectionhelpers.hh +0 -58
- data/ext/gecode-2.1.1/gecode/gist/shapelist.cc +0 -331
- data/ext/gecode-2.1.1/gecode/gist/shapelist.hh +0 -140
- data/ext/gecode-2.1.1/gecode/gist/spacenode.cc +0 -531
- data/ext/gecode-2.1.1/gecode/gist/spacenode.hh +0 -224
- data/ext/gecode-2.1.1/gecode/gist/textoutput.cc +0 -114
- data/ext/gecode-2.1.1/gecode/gist/treecanvas.cc +0 -1140
- data/ext/gecode-2.1.1/gecode/gist/treecanvas.hh +0 -324
- data/ext/gecode-2.1.1/gecode/gist/ui_addvisualisationdialog.hh +0 -163
- data/ext/gecode-2.1.1/gecode/gist/visualisation/intvaritem.cc +0 -175
- data/ext/gecode-2.1.1/gecode/gist/visualisation/intvaritem.hh +0 -71
- data/ext/gecode-2.1.1/gecode/gist/visualisation/setvaritem.cc +0 -219
- data/ext/gecode-2.1.1/gecode/gist/visualisation/setvaritem.hh +0 -73
- data/ext/gecode-2.1.1/gecode/gist/visualisation/vararrayitem.hh +0 -123
- data/ext/gecode-2.1.1/gecode/gist/visualnode.cc +0 -303
- data/ext/gecode-2.1.1/gecode/gist/visualnode.hh +0 -166
- data/ext/gecode-2.1.1/gecode/int.hh +0 -2035
- data/ext/gecode-2.1.1/gecode/int/arithmetic.cc +0 -136
- data/ext/gecode-2.1.1/gecode/int/arithmetic.hh +0 -440
- data/ext/gecode-2.1.1/gecode/int/arithmetic/abs.icc +0 -279
- data/ext/gecode-2.1.1/gecode/int/arithmetic/max.icc +0 -253
- data/ext/gecode-2.1.1/gecode/int/arithmetic/mult.icc +0 -522
- data/ext/gecode-2.1.1/gecode/int/arithmetic/sqr.icc +0 -218
- data/ext/gecode-2.1.1/gecode/int/arithmetic/sqrt.icc +0 -138
- data/ext/gecode-2.1.1/gecode/int/bool.cc +0 -642
- data/ext/gecode-2.1.1/gecode/int/bool/or.icc +0 -1000
- data/ext/gecode-2.1.1/gecode/int/branch.cc +0 -301
- data/ext/gecode-2.1.1/gecode/int/branch.hh +0 -576
- data/ext/gecode-2.1.1/gecode/int/branch/select-val.icc +0 -338
- data/ext/gecode-2.1.1/gecode/int/channel.cc +0 -114
- data/ext/gecode-2.1.1/gecode/int/channel.hh +0 -259
- data/ext/gecode-2.1.1/gecode/int/channel/dom.icc +0 -347
- data/ext/gecode-2.1.1/gecode/int/channel/val.icc +0 -276
- data/ext/gecode-2.1.1/gecode/int/circuit.hh +0 -175
- data/ext/gecode-2.1.1/gecode/int/circuit/base.icc +0 -271
- data/ext/gecode-2.1.1/gecode/int/circuit/val.icc +0 -122
- data/ext/gecode-2.1.1/gecode/int/count.hh +0 -487
- data/ext/gecode-2.1.1/gecode/int/count/int.icc +0 -619
- data/ext/gecode-2.1.1/gecode/int/count/rel.icc +0 -144
- data/ext/gecode-2.1.1/gecode/int/count/view.icc +0 -449
- data/ext/gecode-2.1.1/gecode/int/cumulatives.hh +0 -141
- data/ext/gecode-2.1.1/gecode/int/cumulatives/val.icc +0 -429
- data/ext/gecode-2.1.1/gecode/int/distinct.hh +0 -341
- data/ext/gecode-2.1.1/gecode/int/distinct/dom.icc +0 -750
- data/ext/gecode-2.1.1/gecode/int/distinct/ter-dom.icc +0 -136
- data/ext/gecode-2.1.1/gecode/int/element.hh +0 -239
- data/ext/gecode-2.1.1/gecode/int/element/int.icc +0 -441
- data/ext/gecode-2.1.1/gecode/int/element/view.icc +0 -584
- data/ext/gecode-2.1.1/gecode/int/exception.icc +0 -163
- data/ext/gecode-2.1.1/gecode/int/extensional.hh +0 -415
- data/ext/gecode-2.1.1/gecode/int/extensional/dfa.cc +0 -565
- data/ext/gecode-2.1.1/gecode/int/extensional/tuple-set.cc +0 -311
- data/ext/gecode-2.1.1/gecode/int/gcc.hh +0 -329
- data/ext/gecode-2.1.1/gecode/int/gcc/bnd.icc +0 -660
- data/ext/gecode-2.1.1/gecode/int/gcc/dom.icc +0 -531
- data/ext/gecode-2.1.1/gecode/int/gcc/val.icc +0 -400
- data/ext/gecode-2.1.1/gecode/int/int-set.cc +0 -153
- data/ext/gecode-2.1.1/gecode/int/int-set.icc +0 -191
- data/ext/gecode-2.1.1/gecode/int/linear-bool.cc +0 -220
- data/ext/gecode-2.1.1/gecode/int/linear-int.cc +0 -240
- data/ext/gecode-2.1.1/gecode/int/linear.hh +0 -1849
- data/ext/gecode-2.1.1/gecode/int/linear/bool-post.cc +0 -433
- data/ext/gecode-2.1.1/gecode/int/linear/int-bin.icc +0 -605
- data/ext/gecode-2.1.1/gecode/int/linear/int-dom.icc +0 -539
- data/ext/gecode-2.1.1/gecode/int/linear/int-post.cc +0 -493
- data/ext/gecode-2.1.1/gecode/int/rel.cc +0 -431
- data/ext/gecode-2.1.1/gecode/int/rel.hh +0 -657
- data/ext/gecode-2.1.1/gecode/int/rel/eq.icc +0 -848
- data/ext/gecode-2.1.1/gecode/int/rel/lex.icc +0 -248
- data/ext/gecode-2.1.1/gecode/int/rel/nq.icc +0 -269
- data/ext/gecode-2.1.1/gecode/int/sorted.cc +0 -91
- data/ext/gecode-2.1.1/gecode/int/sorted.hh +0 -117
- data/ext/gecode-2.1.1/gecode/int/sorted/matching.icc +0 -182
- data/ext/gecode-2.1.1/gecode/int/sorted/narrowing.icc +0 -257
- data/ext/gecode-2.1.1/gecode/int/sorted/order.icc +0 -208
- data/ext/gecode-2.1.1/gecode/int/sorted/propagate.icc +0 -669
- data/ext/gecode-2.1.1/gecode/int/sorted/sortsup.icc +0 -596
- data/ext/gecode-2.1.1/gecode/int/var-imp.icc +0 -745
- data/ext/gecode-2.1.1/gecode/int/var-imp/bool.cc +0 -104
- data/ext/gecode-2.1.1/gecode/int/var-imp/int.cc +0 -407
- data/ext/gecode-2.1.1/gecode/int/var/bool.icc +0 -126
- data/ext/gecode-2.1.1/gecode/int/var/int.icc +0 -151
- data/ext/gecode-2.1.1/gecode/int/view.icc +0 -1894
- data/ext/gecode-2.1.1/gecode/iter.hh +0 -90
- data/ext/gecode-2.1.1/gecode/iter/values-minus.icc +0 -130
- data/ext/gecode-2.1.1/gecode/kernel.hh +0 -182
- data/ext/gecode-2.1.1/gecode/kernel/branching.icc +0 -447
- data/ext/gecode-2.1.1/gecode/kernel/core.cc +0 -473
- data/ext/gecode-2.1.1/gecode/kernel/core.icc +0 -2295
- data/ext/gecode-2.1.1/gecode/kernel/memory-manager.icc +0 -458
- data/ext/gecode-2.1.1/gecode/kernel/reflection.cc +0 -921
- data/ext/gecode-2.1.1/gecode/kernel/reflection.icc +0 -1012
- data/ext/gecode-2.1.1/gecode/kernel/var-imp.icc +0 -433
- data/ext/gecode-2.1.1/gecode/kernel/var-map.cc +0 -269
- data/ext/gecode-2.1.1/gecode/kernel/var-map.icc +0 -227
- data/ext/gecode-2.1.1/gecode/kernel/var-traits.icc +0 -72
- data/ext/gecode-2.1.1/gecode/kernel/var-type.icc +0 -915
- data/ext/gecode-2.1.1/gecode/kernel/var.icc +0 -120
- data/ext/gecode-2.1.1/gecode/kernel/view.icc +0 -611
- data/ext/gecode-2.1.1/gecode/minimodel.hh +0 -1165
- data/ext/gecode-2.1.1/gecode/minimodel/arithmetic.cc +0 -179
- data/ext/gecode-2.1.1/gecode/search.hh +0 -752
- data/ext/gecode-2.1.1/gecode/search/reco-stack.icc +0 -237
- data/ext/gecode-2.1.1/gecode/serialization.hh +0 -149
- data/ext/gecode-2.1.1/gecode/serialization/boost.cc +0 -78
- data/ext/gecode-2.1.1/gecode/serialization/javascript.cc +0 -340
- data/ext/gecode-2.1.1/gecode/serialization/register.cc +0 -8142
- data/ext/gecode-2.1.1/gecode/set.hh +0 -970
- data/ext/gecode-2.1.1/gecode/set/projectors.hh +0 -438
- data/ext/gecode-2.1.1/gecode/set/projectors/formula.cc +0 -312
- data/ext/gecode-2.1.1/gecode/set/rel-op/common.icc +0 -557
- data/ext/gecode-2.1.1/gecode/set/rel-op/inter.icc +0 -409
- data/ext/gecode-2.1.1/gecode/set/rel/re-subset.icc +0 -172
- data/ext/gecode-2.1.1/gecode/set/select.cc +0 -135
- data/ext/gecode-2.1.1/gecode/set/select.hh +0 -233
- data/ext/gecode-2.1.1/gecode/set/select/disjoint.cc +0 -308
- data/ext/gecode-2.1.1/gecode/set/select/disjoint.icc +0 -75
- data/ext/gecode-2.1.1/gecode/set/select/idxarray.hh +0 -113
- data/ext/gecode-2.1.1/gecode/set/select/idxarray.icc +0 -155
- data/ext/gecode-2.1.1/gecode/set/select/inter.icc +0 -349
- data/ext/gecode-2.1.1/gecode/set/select/union.icc +0 -371
- data/ext/gecode-2.1.1/gecode/set/select/unionConst.icc +0 -334
- data/ext/gecode-2.1.1/gecode/set/var-imp/set.cc +0 -214
- data/ext/gecode-2.1.1/gecode/set/var/set.icc +0 -303
- data/ext/gecode-2.1.1/gecode/set/view.icc +0 -1503
- data/ext/gecode-2.1.1/gecode/set/view/complement.icc +0 -629
- data/ext/gecode-2.1.1/gecode/support/block-allocator.icc +0 -158
- data/ext/gecode-2.1.1/gecode/support/config.icc.in +0 -80
- data/ext/gecode-2.1.1/gecode/support/sentinel-stack.icc +0 -122
- data/ext/gecode-2.1.1/gecode/support/symbol.cc +0 -226
- data/ext/gecode-2.1.1/gecode/support/symbol.icc +0 -130
- data/ext/gecode-2.1.1/misc/gecode-gist.pc.in +0 -45
- data/ext/gecode-2.1.1/misc/gecode-minimodel.pc.in +0 -45
- data/ext/gecode-2.1.1/misc/gecode-search.pc.in +0 -45
- data/ext/gecode-2.1.1/misc/gecode-serialization.pc.in +0 -45
- data/ext/gecode-2.1.1/misc/gecode.pc.in +0 -45
- data/ext/gecode-2.1.1/misc/genstatistics.perl +0 -178
- data/ext/gecode-2.1.1/misc/genvariables.perl +0 -905
- data/lib/gecoder/interface/constraints/set_enum/select.rb +0 -79
- data/lib/gecoder/interface/model.rb +0 -453
- data/lib/gecoder/interface/model_sugar.rb +0 -84
- data/specs/constraints/set_enum/select.rb +0 -73
@@ -0,0 +1,172 @@
|
|
1
|
+
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Main authors:
|
4
|
+
* Christian Schulte <schulte@gecode.org>
|
5
|
+
*
|
6
|
+
* Copyright:
|
7
|
+
* Christian Schulte, 2004
|
8
|
+
*
|
9
|
+
* Last modified:
|
10
|
+
* $Date: 2007-11-30 13:58:34 +0100 (Fri, 30 Nov 2007) $ by $Author: tack $
|
11
|
+
* $Revision: 5524 $
|
12
|
+
*
|
13
|
+
* This file is part of Gecode, the generic constraint
|
14
|
+
* development environment:
|
15
|
+
* http://www.gecode.org
|
16
|
+
*
|
17
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
18
|
+
* a copy of this software and associated documentation files (the
|
19
|
+
* "Software"), to deal in the Software without restriction, including
|
20
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
21
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
22
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
23
|
+
* the following conditions:
|
24
|
+
*
|
25
|
+
* The above copyright notice and this permission notice shall be
|
26
|
+
* included in all copies or substantial portions of the Software.
|
27
|
+
*
|
28
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
29
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
30
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
31
|
+
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
32
|
+
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
33
|
+
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
34
|
+
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
35
|
+
*
|
36
|
+
*/
|
37
|
+
|
38
|
+
#include "examples/support.hh"
|
39
|
+
|
40
|
+
/**
|
41
|
+
* \brief %Example: Orthogonal latin squares
|
42
|
+
*
|
43
|
+
* \ingroup ExProblem
|
44
|
+
*/
|
45
|
+
class OrthoLatinSquare : public Example {
|
46
|
+
protected:
|
47
|
+
/// Size of squares
|
48
|
+
const int n;
|
49
|
+
/// Fields of first square
|
50
|
+
IntVarArray x1;
|
51
|
+
/// Fields of second square
|
52
|
+
IntVarArray x2;
|
53
|
+
|
54
|
+
public:
|
55
|
+
/// Access field at position \a i and \a j in first square
|
56
|
+
IntVar& y1(int i, int j) {
|
57
|
+
return x1[i*n+j];
|
58
|
+
}
|
59
|
+
/// Access field at position \a i and \a j in second square
|
60
|
+
IntVar& y2(int i, int j) {
|
61
|
+
return x2[i*n+j];
|
62
|
+
}
|
63
|
+
|
64
|
+
/// Actual model
|
65
|
+
OrthoLatinSquare(const SizeOptions& opt)
|
66
|
+
: n(opt.size()),
|
67
|
+
x1(this,n*n,1,n), x2(this,n*n,1,n) {
|
68
|
+
const int nn = n*n;
|
69
|
+
IntVarArray z(this,nn,0,n*n-1);
|
70
|
+
|
71
|
+
distinct(this, z, opt.icl());
|
72
|
+
// Connect
|
73
|
+
{
|
74
|
+
IntArgs mod(n*n);
|
75
|
+
IntArgs div(n*n);
|
76
|
+
for (int i=0; i<n; i++)
|
77
|
+
for (int j=0; j<n; j++) {
|
78
|
+
mod[i*n+j] = j+1;
|
79
|
+
div[i*n+j] = i+1;
|
80
|
+
}
|
81
|
+
for (int i = nn; i--; ) {
|
82
|
+
element(this, div, z[i], x2[i]);
|
83
|
+
element(this, mod, z[i], x1[i]);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
// Rows
|
88
|
+
for (int i = n; i--; ) {
|
89
|
+
IntVarArgs ry(n);
|
90
|
+
for (int j = n; j--; )
|
91
|
+
ry[j] = y1(i,j);
|
92
|
+
distinct(this, ry, opt.icl());
|
93
|
+
for (int j = n; j--; )
|
94
|
+
ry[j] = y2(i,j);
|
95
|
+
distinct(this, ry, opt.icl());
|
96
|
+
}
|
97
|
+
for (int j = n; j--; ) {
|
98
|
+
IntVarArgs cy(n);
|
99
|
+
for (int i = n; i--; )
|
100
|
+
cy[i] = y1(i,j);
|
101
|
+
distinct(this, cy, opt.icl());
|
102
|
+
for (int i = n; i--; )
|
103
|
+
cy[i] = y2(i,j);
|
104
|
+
distinct(this, cy, opt.icl());
|
105
|
+
}
|
106
|
+
|
107
|
+
for (int i = 1; i<n; i++) {
|
108
|
+
IntVarArgs ry1(n);
|
109
|
+
IntVarArgs ry2(n);
|
110
|
+
for (int j = n; j--; ) {
|
111
|
+
ry1[j] = y1(i-1,j);
|
112
|
+
ry2[j] = y2(i,j);
|
113
|
+
}
|
114
|
+
rel(this, ry1, IRT_GQ, ry2);
|
115
|
+
}
|
116
|
+
|
117
|
+
branch(this, z, INT_VAR_SIZE_MIN, INT_VAL_SPLIT_MIN);
|
118
|
+
}
|
119
|
+
|
120
|
+
/// Constructor for cloning \a s
|
121
|
+
OrthoLatinSquare(bool share, OrthoLatinSquare& s)
|
122
|
+
: Example(share,s), n(s.n) {
|
123
|
+
x1.update(this, share, s.x1);
|
124
|
+
x2.update(this, share, s.x2);
|
125
|
+
}
|
126
|
+
|
127
|
+
/// Copy during cloning
|
128
|
+
virtual Space*
|
129
|
+
copy(bool share) {
|
130
|
+
return new OrthoLatinSquare(share,*this);
|
131
|
+
}
|
132
|
+
/// Print solution
|
133
|
+
virtual void
|
134
|
+
print(std::ostream& os) {
|
135
|
+
for (int i = 0; i<n; i++) {
|
136
|
+
os << "\t";
|
137
|
+
for (int j = 0; j<n; j++) {
|
138
|
+
os.width(2);
|
139
|
+
os << y1(i,j) << " ";
|
140
|
+
}
|
141
|
+
os << std::endl;
|
142
|
+
}
|
143
|
+
os << std::endl;
|
144
|
+
for (int i = 0; i<n; i++) {
|
145
|
+
os << "\t";
|
146
|
+
for (int j = 0; j<n; j++) {
|
147
|
+
os.width(2);
|
148
|
+
os << y2(i,j) << " ";
|
149
|
+
}
|
150
|
+
os << std::endl;
|
151
|
+
}
|
152
|
+
os << std::endl;
|
153
|
+
}
|
154
|
+
|
155
|
+
};
|
156
|
+
|
157
|
+
/**
|
158
|
+
* \brief Main function
|
159
|
+
* \relates OrthoLatinSquare
|
160
|
+
*/
|
161
|
+
int
|
162
|
+
main(int argc, char* argv[]) {
|
163
|
+
SizeOptions opt("OrthoLatinSquare");
|
164
|
+
opt.size(7);
|
165
|
+
opt.icl(ICL_DOM);
|
166
|
+
opt.parse(argc,argv);
|
167
|
+
Example::run<OrthoLatinSquare,DFS,SizeOptions>(opt);
|
168
|
+
return 0;
|
169
|
+
}
|
170
|
+
|
171
|
+
// STATISTICS: example-any
|
172
|
+
|
@@ -0,0 +1,141 @@
|
|
1
|
+
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Main authors:
|
4
|
+
* Christian Schulte <schulte@gecode.org>
|
5
|
+
*
|
6
|
+
* Copyright:
|
7
|
+
* Christian Schulte, 2003
|
8
|
+
*
|
9
|
+
* Last modified:
|
10
|
+
* $Date: 2008-07-11 10:10:41 +0200 (Fri, 11 Jul 2008) $ by $Author: tack $
|
11
|
+
* $Revision: 7311 $
|
12
|
+
*
|
13
|
+
* This file is part of Gecode, the generic constraint
|
14
|
+
* development environment:
|
15
|
+
* http://www.gecode.org
|
16
|
+
*
|
17
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
18
|
+
* a copy of this software and associated documentation files (the
|
19
|
+
* "Software"), to deal in the Software without restriction, including
|
20
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
21
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
22
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
23
|
+
* the following conditions:
|
24
|
+
*
|
25
|
+
* The above copyright notice and this permission notice shall be
|
26
|
+
* included in all copies or substantial portions of the Software.
|
27
|
+
*
|
28
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
29
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
30
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
31
|
+
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
32
|
+
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
33
|
+
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
34
|
+
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
35
|
+
*
|
36
|
+
*/
|
37
|
+
|
38
|
+
#include "examples/support.hh"
|
39
|
+
#include "gecode/minimodel.hh"
|
40
|
+
|
41
|
+
/**
|
42
|
+
* \brief %Example: partition numbers into two groups
|
43
|
+
*
|
44
|
+
* \ingroup ExProblem
|
45
|
+
*/
|
46
|
+
class Partition : public Example {
|
47
|
+
protected:
|
48
|
+
/// First group of numbers
|
49
|
+
IntVarArray x;
|
50
|
+
/// Second group of numbers
|
51
|
+
IntVarArray y;
|
52
|
+
public:
|
53
|
+
/// Actual model
|
54
|
+
Partition(const SizeOptions& opt)
|
55
|
+
: x(this,opt.size(),1,2*opt.size()),
|
56
|
+
y(this,opt.size(),1,2*opt.size()) {
|
57
|
+
const int n = opt.size();
|
58
|
+
// Break symmetries by ordering numbers in each group
|
59
|
+
rel(this, x, IRT_LE);
|
60
|
+
rel(this, y, IRT_LE);
|
61
|
+
|
62
|
+
rel(this, x[0], IRT_LE, y[0]);
|
63
|
+
|
64
|
+
IntVarArgs xy(2*n);
|
65
|
+
for (int i = n; i--; ) {
|
66
|
+
xy[i] = x[i]; xy[n+i] = y[i];
|
67
|
+
}
|
68
|
+
distinct(this, xy, opt.icl());
|
69
|
+
|
70
|
+
IntArgs c(2*n);
|
71
|
+
for (int i = n; i--; ) {
|
72
|
+
c[i] = 1; c[n+i] = -1;
|
73
|
+
}
|
74
|
+
linear(this, c, xy, IRT_EQ, 0);
|
75
|
+
|
76
|
+
// Array of products
|
77
|
+
IntVarArgs sxy(2*n), sx(n), sy(n);
|
78
|
+
|
79
|
+
for (int i = n; i--; ) {
|
80
|
+
sx[i] = sxy[i] = sqr(this, x[i]);
|
81
|
+
sy[i] = sxy[n+i] = sqr(this, y[i]);
|
82
|
+
}
|
83
|
+
linear(this, c, sxy, IRT_EQ, 0);
|
84
|
+
|
85
|
+
// Redundant
|
86
|
+
linear(this, x, IRT_EQ, 2*n*(2*n+1)/4);
|
87
|
+
linear(this, y, IRT_EQ, 2*n*(2*n+1)/4);
|
88
|
+
linear(this, sx, IRT_EQ, 2*n*(2*n+1)*(4*n+1)/12);
|
89
|
+
linear(this, sy, IRT_EQ, 2*n*(2*n+1)*(4*n+1)/12);
|
90
|
+
branch(this, xy, INT_VAR_SIZE_MIN, INT_VAL_MIN);
|
91
|
+
}
|
92
|
+
|
93
|
+
/// Constructor used during cloning \a s
|
94
|
+
Partition(bool share, Partition& s) : Example(share,s) {
|
95
|
+
x.update(this, share, s.x);
|
96
|
+
y.update(this, share, s.y);
|
97
|
+
}
|
98
|
+
/// Copying during cloning
|
99
|
+
virtual Space*
|
100
|
+
copy(bool share) {
|
101
|
+
return new Partition(share,*this);
|
102
|
+
}
|
103
|
+
/// Print solution
|
104
|
+
virtual void
|
105
|
+
print(std::ostream& os) {
|
106
|
+
os << "\t";
|
107
|
+
int a, b;
|
108
|
+
a = b = 0;
|
109
|
+
for (int i = 0; i < x.size(); i++) {
|
110
|
+
a += x[i].val();
|
111
|
+
b += x[i].val()*x[i].val();
|
112
|
+
os << x[i] << ", ";
|
113
|
+
}
|
114
|
+
os << " = " << a << ", " << b << std::endl << "\t";
|
115
|
+
a = b = 0;
|
116
|
+
for (int i = 0; i < y.size(); i++) {
|
117
|
+
a += y[i].val();
|
118
|
+
b += y[i].val()*y[i].val();
|
119
|
+
os << y[i] << ", ";
|
120
|
+
}
|
121
|
+
os << " = " << a << ", " << b << std::endl;
|
122
|
+
}
|
123
|
+
};
|
124
|
+
|
125
|
+
/**
|
126
|
+
* \brief Main-functiona
|
127
|
+
* \relates Partition
|
128
|
+
*/
|
129
|
+
int
|
130
|
+
main(int argc, char* argv[]) {
|
131
|
+
SizeOptions opt("Partition");
|
132
|
+
opt.size(32);
|
133
|
+
opt.icl(ICL_BND);
|
134
|
+
opt.parse(argc,argv);
|
135
|
+
Example::run<Partition,DFS,SizeOptions>(opt);
|
136
|
+
return 0;
|
137
|
+
}
|
138
|
+
|
139
|
+
|
140
|
+
// STATISTICS: example-any
|
141
|
+
|
@@ -0,0 +1,949 @@
|
|
1
|
+
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Main authors:
|
4
|
+
* Mikael Lagerkvist <lagerkvist@gecode.org>
|
5
|
+
*
|
6
|
+
* Contributing authors:
|
7
|
+
* Guido Tack <tack@gecode.org>
|
8
|
+
*
|
9
|
+
* Copyright:
|
10
|
+
* Mikael Lagerkvist, 2006
|
11
|
+
* Guido Tack, 2006
|
12
|
+
*
|
13
|
+
* Last modified:
|
14
|
+
* $Date: 2008-01-13 14:21:22 +0100 (Sun, 13 Jan 2008) $ by $Author: zayenz $
|
15
|
+
* $Revision: 5861 $
|
16
|
+
*
|
17
|
+
* This file is part of Gecode, the generic constraint
|
18
|
+
* development environment:
|
19
|
+
* http://www.gecode.org
|
20
|
+
*
|
21
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
22
|
+
* a copy of this software and associated documentation files (the
|
23
|
+
* "Software"), to deal in the Software without restriction, including
|
24
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
25
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
26
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
27
|
+
* the following conditions:
|
28
|
+
*
|
29
|
+
* The above copyright notice and this permission notice shall be
|
30
|
+
* included in all copies or substantial portions of the Software.
|
31
|
+
*
|
32
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
33
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
34
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
35
|
+
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
36
|
+
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
37
|
+
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
38
|
+
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
39
|
+
*
|
40
|
+
*/
|
41
|
+
|
42
|
+
#include "examples/support.hh"
|
43
|
+
#include "gecode/minimodel.hh"
|
44
|
+
|
45
|
+
/** \brief Specification of one tile
|
46
|
+
*
|
47
|
+
* This structure can be used to specify a tile with specified width
|
48
|
+
* and height, number of such tiles (all with unique values), and a
|
49
|
+
* char-array tile showing the tile in row-major order.
|
50
|
+
*
|
51
|
+
* \relates Pentominoes
|
52
|
+
*/
|
53
|
+
struct TileSpec {
|
54
|
+
int width, height;
|
55
|
+
int amount;
|
56
|
+
const char *tile;
|
57
|
+
};
|
58
|
+
|
59
|
+
/** \brief Board specifications
|
60
|
+
*
|
61
|
+
* Each board specification repurposes the first two TileSpecs to
|
62
|
+
* record width and height of the board (TileSpec 0) as well as the
|
63
|
+
* number of tiles and whether the board is filled (TileSpec 1).
|
64
|
+
*
|
65
|
+
* \relates Pentominoes
|
66
|
+
*/
|
67
|
+
extern const TileSpec *examples[];
|
68
|
+
/** \brief Board specification sizes
|
69
|
+
*
|
70
|
+
* \relates Pentominoes
|
71
|
+
*/
|
72
|
+
extern const int examples_size[];
|
73
|
+
/** \brief Number of board specifications
|
74
|
+
*
|
75
|
+
* \relates Pentominoes
|
76
|
+
*/
|
77
|
+
extern const unsigned int n_examples;
|
78
|
+
|
79
|
+
namespace {
|
80
|
+
/** \name Symmetry functions
|
81
|
+
*
|
82
|
+
* These functions implement the 8 symmetries of 2D planes. The
|
83
|
+
* functions are templatized so that they can be used both for the
|
84
|
+
* pieces (defined using C-strings) and for arrays of variables.
|
85
|
+
*
|
86
|
+
* \relates Pentominoes
|
87
|
+
*/
|
88
|
+
//@{
|
89
|
+
/** Return index of (\a h, \a w) in the row-major layout of a matrix with
|
90
|
+
* width \a w1 and height \a h1.
|
91
|
+
*/
|
92
|
+
int pos(int h, int w, int h1, int w1);
|
93
|
+
/// Type for tile symmetry functions
|
94
|
+
typedef void (*tsymmfunc)(const char*, int, int, char*, int&, int&);
|
95
|
+
/// Type for board symmetry functions
|
96
|
+
typedef void (*bsymmfunc)(const IntVarArgs, int, int, IntVarArgs&, int&, int&);
|
97
|
+
/// Identity symmetry
|
98
|
+
template <class CArray, class Array>
|
99
|
+
void id(CArray t1, int w1, int h1, Array t2, int& w2, int&h2);
|
100
|
+
/// Rotate 90 degrees
|
101
|
+
template <class CArray, class Array>
|
102
|
+
void rot90(CArray t1, int w1, int h1, Array t2, int& w2, int& h2);
|
103
|
+
/// Rotate 180 degrees
|
104
|
+
template <class CArray, class Array>
|
105
|
+
void rot180(CArray t1, int w1, int h1, Array t2, int& w2, int& h2);
|
106
|
+
/// Rotate 270 degrees
|
107
|
+
template <class CArray, class Array>
|
108
|
+
void rot270(CArray t1, int w1, int h1, Array t2, int& w2, int& h2);
|
109
|
+
/// Flip x-wise
|
110
|
+
template <class CArray, class Array>
|
111
|
+
void flipx(CArray t1, int w1, int h1, Array t2, int& w2, int& h2);
|
112
|
+
/// Flip y-wise
|
113
|
+
template <class CArray, class Array>
|
114
|
+
void flipy(CArray t1, int w1, int h1, Array t2, int& w2, int& h2);
|
115
|
+
/// Flip diagonal 1
|
116
|
+
template <class CArray, class Array>
|
117
|
+
void flipd1(CArray t1, int w1, int h1, Array t2, int& w2, int& h2);
|
118
|
+
/// Flip diagonal 2
|
119
|
+
template <class CArray, class Array>
|
120
|
+
void flipd2(CArray t1, int w1, int h1, Array t2, int& w2, int& h2);
|
121
|
+
//@}
|
122
|
+
}
|
123
|
+
|
124
|
+
/**
|
125
|
+
* \brief %Example: %Pentominoes
|
126
|
+
*
|
127
|
+
* \section ExamplePentominoesProblem The Problem
|
128
|
+
*
|
129
|
+
* This example places pieces of a puzzle, where each piece is
|
130
|
+
* composed of a collection of squares, onto a grid. The pieces may
|
131
|
+
* all be rotated and flipped freely. The goal is to place all the
|
132
|
+
* pieces on the grid, without any overlaps. An example piece to be
|
133
|
+
* placed looks like
|
134
|
+
* \code
|
135
|
+
* XXX
|
136
|
+
* X
|
137
|
+
* XXX
|
138
|
+
* \endcode
|
139
|
+
* in one of its rotations.
|
140
|
+
*
|
141
|
+
* The most famous instance of such a puzzle is the Pentominoes
|
142
|
+
* puzzle, where the pieces are all pieces formed by 5 four-connected
|
143
|
+
* squares.
|
144
|
+
*
|
145
|
+
*
|
146
|
+
* \section ExamplePentominoesVariables The Variables
|
147
|
+
*
|
148
|
+
* The variables for the model is the grid of squares that the pieces
|
149
|
+
* are placed on, where each of the variables for the squares takes
|
150
|
+
* the value of the number of the piece which is placed overonto it.
|
151
|
+
*
|
152
|
+
*
|
153
|
+
* \section ExamplePentominoesOnePiece Placing one piece
|
154
|
+
*
|
155
|
+
* The constraint for each piece placement uses regular expressions
|
156
|
+
* (and consequently the \ref extensional constraint) for expressing
|
157
|
+
* placement of (rotated) pieces on the grid. Consider the simple
|
158
|
+
* example of placing the piece
|
159
|
+
* \code
|
160
|
+
* XX
|
161
|
+
* X
|
162
|
+
* X
|
163
|
+
* \endcode
|
164
|
+
* onto the 4 by 4 board
|
165
|
+
* \code
|
166
|
+
* 0123
|
167
|
+
* 4567
|
168
|
+
* 89AB
|
169
|
+
* CDEF
|
170
|
+
* \endcode
|
171
|
+
*
|
172
|
+
* Let the variables 0-F be 0/1-variables indicating if the piece is
|
173
|
+
* placed on that position or not. First consider placing the piece on
|
174
|
+
* some location, say covering 1,2,6, and A. Then, writing the
|
175
|
+
* sequence of values for the variables 0-F out, we get the string
|
176
|
+
* 0110001000100000. This string and all other strings corresponding
|
177
|
+
* to placing the above piece in that particular rotation can be
|
178
|
+
* described using the regular expression \f$0^*11000100010^*\f$. The
|
179
|
+
* expression indicates that first comes some number of zeroes, then
|
180
|
+
* two ones in a row (covering places 1 and 2 in our example
|
181
|
+
* placement), then comes exactly three 0's (not covering places 3, 4,
|
182
|
+
* and 5), and so on. The variable number of 0's at the beginning and at the end
|
183
|
+
* makes the expression match any placement of the piece on the board.
|
184
|
+
*
|
185
|
+
* There is one problem with the above constraint, since it allows
|
186
|
+
* placing the piece covering places 3, 4, 8, and C. That is, the
|
187
|
+
* piece may wrap around the board. To prohibit this, we add a new
|
188
|
+
* dummy-column to the board, so that it looks like
|
189
|
+
* \code
|
190
|
+
* 0123G
|
191
|
+
* 4567H
|
192
|
+
* 89ABI
|
193
|
+
* CDEFJ
|
194
|
+
* \endcode
|
195
|
+
* The variables for places G to J are all set to zero initially, and the
|
196
|
+
* regular expression for the placement of the piece is modified to
|
197
|
+
* include the extra column, \f$0^*1100001000010^*\f$.
|
198
|
+
*
|
199
|
+
*
|
200
|
+
* \section ExamplePentominoesRotatingPiece Rotating pieces
|
201
|
+
*
|
202
|
+
* To handle rotations of the piece, we can use disjunctions of
|
203
|
+
* regular expressions for all the relevant rotations. Consider the
|
204
|
+
* rotated version of the above piece, depicted below.
|
205
|
+
* \code
|
206
|
+
* X
|
207
|
+
* XXX
|
208
|
+
* \endcode
|
209
|
+
* The corresponding regular expression for this piece is
|
210
|
+
* \f$0^*1001110^*\f$. To combine these two regular expressions, we
|
211
|
+
* can simply use disjunction of regular expressions, arriving at the
|
212
|
+
* expression \f$0^*1100001000010^*|0^*1001110^*\f$ for enforcing
|
213
|
+
* the placement of the piece in one of the above two rotations.
|
214
|
+
*
|
215
|
+
* There are 8 symmetries for the pieces in general. The 8 disjuncts
|
216
|
+
* for a particular piece might, however, contain less than 8 distinct
|
217
|
+
* expressions (for example, any square has only one distinct
|
218
|
+
* disjunct). This is removed when then automaton for the expression
|
219
|
+
* is computed, since it is minimized.
|
220
|
+
*
|
221
|
+
*
|
222
|
+
* \section ExamplePentominoesSeveral Placing several pieces
|
223
|
+
*
|
224
|
+
* To generalize the above model to several pieces, we let the
|
225
|
+
* variables range from 0 to n, where n is the number of pieces to
|
226
|
+
* place. Given that we place three pieces, and that the above shown
|
227
|
+
* piece is number one, we will replace each \f$0\f$-expression with
|
228
|
+
* the expression \f$(0|2|3)\f$. Thus, the second regular expression
|
229
|
+
* becomes \f$(0|2|3)^*1(0|2|3)(0|2|3)111(0|2|3)^*\f$. Additionaly,
|
230
|
+
* the end of line marker gets its own value.
|
231
|
+
*
|
232
|
+
* This generalization suffers from the fact that the automata become
|
233
|
+
* much more complex. This problem can be solved by instead
|
234
|
+
* projecting out each component, which gives a new board of
|
235
|
+
* 0/1-variables for each piece to place.
|
236
|
+
*
|
237
|
+
*
|
238
|
+
* \section ExamplePentominoesHeuristic The Branching
|
239
|
+
*
|
240
|
+
* This model does not use any advanced heuristic for the
|
241
|
+
* branching. The variables selection is simply in order, and the
|
242
|
+
* value selection is minimum value first.
|
243
|
+
*
|
244
|
+
* The static value selection allows us to order the pieces in the
|
245
|
+
* specification of the problem. The pieces are approximately ordered by
|
246
|
+
* largness or hardness to place.
|
247
|
+
*
|
248
|
+
*
|
249
|
+
* \section ExamplePentominoesSymmetries Removing board symmetries
|
250
|
+
*
|
251
|
+
* Especially when searching for all solutions of a puzzle instance,
|
252
|
+
* we might want to remove the symmetrical boards from the
|
253
|
+
* solutions-space. This is done using the same symmetry functions as
|
254
|
+
* for the piece symmetries and lexicographical order constraints.
|
255
|
+
*
|
256
|
+
*
|
257
|
+
* \ingroup ExProblem
|
258
|
+
*
|
259
|
+
*/
|
260
|
+
class Pentominoes : public Example {
|
261
|
+
public:
|
262
|
+
/// Choice of propagators
|
263
|
+
enum {
|
264
|
+
PROPAGATION_INT, ///< Use integer propagators
|
265
|
+
PROPAGATION_BOOLEAN, ///< Use Boolean propagators
|
266
|
+
};
|
267
|
+
/// Choice of symmetry breaking
|
268
|
+
enum {
|
269
|
+
MODEL_NONE, ///< Do not remove symmetric solutions
|
270
|
+
MODEL_SYMMETRY, ///< Remove symmetric solutions
|
271
|
+
};
|
272
|
+
private:
|
273
|
+
/// Specification of the tiles to place.
|
274
|
+
const TileSpec *spec;
|
275
|
+
/// Width and height of the board
|
276
|
+
int width, height;
|
277
|
+
/// Whether the board is filled or not
|
278
|
+
bool filled;
|
279
|
+
/// Number of specifications of tiles to place
|
280
|
+
int nspecs;
|
281
|
+
/// Number of tiles to place
|
282
|
+
int ntiles;
|
283
|
+
|
284
|
+
/// The variables for the board.
|
285
|
+
IntVarArray board;
|
286
|
+
|
287
|
+
/// Compute number of tiles
|
288
|
+
int compute_number_of_tiles(const TileSpec* ts, int nspecs) {
|
289
|
+
int res = 0;
|
290
|
+
for (int i = nspecs; i--; ) {
|
291
|
+
res += ts[i].amount;
|
292
|
+
}
|
293
|
+
return res;
|
294
|
+
}
|
295
|
+
|
296
|
+
/// Returns the regular expression for placing a specific tile \a
|
297
|
+
/// tile in a specific rotation.
|
298
|
+
REG tile_reg(int twidth, int theight, const char* tile,
|
299
|
+
REG mark, REG other, REG eol) {
|
300
|
+
REG oe = other | eol;
|
301
|
+
REG res = *oe;
|
302
|
+
REG color[] = {other, mark};
|
303
|
+
for (int h = 0; h < theight; ++h) {
|
304
|
+
for (int w = 0; w < twidth; ++w) {
|
305
|
+
int which = tile[h*twidth + w] == 'X';
|
306
|
+
res += color[which];
|
307
|
+
}
|
308
|
+
if (h < theight-1) {
|
309
|
+
res += oe(width-twidth, width-twidth);
|
310
|
+
}
|
311
|
+
}
|
312
|
+
res += *oe + oe;
|
313
|
+
return res;
|
314
|
+
}
|
315
|
+
|
316
|
+
/// Returns the regular expression for placing tile number \a t in
|
317
|
+
/// any rotation.
|
318
|
+
REG get_constraint(int t, REG mark, REG other, REG eol) {
|
319
|
+
// This should be done for all rotations
|
320
|
+
REG res;
|
321
|
+
char *t2 = new char[width*height];
|
322
|
+
int w2, h2;
|
323
|
+
tsymmfunc syms[] = {id, flipx, flipy, flipd1, flipd2, rot90, rot180, rot270};
|
324
|
+
int symscnt = sizeof(syms)/sizeof(tsymmfunc);
|
325
|
+
for (int i = 0; i < symscnt; ++i) {
|
326
|
+
syms[i](spec[t].tile, spec[t].width, spec[t].height, t2, w2, h2);
|
327
|
+
res = res | tile_reg(w2, h2, t2, mark, other, eol);
|
328
|
+
}
|
329
|
+
delete [] t2;
|
330
|
+
|
331
|
+
return res;
|
332
|
+
}
|
333
|
+
|
334
|
+
|
335
|
+
public:
|
336
|
+
/// Construction of the model.
|
337
|
+
Pentominoes(const SizeOptions& opt)
|
338
|
+
: spec(examples[opt.size()]),
|
339
|
+
width(spec[0].width+1), // Add one for extra row at end.
|
340
|
+
height(spec[0].height),
|
341
|
+
filled(spec[0].amount),
|
342
|
+
nspecs(examples_size[opt.size()]-1),
|
343
|
+
ntiles(compute_number_of_tiles(spec+1, nspecs)),
|
344
|
+
board(this, width*height, filled,ntiles+1) {
|
345
|
+
spec += 1; // No need for the specification-part any longer
|
346
|
+
|
347
|
+
// Set end-of-line markers
|
348
|
+
for (int h = 0; h < height; ++h) {
|
349
|
+
for (int w = 0; w < width-1; ++w)
|
350
|
+
rel(this, board[h*width + w], IRT_NQ, ntiles+1);
|
351
|
+
rel(this, board[h*width + width - 1], IRT_EQ, ntiles+1);
|
352
|
+
}
|
353
|
+
|
354
|
+
// Post constraints
|
355
|
+
if (opt.propagation() == PROPAGATION_INT) {
|
356
|
+
int tile = 0;
|
357
|
+
for (int i = 0; i < nspecs; ++i) {
|
358
|
+
for (int j = 0; j < spec[i].amount; ++j) {
|
359
|
+
// Color
|
360
|
+
int col = tile+1;
|
361
|
+
// Expression for color col
|
362
|
+
REG mark(col);
|
363
|
+
// Build expression for complement to color col
|
364
|
+
REG other;
|
365
|
+
bool first = true;
|
366
|
+
for (int j = filled; j <= ntiles; ++j) {
|
367
|
+
if (j == col) continue;
|
368
|
+
if (first) {
|
369
|
+
other = REG(j);
|
370
|
+
first = false;
|
371
|
+
} else {
|
372
|
+
other |= REG(j);
|
373
|
+
}
|
374
|
+
}
|
375
|
+
// End of line marker
|
376
|
+
REG eol(ntiles+1);
|
377
|
+
extensional(this, board, get_constraint(i, mark, other, eol));
|
378
|
+
++tile;
|
379
|
+
}
|
380
|
+
}
|
381
|
+
} else { // opt.propagation() == PROPAGATION_BOOLEAN
|
382
|
+
int ncolors = ntiles + 2;
|
383
|
+
// Boolean variables for channeling
|
384
|
+
BoolVarArgs p(ncolors * board.size());
|
385
|
+
for (int i=p.size(); i--; )
|
386
|
+
p[i].init(this,0,1);
|
387
|
+
|
388
|
+
// Post channel constraints
|
389
|
+
for (int i=board.size(); i--; ) {
|
390
|
+
BoolVarArgs c(ncolors);
|
391
|
+
for (int j=ncolors; j--; )
|
392
|
+
c[j]=p[i*ncolors+j];
|
393
|
+
channel(this, c, board[i]);
|
394
|
+
}
|
395
|
+
|
396
|
+
// For placing tile i, we construct the expression over
|
397
|
+
// 0/1-variables and apply it to the projection of
|
398
|
+
// the board on the color for the tile.
|
399
|
+
REG other(0), mark(1);
|
400
|
+
int tile = 0;
|
401
|
+
for (int i = 0; i < nspecs; ++i) {
|
402
|
+
for (int j = 0; j < spec[i].amount; ++j) {
|
403
|
+
int col = tile+1;
|
404
|
+
// Projection for color col
|
405
|
+
BoolVarArgs c(board.size());
|
406
|
+
|
407
|
+
for (int k = board.size(); k--; ) {
|
408
|
+
c[k] = p[k*ncolors+col];
|
409
|
+
}
|
410
|
+
|
411
|
+
extensional(this, c, get_constraint(i, mark, other, other));
|
412
|
+
++tile;
|
413
|
+
}
|
414
|
+
}
|
415
|
+
}
|
416
|
+
|
417
|
+
if (opt.model() == MODEL_SYMMETRY) {
|
418
|
+
// Remove symmetrical boards
|
419
|
+
IntVarArgs orig(board.size()-height), symm(board.size()-height);
|
420
|
+
int pos = 0;
|
421
|
+
for (int i = 0; i < board.size(); ++i) {
|
422
|
+
if ((i+1)%width==0) continue;
|
423
|
+
orig[pos++] = board[i];
|
424
|
+
}
|
425
|
+
|
426
|
+
int w2, h2;
|
427
|
+
bsymmfunc syms[] = {flipx, flipy, flipd1, flipd2, rot90, rot180, rot270};
|
428
|
+
int symscnt = sizeof(syms)/sizeof(bsymmfunc);
|
429
|
+
for (int i = 0; i < symscnt; ++i) {
|
430
|
+
syms[i](orig, width-1, height, symm, w2, h2);
|
431
|
+
if (width-1 == w2 && height == h2)
|
432
|
+
rel(this, orig, IRT_LQ, symm);
|
433
|
+
}
|
434
|
+
}
|
435
|
+
|
436
|
+
// Install branching
|
437
|
+
branch(this, board, INT_VAR_NONE, INT_VAL_MIN);
|
438
|
+
}
|
439
|
+
|
440
|
+
/// Constructor for cloning \a s
|
441
|
+
Pentominoes(bool share, Pentominoes& s) :
|
442
|
+
Example(share,s), spec(s.spec), width(s.width), height(s.height),
|
443
|
+
filled(s.filled), nspecs(s.nspecs) {
|
444
|
+
board.update(this, share, s.board);
|
445
|
+
}
|
446
|
+
|
447
|
+
/// Copy space during cloning
|
448
|
+
virtual Space*
|
449
|
+
copy(bool share) {
|
450
|
+
return new Pentominoes(share,*this);
|
451
|
+
}
|
452
|
+
|
453
|
+
/// Print solution
|
454
|
+
virtual void
|
455
|
+
print(std::ostream& os) {
|
456
|
+
for (int h = 0; h < height; ++h) {
|
457
|
+
os << "\t";
|
458
|
+
for (int w = 0; w < width-1; ++w) {
|
459
|
+
int val = board[h*width + w].val();
|
460
|
+
char c = val < 10 ? '0'+val : 'A' + (val-10);
|
461
|
+
os << c;
|
462
|
+
}
|
463
|
+
os << std::endl;
|
464
|
+
}
|
465
|
+
os << std::endl;
|
466
|
+
}
|
467
|
+
};
|
468
|
+
|
469
|
+
|
470
|
+
/** \brief Main-function
|
471
|
+
* \relates Pentominoes
|
472
|
+
*/
|
473
|
+
int
|
474
|
+
main(int argc, char* argv[]) {
|
475
|
+
SizeOptions opt("Pentominoes");
|
476
|
+
opt.size(1);
|
477
|
+
opt.model(Pentominoes::MODEL_SYMMETRY);
|
478
|
+
opt.model(Pentominoes::MODEL_NONE,
|
479
|
+
"none", "do not remove symmetric solutions");
|
480
|
+
opt.model(Pentominoes::MODEL_SYMMETRY,
|
481
|
+
"sym", "remove symmetric solutions");
|
482
|
+
|
483
|
+
opt.propagation(Pentominoes::PROPAGATION_BOOLEAN);
|
484
|
+
opt.propagation(Pentominoes::PROPAGATION_INT,
|
485
|
+
"int", "use integer propagators");
|
486
|
+
opt.propagation(Pentominoes::PROPAGATION_BOOLEAN,
|
487
|
+
"bool", "use Boolean propagators");
|
488
|
+
|
489
|
+
opt.parse(argc,argv);
|
490
|
+
if (opt.size() >= n_examples) {
|
491
|
+
std::cerr << "Error: size must be between 0 and "
|
492
|
+
<< n_examples-1 << std::endl;
|
493
|
+
return 1;
|
494
|
+
}
|
495
|
+
Example::run<Pentominoes,DFS,SizeOptions>(opt);
|
496
|
+
return 0;
|
497
|
+
}
|
498
|
+
|
499
|
+
|
500
|
+
/** \name Puzzle specifications
|
501
|
+
*
|
502
|
+
* \relates Pentominoes
|
503
|
+
*/
|
504
|
+
//@{
|
505
|
+
/// Small specification
|
506
|
+
static const TileSpec puzzle0[] =
|
507
|
+
{
|
508
|
+
// Width and height of board
|
509
|
+
{4, 4, true, ""},
|
510
|
+
{2, 3, 1,
|
511
|
+
"XX"
|
512
|
+
"X "
|
513
|
+
"X "},
|
514
|
+
{2, 1, 1,
|
515
|
+
"XX"},
|
516
|
+
{3, 3, 1,
|
517
|
+
" XX"
|
518
|
+
" X"
|
519
|
+
"XXX"},
|
520
|
+
{1, 1, 1,
|
521
|
+
"X"},
|
522
|
+
{3, 1, 1,
|
523
|
+
"XXX"}
|
524
|
+
};
|
525
|
+
/// Standard specification
|
526
|
+
static const TileSpec puzzle1[] =
|
527
|
+
{
|
528
|
+
// Width and height of board
|
529
|
+
{8, 8, true, ""},
|
530
|
+
{3, 3, 1,
|
531
|
+
"XXX"
|
532
|
+
"XXX"
|
533
|
+
"XX "},
|
534
|
+
{5, 3, 1,
|
535
|
+
" XXX"
|
536
|
+
" X "
|
537
|
+
"XXX "},
|
538
|
+
{3, 4, 1,
|
539
|
+
"XXX"
|
540
|
+
"XXX"
|
541
|
+
" X"
|
542
|
+
" X"},
|
543
|
+
{3, 4, 1,
|
544
|
+
"XXX"
|
545
|
+
" X"
|
546
|
+
" X"
|
547
|
+
" X"},
|
548
|
+
{2, 5, 1,
|
549
|
+
" X"
|
550
|
+
" X"
|
551
|
+
" X"
|
552
|
+
"XX"
|
553
|
+
"XX"},
|
554
|
+
{4, 2, 1,
|
555
|
+
"XX "
|
556
|
+
"XXXX"},
|
557
|
+
{3, 3, 1,
|
558
|
+
"XXX"
|
559
|
+
" X"
|
560
|
+
" X"},
|
561
|
+
{2, 3, 1,
|
562
|
+
"XX"
|
563
|
+
"X "
|
564
|
+
"X "},
|
565
|
+
{2, 4, 1,
|
566
|
+
"XX"
|
567
|
+
"XX"
|
568
|
+
"XX"
|
569
|
+
"XX"},
|
570
|
+
{3, 2, 1,
|
571
|
+
"XX "
|
572
|
+
"XXX"}
|
573
|
+
};
|
574
|
+
|
575
|
+
// Perfect square number 2 from examples/perfect-square.cc
|
576
|
+
static const TileSpec square2[] =
|
577
|
+
{
|
578
|
+
// Width and height of board
|
579
|
+
{10, 10, true, ""},
|
580
|
+
{6, 6, 1,
|
581
|
+
"XXXXXX"
|
582
|
+
"XXXXXX"
|
583
|
+
"XXXXXX"
|
584
|
+
"XXXXXX"
|
585
|
+
"XXXXXX"
|
586
|
+
"XXXXXX"
|
587
|
+
},
|
588
|
+
{4, 4, 3,
|
589
|
+
"XXXX"
|
590
|
+
"XXXX"
|
591
|
+
"XXXX"
|
592
|
+
"XXXX"},
|
593
|
+
{2, 2, 4,
|
594
|
+
"XX"
|
595
|
+
"XX"}
|
596
|
+
};
|
597
|
+
|
598
|
+
// Perfect square number 3 from examples/perfect-square.cc
|
599
|
+
static const TileSpec square3[] =
|
600
|
+
{
|
601
|
+
// Width and height of board
|
602
|
+
{20, 20, true, ""},
|
603
|
+
{9, 9, 1,
|
604
|
+
"XXXXXXXXX"
|
605
|
+
"XXXXXXXXX"
|
606
|
+
"XXXXXXXXX"
|
607
|
+
"XXXXXXXXX"
|
608
|
+
"XXXXXXXXX"
|
609
|
+
"XXXXXXXXX"
|
610
|
+
"XXXXXXXXX"
|
611
|
+
"XXXXXXXXX"
|
612
|
+
"XXXXXXXXX"
|
613
|
+
},
|
614
|
+
{8, 8, 2,
|
615
|
+
"XXXXXXXX"
|
616
|
+
"XXXXXXXX"
|
617
|
+
"XXXXXXXX"
|
618
|
+
"XXXXXXXX"
|
619
|
+
"XXXXXXXX"
|
620
|
+
"XXXXXXXX"
|
621
|
+
"XXXXXXXX"
|
622
|
+
"XXXXXXXX"
|
623
|
+
},
|
624
|
+
{7, 7, 1,
|
625
|
+
"XXXXXXX"
|
626
|
+
"XXXXXXX"
|
627
|
+
"XXXXXXX"
|
628
|
+
"XXXXXXX"
|
629
|
+
"XXXXXXX"
|
630
|
+
"XXXXXXX"
|
631
|
+
"XXXXXXX"
|
632
|
+
},
|
633
|
+
{5, 5, 1,
|
634
|
+
"XXXXX"
|
635
|
+
"XXXXX"
|
636
|
+
"XXXXX"
|
637
|
+
"XXXXX"
|
638
|
+
"XXXXX"
|
639
|
+
},
|
640
|
+
{4, 4, 5,
|
641
|
+
"XXXX"
|
642
|
+
"XXXX"
|
643
|
+
"XXXX"
|
644
|
+
"XXXX"},
|
645
|
+
{3, 3, 3,
|
646
|
+
"XXX"
|
647
|
+
"XXX"
|
648
|
+
"XXX"},
|
649
|
+
{2, 2, 2,
|
650
|
+
"XX"
|
651
|
+
"XX"},
|
652
|
+
{1, 1, 2,
|
653
|
+
"X"}
|
654
|
+
};
|
655
|
+
|
656
|
+
static const TileSpec pentomino6x10[] =
|
657
|
+
{
|
658
|
+
// Width and height of board
|
659
|
+
{10, 6, true, ""},
|
660
|
+
{2, 4, 1,
|
661
|
+
"X "
|
662
|
+
"X "
|
663
|
+
"X "
|
664
|
+
"XX"},
|
665
|
+
{3,3, 1,
|
666
|
+
"XX "
|
667
|
+
" XX"
|
668
|
+
" X "},
|
669
|
+
{3,3, 1,
|
670
|
+
"XXX"
|
671
|
+
" X "
|
672
|
+
" X "},
|
673
|
+
{3,3, 1,
|
674
|
+
" X"
|
675
|
+
" XX"
|
676
|
+
"XX "},
|
677
|
+
{2,4, 1,
|
678
|
+
" X"
|
679
|
+
"XX"
|
680
|
+
" X"
|
681
|
+
" X"},
|
682
|
+
{5,1, 1,
|
683
|
+
"XXXXX"},
|
684
|
+
{3,3, 1,
|
685
|
+
"X "
|
686
|
+
"XXX"
|
687
|
+
" X"},
|
688
|
+
{4,2, 1,
|
689
|
+
" XXX"
|
690
|
+
"XX "},
|
691
|
+
{2,3, 1,
|
692
|
+
"XX"
|
693
|
+
"XX"
|
694
|
+
" X"},
|
695
|
+
{3,2, 1,
|
696
|
+
"X X"
|
697
|
+
"XXX"},
|
698
|
+
{3,3, 1,
|
699
|
+
" X "
|
700
|
+
"XXX"
|
701
|
+
" X "},
|
702
|
+
{3,3, 1,
|
703
|
+
" X"
|
704
|
+
" X"
|
705
|
+
"XXX"}
|
706
|
+
};
|
707
|
+
|
708
|
+
static const TileSpec pentomino5x12[] =
|
709
|
+
{
|
710
|
+
// Width and height of board
|
711
|
+
{12, 5, true, ""},
|
712
|
+
{2, 4, 1,
|
713
|
+
"X "
|
714
|
+
"X "
|
715
|
+
"X "
|
716
|
+
"XX"},
|
717
|
+
{3,3, 1,
|
718
|
+
"XX "
|
719
|
+
" XX"
|
720
|
+
" X "},
|
721
|
+
{3,3, 1,
|
722
|
+
"XXX"
|
723
|
+
" X "
|
724
|
+
" X "},
|
725
|
+
{3,3, 1,
|
726
|
+
" X"
|
727
|
+
" XX"
|
728
|
+
"XX "},
|
729
|
+
{2,4, 1,
|
730
|
+
" X"
|
731
|
+
"XX"
|
732
|
+
" X"
|
733
|
+
" X"},
|
734
|
+
{5,1, 1,
|
735
|
+
"XXXXX"},
|
736
|
+
{3,3, 1,
|
737
|
+
"X "
|
738
|
+
"XXX"
|
739
|
+
" X"},
|
740
|
+
{4,2, 1,
|
741
|
+
" XXX"
|
742
|
+
"XX "},
|
743
|
+
{2,3, 1,
|
744
|
+
"XX"
|
745
|
+
"XX"
|
746
|
+
" X"},
|
747
|
+
{3,2, 1,
|
748
|
+
"X X"
|
749
|
+
"XXX"},
|
750
|
+
{3,3, 1,
|
751
|
+
" X "
|
752
|
+
"XXX"
|
753
|
+
" X "},
|
754
|
+
{3,3, 1,
|
755
|
+
" X"
|
756
|
+
" X"
|
757
|
+
"XXX"}
|
758
|
+
};
|
759
|
+
|
760
|
+
static const TileSpec pentomino4x15[] =
|
761
|
+
{
|
762
|
+
// Width and height of board
|
763
|
+
{15, 4, true, ""},
|
764
|
+
{2, 4, 1,
|
765
|
+
"X "
|
766
|
+
"X "
|
767
|
+
"X "
|
768
|
+
"XX"},
|
769
|
+
{3,3, 1,
|
770
|
+
"XX "
|
771
|
+
" XX"
|
772
|
+
" X "},
|
773
|
+
{3,3, 1,
|
774
|
+
"XXX"
|
775
|
+
" X "
|
776
|
+
" X "},
|
777
|
+
{3,3, 1,
|
778
|
+
" X"
|
779
|
+
" XX"
|
780
|
+
"XX "},
|
781
|
+
{2,4, 1,
|
782
|
+
" X"
|
783
|
+
"XX"
|
784
|
+
" X"
|
785
|
+
" X"},
|
786
|
+
{5,1, 1,
|
787
|
+
"XXXXX"},
|
788
|
+
{3,3, 1,
|
789
|
+
"X "
|
790
|
+
"XXX"
|
791
|
+
" X"},
|
792
|
+
{4,2, 1,
|
793
|
+
" XXX"
|
794
|
+
"XX "},
|
795
|
+
{2,3, 1,
|
796
|
+
"XX"
|
797
|
+
"XX"
|
798
|
+
" X"},
|
799
|
+
{3,2, 1,
|
800
|
+
"X X"
|
801
|
+
"XXX"},
|
802
|
+
{3,3, 1,
|
803
|
+
" X "
|
804
|
+
"XXX"
|
805
|
+
" X "},
|
806
|
+
{3,3, 1,
|
807
|
+
" X"
|
808
|
+
" X"
|
809
|
+
"XXX"}
|
810
|
+
};
|
811
|
+
|
812
|
+
static const TileSpec pentomino3x20[] =
|
813
|
+
{
|
814
|
+
// Width and height of board
|
815
|
+
{20, 3, true, ""},
|
816
|
+
{2, 4, 1,
|
817
|
+
"X "
|
818
|
+
"X "
|
819
|
+
"X "
|
820
|
+
"XX"},
|
821
|
+
{3,3, 1,
|
822
|
+
"XX "
|
823
|
+
" XX"
|
824
|
+
" X "},
|
825
|
+
{3,3, 1,
|
826
|
+
"XXX"
|
827
|
+
" X "
|
828
|
+
" X "},
|
829
|
+
{3,3, 1,
|
830
|
+
" X"
|
831
|
+
" XX"
|
832
|
+
"XX "},
|
833
|
+
{2,4, 1,
|
834
|
+
" X"
|
835
|
+
"XX"
|
836
|
+
" X"
|
837
|
+
" X"},
|
838
|
+
{5,1, 1,
|
839
|
+
"XXXXX"},
|
840
|
+
{3,3, 1,
|
841
|
+
"X "
|
842
|
+
"XXX"
|
843
|
+
" X"},
|
844
|
+
{4,2, 1,
|
845
|
+
" XXX"
|
846
|
+
"XX "},
|
847
|
+
{2,3, 1,
|
848
|
+
"XX"
|
849
|
+
"XX"
|
850
|
+
" X"},
|
851
|
+
{3,2, 1,
|
852
|
+
"X X"
|
853
|
+
"XXX"},
|
854
|
+
{3,3, 1,
|
855
|
+
" X "
|
856
|
+
"XXX"
|
857
|
+
" X "},
|
858
|
+
{3,3, 1,
|
859
|
+
" X"
|
860
|
+
" X"
|
861
|
+
"XXX"}
|
862
|
+
};
|
863
|
+
|
864
|
+
/// List of specifications
|
865
|
+
const TileSpec *examples[] = {puzzle0, puzzle1, square2, square3,
|
866
|
+
pentomino6x10,pentomino5x12,
|
867
|
+
pentomino4x15,pentomino3x20};
|
868
|
+
const int examples_size[] = {sizeof(puzzle0)/sizeof(TileSpec),
|
869
|
+
sizeof(puzzle1)/sizeof(TileSpec),
|
870
|
+
sizeof(square2)/sizeof(TileSpec),
|
871
|
+
sizeof(square3)/sizeof(TileSpec),
|
872
|
+
sizeof(pentomino6x10)/sizeof(TileSpec),
|
873
|
+
sizeof(pentomino5x12)/sizeof(TileSpec),
|
874
|
+
sizeof(pentomino4x15)/sizeof(TileSpec),
|
875
|
+
sizeof(pentomino3x20)/sizeof(TileSpec)};
|
876
|
+
|
877
|
+
/// Number of specifications
|
878
|
+
const unsigned n_examples = sizeof(examples)/sizeof(TileSpec*);
|
879
|
+
//@}
|
880
|
+
|
881
|
+
// Symmetry functions
|
882
|
+
namespace {
|
883
|
+
int pos(int h, int w, int h1, int w1) {
|
884
|
+
if (!(0 <= h && h < h1) ||
|
885
|
+
!(0 <= w && w < w1)) {
|
886
|
+
std::cerr << "Cannot place (" << h << "," << w
|
887
|
+
<< ") on board of size " << h1 << "x" << w1 << std::endl;
|
888
|
+
}
|
889
|
+
return h * w1 + w;
|
890
|
+
}
|
891
|
+
template <class CArray, class Array>
|
892
|
+
void id(CArray t1, int w1, int h1, Array t2, int& w2, int&h2) {
|
893
|
+
w2 = w1; h2 = h1;
|
894
|
+
for (int h = 0; h < h1; ++h)
|
895
|
+
for (int w = 0; w < w1; ++w)
|
896
|
+
t2[pos(h, w, h2, w2)] = t1[pos(h, w, h1, w1)];
|
897
|
+
}
|
898
|
+
template <class CArray, class Array>
|
899
|
+
void rot90(CArray t1, int w1, int h1, Array t2, int& w2, int& h2) {
|
900
|
+
w2 = h1; h2 = w1;
|
901
|
+
for (int h = 0; h < h1; ++h)
|
902
|
+
for (int w = 0; w < w1; ++w)
|
903
|
+
t2[pos(w, w2-h-1, h2, w2)] = t1[pos(h, w, h1, w1)];
|
904
|
+
}
|
905
|
+
template <class CArray, class Array>
|
906
|
+
void rot180(CArray t1, int w1, int h1, Array t2, int& w2, int& h2) {
|
907
|
+
w2 = w1; h2 = h1;
|
908
|
+
for (int h = 0; h < h1; ++h)
|
909
|
+
for (int w = 0; w < w1; ++w)
|
910
|
+
t2[pos(h2-h-1, w2-w-1, h2, w2)] = t1[pos(h, w, h1, w1)];
|
911
|
+
}
|
912
|
+
template <class CArray, class Array>
|
913
|
+
void rot270(CArray t1, int w1, int h1, Array t2, int& w2, int& h2) {
|
914
|
+
w2 = h1; h2 = w1;
|
915
|
+
for (int h = 0; h < h1; ++h)
|
916
|
+
for (int w = 0; w < w1; ++w)
|
917
|
+
t2[pos(h2-w-1, h, h2, w2)] = t1[pos(h, w, h1, w1)];
|
918
|
+
}
|
919
|
+
template <class CArray, class Array>
|
920
|
+
void flipx(CArray t1, int w1, int h1, Array t2, int& w2, int& h2) {
|
921
|
+
w2 = w1; h2 = h1;
|
922
|
+
for (int h = 0; h < h1; ++h)
|
923
|
+
for (int w = 0; w < w1; ++w)
|
924
|
+
t2[pos(h, w2-w-1, h2, w2)] = t1[pos(h, w, h1, w1)];
|
925
|
+
}
|
926
|
+
template <class CArray, class Array>
|
927
|
+
void flipy(CArray t1, int w1, int h1, Array t2, int& w2, int& h2) {
|
928
|
+
w2 = w1; h2 = h1;
|
929
|
+
for (int h = 0; h < h1; ++h)
|
930
|
+
for (int w = 0; w < w1; ++w)
|
931
|
+
t2[pos(h2-h-1, w, h2, w2)] = t1[pos(h, w, h1, w1)];
|
932
|
+
}
|
933
|
+
template <class CArray, class Array>
|
934
|
+
void flipd1(CArray t1, int w1, int h1, Array t2, int& w2, int& h2) {
|
935
|
+
w2 = h1; h2 = w1;
|
936
|
+
for (int h = 0; h < h1; ++h)
|
937
|
+
for (int w = 0; w < w1; ++w)
|
938
|
+
t2[pos(w, h, h2, w2)] = t1[pos(h, w, h1, w1)];
|
939
|
+
}
|
940
|
+
template <class CArray, class Array>
|
941
|
+
void flipd2(CArray t1, int w1, int h1, Array t2, int& w2, int& h2) {
|
942
|
+
w2 = h1; h2 = w1;
|
943
|
+
for (int h = 0; h < h1; ++h)
|
944
|
+
for (int w = 0; w < w1; ++w)
|
945
|
+
t2[pos(h2-w-1, w2-h-1, h2, w2)] = t1[pos(h, w, h1, w1)];
|
946
|
+
}
|
947
|
+
}
|
948
|
+
|
949
|
+
// STATISTICS: example-any
|