dep-selector-libgecode 1.0.0.alpha.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +26 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +20 -0
- data/dep-selector-libgecode.gemspec +25 -0
- data/ext/libgecode3/Makefile +8 -0
- data/ext/libgecode3/extconf.rb +57 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/LICENSE +25 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/Makefile.contribs +88 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/Makefile.dep +11307 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/Makefile.in +1795 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/changelog.in +6132 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/configure +13054 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/configure.ac +356 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/configure.ac.in +352 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/README +26 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/AbstractWorker.hh +42 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Doxyfile +263 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Makefile.in.in +162 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/OptVar.cc +82 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/OptVar.hh +124 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/QCOPPlus.cc +306 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/QCOPPlus.hh +166 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/QCSPPlusUnblockable.cc +239 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/QCSPPlusUnblockable.hh +140 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/README +6 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Strategy.cc +253 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Strategy.hh +112 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/StrategyNode.cc +59 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/StrategyNode.hh +49 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/UnblockableBranching.hh +34 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/UnblockableViewValBranching.cc +61 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/UnblockableViewValBranching.hh +45 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Work.cc +48 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Work.hh +64 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/WorkComparators.hh +67 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/WorkManager.cc +376 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/WorkManager.hh +96 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Worker.cc +285 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Worker.hh +70 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/clean +5 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/configure +2637 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/configure.ac +44 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/myDom.cc +59 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/myspace.cc +119 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/myspace.hh +79 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qecode.hh +56 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_parallel.cc +41 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_parallel.hh +43 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_qcop.cc +268 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_qcop.hh +56 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_qcsp.cc +163 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_qcsp.hh +63 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_unblockable.cc +423 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_unblockable.hh +84 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/shortdesc.ac +1 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/vartype.hh +31 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/doxygen/doxygen.conf.in +1245 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/doxygen/doxygen.hh.in +594 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/all-interval.cpp +136 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/alpha.cpp +151 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/bacp.cpp +596 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/bibd.cpp +182 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/bin-packing.cpp +25363 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/black-hole.cpp +413 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/car-sequencing.cpp +653 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/crew.cpp +269 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/crossword.cpp +3954 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/crowded-chess.cpp +424 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/dominating-queens.cpp +170 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/domino.cpp +346 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/donald.cpp +135 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/efpa.cpp +323 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/eq20.cpp +128 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/golf.cpp +190 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/golomb-ruler.cpp +157 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/graph-color.cpp +425 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/grocery.cpp +116 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/hamming.cpp +144 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/ind-set.cpp +144 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/kakuro.cpp +627 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/knights.cpp +430 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/langford-number.cpp +218 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/magic-sequence.cpp +133 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/magic-square.cpp +141 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/minesweeper.cpp +311 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/money.cpp +132 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/nonogram.cpp +1215 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/open-shop.cpp +412 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/ortho-latin.cpp +183 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/partition.cpp +145 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/pentominoes.cpp +952 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/perfect-square.cpp +317 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/photo.cpp +166 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/queen-armies.cpp +335 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/queens.cpp +214 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/radiotherapy.cpp +943 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/sat.cpp +260 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/schurs-lemma.cpp +142 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/scowl.hpp +14149 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/sports-league.cpp +353 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/steel-mill.cpp +654 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/steiner.cpp +170 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/sudoku.cpp +2294 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/tsp.cpp +339 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/warehouses.cpp +185 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/examples/word-square.cpp +168 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode.m4 +1272 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver.hh +602 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver/options.cpp +435 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver/options.hpp +418 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver/script.cpp +104 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver/script.hpp +388 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc.hh +417 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/CHANGES +63 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/ast.hh +492 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/conexpr.hh +82 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/exampleplugin/myplugin.cpp +49 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/exampleplugin/myplugin.hh +47 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/exampleplugin/myplugin.pro +51 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/exampleplugin/test_myplugin.fzn +1 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/flatzinc.cpp +1056 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/lexer.lxx +137 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/lexer.yy.cpp +2458 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/all_different_int.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/all_equal_int.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/among.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/at_least_int.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/at_least_set.mzn +38 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/at_most_int.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/at_most_set.mzn +38 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/bin_packing.mzn +44 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/bin_packing_capa.mzn +45 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/bin_packing_load.mzn +45 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/circuit.mzn +40 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/count.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/cumulative.mzn +53 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/decreasing_bool.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/decreasing_int.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/diffn.mzn +44 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/disjoint.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/distribute.mzn +46 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/exactly_int.mzn +40 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/exactly_set.mzn +38 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/gecode.mzn +98 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/global_cardinality.mzn +43 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/global_cardinality_closed.mzn +39 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/global_cardinality_low_up.mzn +40 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/global_cardinality_low_up_closed.mzn +40 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/increasing_bool.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/increasing_int.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/int_set_channel.mzn +49 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/inverse.mzn +42 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/lex_less_int.mzn +42 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/lex_lesseq_int.mzn +42 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/link_set_to_booleans.mzn +47 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/maximum_int.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/member_bool.mzn +41 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/member_int.mzn +41 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/minimum_int.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/nvalue.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/partition_set.mzn +42 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/precedence.mzn +41 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/range.mzn +51 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/redefinitions.mzn +62 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/regular.mzn +38 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/roots.mzn +63 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/sort.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/sum_pred.mzn +42 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/table_bool.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/table_int.mzn +37 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/option.hh +70 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/parser.hh +265 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/parser.tab.cpp +3571 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/parser.tab.hh +164 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/parser.yxx +1604 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/plugin.hh +83 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/registry.cpp +1812 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/registry.hh +71 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/symboltable.hh +96 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/varspec.hh +163 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist.hh +298 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/drawingcursor.cpp +288 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/drawingcursor.hh +110 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/drawingcursor.hpp +84 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/gecodelogo.cpp +673 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/gecodelogo.hh +65 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/gist.cpp +120 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/gist.hpp +207 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/layoutcursor.hh +69 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/layoutcursor.hpp +70 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/mainwindow.cpp +341 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/mainwindow.hh +129 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/node.cpp +82 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/node.hh +160 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/node.hpp +210 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodecursor.hh +215 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodecursor.hpp +271 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodestats.cpp +138 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodestats.hh +81 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodevisitor.hh +96 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodevisitor.hpp +126 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodewidget.cpp +90 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodewidget.hh +59 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/preferences.cpp +190 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/preferences.hh +96 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/qtgist.cpp +809 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/qtgist.hh +294 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/spacenode.cpp +369 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/spacenode.hh +221 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/spacenode.hpp +191 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/standalone-example/mygist.cpp +80 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/standalone-example/standalone_example.pro +18 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/stopbrancher.cpp +90 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/stopbrancher.hh +82 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/textoutput.cpp +175 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/textoutput.hh +75 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/treecanvas.cpp +1430 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/treecanvas.hh +369 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/visualnode.cpp +473 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/visualnode.hh +237 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/visualnode.hpp +220 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/zoomToFitIcon.hpp +114 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int.hh +3477 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic.cpp +185 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic.hh +666 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/abs.hpp +236 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/divmod.hpp +350 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/max.hpp +398 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/mult.hpp +750 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/sqr.hpp +377 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/sqrt.hpp +217 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/array-traits.hpp +147 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/array.cpp +113 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/array.hpp +111 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bin-packing.cpp +71 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bin-packing.hh +184 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bin-packing/propagate.cpp +388 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bin-packing/propagate.hpp +219 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool.cpp +755 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool.hh +581 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/base.hpp +137 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/clause.hpp +353 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/eq.hpp +196 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/eqv.cpp +104 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/eqv.hpp +202 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/lq.hpp +241 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/or.hpp +850 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch.cpp +152 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch.hh +607 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-val-bool.hpp +81 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-val-int.hpp +107 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-view-bool.bs +121 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-view-bool.cpp +438 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-view-int.bs +121 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-view-int.cpp +438 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/select-val.hpp +229 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/select-values.hpp +213 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/select-view.hpp +364 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel.cpp +172 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel.hh +249 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/base.hpp +78 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/dom.hpp +332 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/link-multi.cpp +241 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/link-multi.hpp +84 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/link-single.cpp +77 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/link-single.hpp +71 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/val.hpp +256 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit.cpp +229 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit.hh +160 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit/base.hpp +270 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit/dom.hpp +128 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit/val.hpp +105 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count.cpp +417 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count.hh +410 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/int-base.hpp +80 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/int-eq.hpp +143 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/int-gq.hpp +137 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/int-lq.hpp +136 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/rel.hpp +281 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/view-base.hpp +131 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/view-eq.hpp +117 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/view-gq.hpp +109 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/view-lq.hpp +96 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative.cpp +432 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative.hh +745 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/basic.hpp +211 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/edge-finding.hpp +185 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/man-prop.hpp +127 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/opt-prop.hpp +171 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/overload.hpp +63 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/task-view.hpp +84 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/task.hpp +256 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/tree.hpp +272 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulatives.cpp +187 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulatives.hh +133 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulatives/val.hpp +380 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct.cpp +97 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct.hh +314 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/bnd.hpp +444 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/dom-ctrl.hpp +81 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/dom.hpp +123 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/graph.hpp +266 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/ter-dom.hpp +113 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/val.hpp +185 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/dom.cpp +135 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/dom.hh +118 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/dom/range.hpp +105 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/dom/spec.hpp +124 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element.cpp +190 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element.hh +384 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element/int.hpp +443 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element/pair.cpp +151 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element/pair.hpp +74 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element/view.hpp +559 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exception.hpp +196 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exec.cpp +83 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exec.hh +87 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exec/when.cpp +77 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exec/when.hpp +51 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional.cpp +124 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional.hh +508 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/base.hpp +163 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/basic.hpp +148 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/dfa.cpp +535 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/dfa.hpp +282 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/incremental.hpp +454 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/layered-graph.hpp +982 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/tuple-set.cpp +222 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/tuple-set.hpp +184 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc.cpp +172 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc.hh +268 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/bnd-sup.hpp +608 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/bnd.hpp +829 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/dom-sup.hpp +1777 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/dom.hpp +315 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/post.hpp +169 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/val.hpp +299 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/view.hpp +410 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/int-set-1.hpp +249 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/int-set-2.hpp +51 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/int-set.cpp +167 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/limits.hpp +94 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear-bool.cpp +196 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear-int.cpp +194 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear.hh +1560 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/bool-int.hpp +743 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/bool-post.cpp +602 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/bool-scale.hpp +695 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/bool-view.hpp +319 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-bin.hpp +439 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-dom.hpp +484 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-nary.hpp +864 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-noview.hpp +251 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-post.cpp +561 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-ter.hpp +273 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/post.hpp +152 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/member.cpp +85 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/member.hh +125 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/member/prop.hpp +175 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/member/re-prop.hpp +178 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap.cpp +226 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap.hh +318 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/base.hpp +88 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/box.hpp +198 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/dim.hpp +197 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/man.hpp +119 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/opt.hpp +153 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues.cpp +244 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues.hh +429 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/bool-base.hpp +98 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/bool-eq.hpp +174 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/bool-gq.hpp +149 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/bool-lq.hpp +151 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/graph.hpp +283 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/int-base.hpp +347 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/int-eq.hpp +167 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/int-gq.hpp +130 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/int-lq.hpp +154 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/range-event.hpp +51 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/sym-bit-matrix.hpp +69 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/precede.cpp +73 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/precede.hh +113 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/precede/single.hpp +232 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/propagator.hpp +311 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel.cpp +381 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel.hh +665 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel/eq.hpp +676 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel/lex.hpp +414 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel/lq-le.hpp +537 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel/nq.hpp +196 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence.cpp +197 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence.hh +154 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence/int.hpp +168 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence/set-op.hpp +154 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence/view.hpp +499 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence/violations.hpp +101 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted.cpp +82 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted.hh +107 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/matching.hpp +173 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/narrowing.hpp +250 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/order.hpp +213 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/propagate.hpp +646 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/sortsup.hpp +564 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/support-values.hh +154 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/support-values.hpp +187 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task.hh +454 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/array.hpp +179 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/fwd-to-bwd.hpp +102 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/iter.hpp +92 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/man-to-opt.hpp +100 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/prop.hpp +70 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/purge.hpp +74 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/sort.hpp +234 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/tree.hpp +189 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary.cpp +258 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary.hh +839 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/detectable.hpp +116 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/edge-finding.hpp +78 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/man-prop.hpp +78 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/not-first-not-last.hpp +133 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/opt-prop.hpp +116 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/overload.hpp +93 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/subsumption.hpp +55 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/task-view.hpp +105 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/task.hpp +532 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/tree.hpp +229 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unshare.cpp +146 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/val-set.hh +118 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/val-set.hpp +186 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp.hpp +710 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/bool.cpp +65 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/bool.hpp +431 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/bool.vis +75 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/delta.hpp +64 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/int.cpp +361 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/int.hpp +1029 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/int.vis +117 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/bool.cpp +53 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/bool.hpp +121 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/int.cpp +61 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/int.hpp +145 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/print.hpp +56 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph.hh +334 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/bi-link.hpp +89 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/comb-ptr-flag.hpp +78 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/edge.hpp +124 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/graph.hpp +202 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/iter-prune-val.hpp +70 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/node.hpp +171 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view.hpp +1690 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/bool-test.hpp +64 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/bool.hpp +314 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/cached.hpp +402 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/constint.hpp +324 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/int.hpp +264 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/iter.hpp +65 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/minus.hpp +300 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/neg-bool.hpp +177 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/offset.hpp +303 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/print.hpp +162 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/rel-test.hpp +231 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/scale.hpp +368 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/zero.hpp +305 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter.hh +96 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-add.hpp +144 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-append.hpp +222 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-array.hpp +139 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-cache.hpp +106 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-compl.hpp +220 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-diff.hpp +142 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-empty.hpp +111 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-inter.hpp +309 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-list.hpp +263 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-map.hpp +260 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-minmax.hpp +118 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-minus.hpp +107 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-negative.hpp +137 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-offset.hpp +127 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-operations.hpp +157 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-positive.hpp +139 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-rangelist.hpp +115 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-scale.hpp +238 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-singleton-append.hpp +111 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-singleton.hpp +86 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-size.hpp +146 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-union.hpp +361 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-values.hpp +140 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-array.hpp +120 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-bitset.hpp +114 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-inter.hpp +130 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-list.hpp +186 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-map.hpp +136 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-minus.hpp +105 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-negative.hpp +116 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-offset.hpp +113 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-positive.hpp +123 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-ranges.hpp +106 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-singleton.hpp +109 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-union.hpp +137 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-unique.hpp +118 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel.hh +194 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/advisor.hpp +102 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/allocators.hpp +476 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/archive.cpp +70 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/archive.hpp +298 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/array.hpp +2133 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/branch.cpp +121 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/branch.hpp +254 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/brancher-tiebreak.hpp +615 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/brancher-val.hpp +126 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/brancher-view.hpp +455 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/brancher.hpp +431 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/core.cpp +563 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/core.hpp +3668 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/exception.hpp +124 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/global-prop-info.hpp +258 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/macros.hpp +118 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/memory-config.hpp +154 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/memory-manager.cpp +53 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/memory-manager.hpp +511 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/modevent.hpp +69 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/propagator.hpp +699 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/range-list.hpp +184 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/region.cpp +85 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/region.hpp +459 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/shared-array.hpp +345 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/var-imp.hpp +332 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/var-type.hpp +767 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/var.hpp +144 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/view.hpp +715 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/wait.hh +244 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel.hh +1870 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/arithmetic.cpp +408 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/bool-expr.cpp +522 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/bool-expr.hpp +87 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/exception.hpp +84 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/lin-expr.cpp +594 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/lin-expr.hpp +297 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/lin-rel.cpp +414 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/lin-rel.hpp +85 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/matrix.hpp +247 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/optimize.hpp +62 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/reg.cpp +817 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/reg.hpp +94 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/set-expr.cpp +704 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/set-expr.hpp +96 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/set-rel.cpp +81 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/set-rel.hpp +84 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search.hh +458 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/bab.cpp +62 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/bab.hpp +91 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/dfs.cpp +62 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/dfs.hpp +84 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/options.cpp +72 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/options.hpp +49 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/bab.cpp +178 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/bab.hh +203 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/dfs.cpp +176 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/dfs.hh +195 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/engine.cpp +118 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/engine.hh +418 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/path.hh +477 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/restart.cpp +167 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/restart.hh +73 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/restart.cpp +62 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/restart.hpp +88 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/sequential/bab.hh +177 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/sequential/dfs.hh +176 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/sequential/path.hh +411 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/sequential/restart.hh +89 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/statistics.hpp +70 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/stop.cpp +83 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/stop.hpp +137 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/support.hh +91 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/worker.hh +202 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set.hh +1144 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/array-traits.hpp +86 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/array.cpp +219 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/array.hpp +64 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch.cpp +128 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch.hh +438 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/post-val.hpp +107 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/post-view.bs +109 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/post-view.cpp +370 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/select-val.hpp +204 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/select-view.hpp +306 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/cardinality.cpp +65 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex.cpp +60 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex.hh +107 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex/conv.cpp +97 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex/conv.hpp +67 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex/hull.cpp +116 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex/hull.hpp +68 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/distinct.cpp +56 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/distinct.hh +79 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/distinct/atmostOne.cpp +162 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/distinct/atmostOne.hpp +66 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/dom.cpp +300 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element.cpp +255 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element.hh +218 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element/disjoint.hpp +324 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element/inter.hpp +308 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element/union.hpp +342 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element/unionConst.hpp +293 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/exception.hpp +146 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/exec.cpp +58 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int.cpp +191 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int.hh +459 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/card.hpp +93 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/channel-bool.hpp +282 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/channel-int.hpp +158 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/match.hpp +199 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/minmax.hpp +645 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/weights.hpp +353 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/limits.hpp +62 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/precede.cpp +74 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/precede.hh +115 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/precede/single.hpp +255 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-cvc.cpp +66 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-cvv.cpp +65 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-vcc.cpp +168 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-vcv.cpp +166 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-vvc.cpp +63 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-singleton.cpp +115 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-ternary.cpp +60 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op.cpp +105 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op.hh +297 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/common.hpp +619 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/inter.hpp +389 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/partition.hpp +164 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-compl-cvc.cpp +58 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-compl-cvv.cpp +54 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-compl-vvc.cpp +57 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-compl.cpp +54 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-nocompl-cvc.cpp +55 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-nocompl-cvv.cpp +54 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-nocompl-vvc.cpp +54 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-nocompl.cpp +54 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post.hpp +266 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/subofunion.hpp +166 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/superofinter.hpp +167 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/union.hpp +319 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel.cpp +232 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel.hh +322 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/common.hpp +125 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/eq.hpp +116 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/lq.hpp +417 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/nosubset.hpp +104 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/nq.hpp +160 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/re-eq.hpp +152 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/re-lq.hpp +182 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/re-subset.hpp +146 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/subset.hpp +96 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence.cpp +64 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence.hh +115 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/common.hpp +100 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/seq-u.cpp +145 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/seq-u.hpp +79 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/seq.cpp +76 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/seq.hpp +69 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp.hpp +634 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/delta.hpp +78 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/integerset.cpp +348 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/integerset.hpp +426 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/iter.hpp +63 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/set.cpp +142 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/set.hpp +531 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/set.vis +197 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var/print.hpp +49 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var/set.cpp +111 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var/set.hpp +254 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view.hpp +1142 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/cached.hpp +399 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/complement.hpp +556 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/const.hpp +723 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/print.hpp +140 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/set.hpp +263 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/singleton.hpp +402 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support.hh +135 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/auto-link.hpp +73 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/bitset-base.hpp +379 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/bitset.hpp +81 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/block-allocator.hpp +169 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/cast.hpp +52 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/config.hpp.in +109 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/dynamic-array.hpp +140 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/dynamic-queue.hpp +156 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/dynamic-stack.hpp +186 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/exception.cpp +65 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/exception.hpp +102 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/heap.cpp +49 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/heap.hpp +593 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/int-type.hpp +172 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/macros.hpp +103 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/marked-pointer.hpp +79 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/random.hpp +128 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/sort.hpp +268 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/static-stack.hpp +148 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread.hpp +272 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/none.hpp +87 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/pthreads.cpp +66 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/pthreads.hpp +142 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/thread.cpp +72 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/thread.hpp +114 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/windows.cpp +68 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/windows.hpp +108 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/timer.hpp +103 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/install-sh +323 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/allexamples.perl +60 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/back.png +0 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/footer.html +3 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/gecode-logo-100.png +0 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/header.html +66 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/stylesheet.css +468 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/fixautoheader.perl +55 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/fixmanifest.perl +84 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/fixproperties.sh +98 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/gecode-logo.ico +0 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/genbranch.perl +310 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/genchangelog.perl +249 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/gencurrentchangelog.perl +191 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/genlcovmakefile.perl +148 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/genlicense.perl +121 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/genrc.perl +236 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/genstatistics.perl +178 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/gentxtchangelog.perl +198 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/genvarimp.perl +877 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/genxcodeproj.perl +144 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/getrevision.perl +47 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/makedepend.perl +85 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/svn-ignore-root.txt +43 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/misc/svn-ignore.txt +18 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/afc.cpp +143 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/array.cpp +277 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/assign.cpp +278 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/assign.hh +119 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/assign/bool.cpp +61 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/assign/int.cpp +70 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/assign/set.cpp +72 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/branch.cpp +504 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/branch.hh +119 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/branch/bool.cpp +61 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/branch/int.cpp +70 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/branch/set.cpp +72 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int.cpp +655 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int.hh +353 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int.hpp +314 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/arithmetic.cpp +772 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/basic.cpp +82 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/bin-packing.cpp +237 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/bool.cpp +500 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/channel.cpp +234 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/circuit.cpp +359 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/count.cpp +410 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/cumulative.cpp +560 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/cumulatives.cpp +276 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/distinct.cpp +248 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/dom.cpp +174 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/element.cpp +602 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/exec.cpp +150 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/extensional.cpp +571 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/gcc.cpp +320 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/linear.cpp +394 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/member.cpp +138 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-arithmetic.cpp +368 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-bool.cpp +4344 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-count.cpp +295 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-lin.cpp +2179 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-rel.cpp +136 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/no-overlap.cpp +259 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/nvalues.cpp +241 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/precede.cpp +115 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/rel.cpp +568 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/sequence.cpp +168 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/sorted.cpp +165 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/unary.cpp +327 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/int/unshare.cpp +109 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/search.cpp +487 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set.cpp +638 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set.hh +362 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set.hpp +121 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/construct.cpp +225 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/convex.cpp +139 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/distinct.cpp +116 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/dom.cpp +346 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/element.cpp +397 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/exec.cpp +86 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/int.cpp +532 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/mm-set.cpp +4532 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/precede.cpp +136 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/rel-op-const.cpp +368 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/rel-op.cpp +504 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/rel.cpp +157 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/set/sequence.cpp +133 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/test.cpp +281 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/test.hh +161 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/test/test.hpp +76 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/tools/flatzinc/fz.cpp +93 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/tools/flatzinc/mzn-gecode.bat.in +41 -0
- data/ext/libgecode3/vendor/gecode-3.7.3/tools/flatzinc/mzn-gecode.in +41 -0
- data/lib/dep-selector-libgecode.rb +15 -0
- data/lib/dep-selector-libgecode/version.rb +3 -0
- metadata +878 -0
@@ -0,0 +1,84 @@
|
|
1
|
+
/**** , [ qsolverunblockable.hh ],
|
2
|
+
Copyright (c) 2008 Universite d'Orleans - Jeremie Vautard
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
+
of this software and associated documentation files (the "Software"), to deal
|
6
|
+
in the Software without restriction, including without limitation the rights
|
7
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
+
copies of the Software, and to permit persons to whom the Software is
|
9
|
+
furnished to do so, subject to the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be included in
|
12
|
+
all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
|
+
THE SOFTWARE.
|
21
|
+
*************************************************************************/
|
22
|
+
#ifndef __QECODE_QSOLVER_TRICK__
|
23
|
+
#define __QECODE_QSOLVER_TRICK__
|
24
|
+
|
25
|
+
#include "QCSPPlusUnblockable.hh"
|
26
|
+
#include "QCOPPlus.hh"
|
27
|
+
#include <iostream>
|
28
|
+
#include <cstdlib>
|
29
|
+
#include "gecode/minimodel.hh"
|
30
|
+
#include "gecode/search.hh"
|
31
|
+
#include "Strategy.hh"
|
32
|
+
#include "qecode.hh"
|
33
|
+
|
34
|
+
using namespace Gecode;
|
35
|
+
|
36
|
+
/** Unblockable QCSP+ Solver.
|
37
|
+
* This class is the search engine for unblockable QCSP+ defined with the qpecial QcspUnblockable class.
|
38
|
+
*/
|
39
|
+
class QECODE_VTABLE_EXPORT QSolverUnblockable {
|
40
|
+
|
41
|
+
private:
|
42
|
+
int n;
|
43
|
+
QcspUnblockable* sp;
|
44
|
+
int* nbRanges;
|
45
|
+
Strategy rSolve(QcspUnblockable* qs,int scope,vector<int> assignments,unsigned long int& nodes);
|
46
|
+
|
47
|
+
public:
|
48
|
+
/** Public constructor.
|
49
|
+
@param sp The problem to solve
|
50
|
+
*/
|
51
|
+
QECODE_EXPORT QSolverUnblockable(QcspUnblockable* sp);
|
52
|
+
|
53
|
+
/** Solves the problem and returns a corresponding winning strategy.
|
54
|
+
@param nodes A reference that is increased by the number of nodes encountered in the search tree.
|
55
|
+
*/
|
56
|
+
QECODE_EXPORT Strategy solve(unsigned long int& nodes);
|
57
|
+
};
|
58
|
+
|
59
|
+
|
60
|
+
/** Unblockable QCSP+ Solver.
|
61
|
+
* This class is the search engine for unblockable QCSP+ defined with the general Qcop class.
|
62
|
+
*/
|
63
|
+
class QECODE_VTABLE_EXPORT QSolverUnblockable2 {
|
64
|
+
|
65
|
+
private:
|
66
|
+
int n;
|
67
|
+
Qcop* sp;
|
68
|
+
int* nbRanges;
|
69
|
+
Strategy rSolve(Qcop* qs,int scope,vector<int> assignments,unsigned long int& nodes);
|
70
|
+
|
71
|
+
public:
|
72
|
+
/** Public constructor.
|
73
|
+
@param sp The problem to solve
|
74
|
+
*/
|
75
|
+
QECODE_EXPORT QSolverUnblockable2(Qcop* sp);
|
76
|
+
|
77
|
+
/** Solves the problem and returns a corresponding winning strategy.
|
78
|
+
WARNING : Defined optimization conditions and aggregates are NOT taken into account.
|
79
|
+
@param nodes A reference that is increased by the number of nodes encountered in the search tree.
|
80
|
+
*/
|
81
|
+
QECODE_EXPORT Strategy solve(unsigned long int& nodes);
|
82
|
+
};
|
83
|
+
|
84
|
+
#endif
|
@@ -0,0 +1 @@
|
|
1
|
+
Qecode - A quantified constraint solver
|
@@ -0,0 +1,31 @@
|
|
1
|
+
/**** qecode2, [ vartype.hh ],
|
2
|
+
Copyright (c) 2007 Universite d'Orleans - Jeremie Vautard
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
+
of this software and associated documentation files (the "Software"), to deal
|
6
|
+
in the Software without restriction, including without limitation the rights
|
7
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
+
copies of the Software, and to permit persons to whom the Software is
|
9
|
+
furnished to do so, subject to the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be included in
|
12
|
+
all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
|
+
THE SOFTWARE.
|
21
|
+
*************************************************************************/
|
22
|
+
|
23
|
+
#ifndef QECODE_VARTYPE
|
24
|
+
#define QECODE_VARTYPE
|
25
|
+
|
26
|
+
enum VarType {
|
27
|
+
VTYPE_INT,
|
28
|
+
VTYPE_BOOL
|
29
|
+
};
|
30
|
+
|
31
|
+
#endif
|
@@ -0,0 +1,1245 @@
|
|
1
|
+
# Doxyfile 1.4.2-20050421
|
2
|
+
|
3
|
+
# Main authors:
|
4
|
+
# Christian Schulte <schulte@gecode.org>
|
5
|
+
# Guido Tack <tack@gecode.org>
|
6
|
+
#
|
7
|
+
# Copyright:
|
8
|
+
# Christian Schulte, 2005
|
9
|
+
# Guido Tack, 2005
|
10
|
+
#
|
11
|
+
# Last modified:
|
12
|
+
# $Date: 2010-05-31 21:53:25 +1000 (Mon, 31 May 2010) $ by $Author: tack $
|
13
|
+
# $Revision: 10995 $
|
14
|
+
#
|
15
|
+
# This file is part of Gecode, the generic constraint
|
16
|
+
# development environment:
|
17
|
+
# http://www.gecode.org
|
18
|
+
#
|
19
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
20
|
+
# a copy of this software and associated documentation files (the
|
21
|
+
# "Software"), to deal in the Software without restriction, including
|
22
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
23
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
24
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
25
|
+
# the following conditions:
|
26
|
+
#
|
27
|
+
# The above copyright notice and this permission notice shall be
|
28
|
+
# included in all copies or substantial portions of the Software.
|
29
|
+
#
|
30
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
31
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
32
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
33
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
34
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
35
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
36
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
37
|
+
|
38
|
+
# This file describes the settings to be used by the documentation system
|
39
|
+
# doxygen (www.doxygen.org) for a project
|
40
|
+
#
|
41
|
+
# All text after a hash (#) is considered a comment and will be ignored
|
42
|
+
# The format is:
|
43
|
+
# TAG = value [value, ...]
|
44
|
+
# For lists items can also be appended using:
|
45
|
+
# TAG += value [value, ...]
|
46
|
+
# Values that contain spaces should be placed between quotes (" ")
|
47
|
+
|
48
|
+
#---------------------------------------------------------------------------
|
49
|
+
# Project related configuration options
|
50
|
+
#---------------------------------------------------------------------------
|
51
|
+
|
52
|
+
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
|
53
|
+
# by quotes) that should identify the project.
|
54
|
+
|
55
|
+
PROJECT_NAME = Gecode
|
56
|
+
|
57
|
+
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
|
58
|
+
# This could be handy for archiving the generated documentation or
|
59
|
+
# if some version control system is used.
|
60
|
+
|
61
|
+
PROJECT_NUMBER = @VERSION@
|
62
|
+
|
63
|
+
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
64
|
+
# base path where the generated documentation will be put.
|
65
|
+
# If a relative path is entered, it will be relative to the location
|
66
|
+
# where doxygen was started. If left blank the current directory will be used.
|
67
|
+
|
68
|
+
OUTPUT_DIRECTORY = doc
|
69
|
+
|
70
|
+
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
|
71
|
+
# 4096 sub-directories (in 2 levels) under the output directory of each output
|
72
|
+
# format and will distribute the generated files over these directories.
|
73
|
+
# Enabling this option can be useful when feeding doxygen a huge amount of
|
74
|
+
# source files, where putting all generated files in the same directory would
|
75
|
+
# otherwise cause performance problems for the file system.
|
76
|
+
|
77
|
+
CREATE_SUBDIRS = NO
|
78
|
+
|
79
|
+
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
|
80
|
+
# documentation generated by doxygen is written. Doxygen will use this
|
81
|
+
# information to generate all constant output in the proper language.
|
82
|
+
# The default language is English, other supported languages are:
|
83
|
+
# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish,
|
84
|
+
# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese,
|
85
|
+
# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian,
|
86
|
+
# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,
|
87
|
+
# Swedish, and Ukrainian.
|
88
|
+
|
89
|
+
OUTPUT_LANGUAGE = English
|
90
|
+
|
91
|
+
# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
|
92
|
+
# include brief member descriptions after the members that are listed in
|
93
|
+
# the file and class documentation (similar to JavaDoc).
|
94
|
+
# Set to NO to disable this.
|
95
|
+
|
96
|
+
BRIEF_MEMBER_DESC = YES
|
97
|
+
|
98
|
+
# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
|
99
|
+
# the brief description of a member or function before the detailed description.
|
100
|
+
# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
|
101
|
+
# brief descriptions will be completely suppressed.
|
102
|
+
|
103
|
+
REPEAT_BRIEF = YES
|
104
|
+
|
105
|
+
# This tag implements a quasi-intelligent brief description abbreviator
|
106
|
+
# that is used to form the text in various listings. Each string
|
107
|
+
# in this list, if found as the leading text of the brief description, will be
|
108
|
+
# stripped from the text and the result after processing the whole list, is
|
109
|
+
# used as the annotated text. Otherwise, the brief description is used as-is.
|
110
|
+
# If left blank, the following values are used ("$name" is automatically
|
111
|
+
# replaced with the name of the entity): "The $name class" "The $name widget"
|
112
|
+
# "The $name file" "is" "provides" "specifies" "contains"
|
113
|
+
# "represents" "a" "an" "the"
|
114
|
+
|
115
|
+
ABBREVIATE_BRIEF =
|
116
|
+
|
117
|
+
# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
|
118
|
+
# Doxygen will generate a detailed section even if there is only a brief
|
119
|
+
# description.
|
120
|
+
|
121
|
+
ALWAYS_DETAILED_SEC = NO
|
122
|
+
|
123
|
+
# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
|
124
|
+
# inherited members of a class in the documentation of that class as if those
|
125
|
+
# members were ordinary class members. Constructors, destructors and assignment
|
126
|
+
# operators of the base classes will not be shown.
|
127
|
+
|
128
|
+
INLINE_INHERITED_MEMB = NO
|
129
|
+
|
130
|
+
# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
|
131
|
+
# path before files name in the file list and in the header files. If set
|
132
|
+
# to NO the shortest path that makes the file name unique will be used.
|
133
|
+
|
134
|
+
FULL_PATH_NAMES = YES
|
135
|
+
|
136
|
+
# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
|
137
|
+
# can be used to strip a user-defined part of the path. Stripping is
|
138
|
+
# only done if one of the specified strings matches the left-hand part of
|
139
|
+
# the path. The tag can be used to show relative paths in the file list.
|
140
|
+
# If left blank the directory from which doxygen is run is used as the
|
141
|
+
# path to strip.
|
142
|
+
|
143
|
+
STRIP_FROM_PATH =
|
144
|
+
|
145
|
+
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
|
146
|
+
# the path mentioned in the documentation of a class, which tells
|
147
|
+
# the reader which header file to include in order to use a class.
|
148
|
+
# If left blank only the name of the header file containing the class
|
149
|
+
# definition is used. Otherwise one should specify the include paths that
|
150
|
+
# are normally passed to the compiler using the -I flag.
|
151
|
+
|
152
|
+
STRIP_FROM_INC_PATH =
|
153
|
+
|
154
|
+
# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
|
155
|
+
# (but less readable) file names. This can be useful is your file systems
|
156
|
+
# doesn't support long names like on DOS, Mac, or CD-ROM.
|
157
|
+
|
158
|
+
SHORT_NAMES = NO
|
159
|
+
|
160
|
+
# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
|
161
|
+
# will interpret the first line (until the first dot) of a JavaDoc-style
|
162
|
+
# comment as the brief description. If set to NO, the JavaDoc
|
163
|
+
# comments will behave just like the Qt-style comments (thus requiring an
|
164
|
+
# explicit @brief command for a brief description.
|
165
|
+
|
166
|
+
JAVADOC_AUTOBRIEF = NO
|
167
|
+
|
168
|
+
# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
|
169
|
+
# treat a multi-line C++ special comment block (i.e. a block of //! or ///
|
170
|
+
# comments) as a brief description. This used to be the default behaviour.
|
171
|
+
# The new default is to treat a multi-line C++ comment block as a detailed
|
172
|
+
# description. Set this tag to YES if you prefer the old behaviour instead.
|
173
|
+
|
174
|
+
MULTILINE_CPP_IS_BRIEF = YES
|
175
|
+
|
176
|
+
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
|
177
|
+
# member inherits the documentation from any documented member that it
|
178
|
+
# re-implements.
|
179
|
+
|
180
|
+
INHERIT_DOCS = YES
|
181
|
+
|
182
|
+
# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
|
183
|
+
# tag is set to YES, then doxygen will reuse the documentation of the first
|
184
|
+
# member in the group (if any) for the other members of the group. By default
|
185
|
+
# all members of a group must be documented explicitly.
|
186
|
+
|
187
|
+
DISTRIBUTE_GROUP_DOC = YES
|
188
|
+
|
189
|
+
# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
|
190
|
+
# a new page for each member. If set to NO, the documentation of a member will
|
191
|
+
# be part of the file/class/namespace that contains it.
|
192
|
+
|
193
|
+
SEPARATE_MEMBER_PAGES = NO
|
194
|
+
|
195
|
+
# The TAB_SIZE tag can be used to set the number of spaces in a tab.
|
196
|
+
# Doxygen uses this value to replace tabs by spaces in code fragments.
|
197
|
+
|
198
|
+
TAB_SIZE = 8
|
199
|
+
|
200
|
+
# This tag can be used to specify a number of aliases that acts
|
201
|
+
# as commands in the documentation. An alias has the form "name=value".
|
202
|
+
# For example adding "sideeffect=\par Side Effects:\n" will allow you to
|
203
|
+
# put the command \sideeffect (or @sideeffect) in the documentation, which
|
204
|
+
# will result in a user-defined paragraph with heading "Side Effects:".
|
205
|
+
# You can put \n's in the value part of an alias to insert newlines.
|
206
|
+
|
207
|
+
ALIASES =
|
208
|
+
|
209
|
+
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
|
210
|
+
# sources only. Doxygen will then generate output that is more tailored for C.
|
211
|
+
# For instance, some of the names that are used will be different. The list
|
212
|
+
# of all members will be omitted, etc.
|
213
|
+
|
214
|
+
OPTIMIZE_OUTPUT_FOR_C = NO
|
215
|
+
|
216
|
+
# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
|
217
|
+
# only. Doxygen will then generate output that is more tailored for Java.
|
218
|
+
# For instance, namespaces will be presented as packages, qualified scopes
|
219
|
+
# will look different, etc.
|
220
|
+
|
221
|
+
OPTIMIZE_OUTPUT_JAVA = NO
|
222
|
+
|
223
|
+
# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
|
224
|
+
# the same type (for instance a group of public functions) to be put as a
|
225
|
+
# subgroup of that type (e.g. under the Public Functions section). Set it to
|
226
|
+
# NO to prevent subgrouping. Alternatively, this can be done per class using
|
227
|
+
# the \nosubgrouping command.
|
228
|
+
|
229
|
+
SUBGROUPING = NO
|
230
|
+
|
231
|
+
#---------------------------------------------------------------------------
|
232
|
+
# Build related configuration options
|
233
|
+
#---------------------------------------------------------------------------
|
234
|
+
|
235
|
+
# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
|
236
|
+
# documentation are documented, even if no documentation was available.
|
237
|
+
# Private class members and static file members will be hidden unless
|
238
|
+
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
|
239
|
+
|
240
|
+
EXTRACT_ALL = YES
|
241
|
+
|
242
|
+
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
|
243
|
+
# will be included in the documentation.
|
244
|
+
|
245
|
+
EXTRACT_PRIVATE = NO
|
246
|
+
|
247
|
+
# If the EXTRACT_STATIC tag is set to YES all static members of a file
|
248
|
+
# will be included in the documentation.
|
249
|
+
|
250
|
+
EXTRACT_STATIC = NO
|
251
|
+
|
252
|
+
# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
|
253
|
+
# defined locally in source files will be included in the documentation.
|
254
|
+
# If set to NO only classes defined in header files are included.
|
255
|
+
|
256
|
+
EXTRACT_LOCAL_CLASSES = YES
|
257
|
+
|
258
|
+
# This flag is only useful for Objective-C code. When set to YES local
|
259
|
+
# methods, which are defined in the implementation section but not in
|
260
|
+
# the interface are included in the documentation.
|
261
|
+
# If set to NO (the default) only methods in the interface are included.
|
262
|
+
|
263
|
+
EXTRACT_LOCAL_METHODS = YES
|
264
|
+
|
265
|
+
# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
|
266
|
+
# undocumented members of documented classes, files or namespaces.
|
267
|
+
# If set to NO (the default) these members will be included in the
|
268
|
+
# various overviews, but no documentation section is generated.
|
269
|
+
# This option has no effect if EXTRACT_ALL is enabled.
|
270
|
+
|
271
|
+
HIDE_UNDOC_MEMBERS = YES
|
272
|
+
|
273
|
+
# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
|
274
|
+
# undocumented classes that are normally visible in the class hierarchy.
|
275
|
+
# If set to NO (the default) these classes will be included in the various
|
276
|
+
# overviews. This option has no effect if EXTRACT_ALL is enabled.
|
277
|
+
|
278
|
+
HIDE_UNDOC_CLASSES = YES
|
279
|
+
|
280
|
+
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
|
281
|
+
# friend (class|struct|union) declarations.
|
282
|
+
# If set to NO (the default) these declarations will be included in the
|
283
|
+
# documentation.
|
284
|
+
|
285
|
+
HIDE_FRIEND_COMPOUNDS = YES
|
286
|
+
|
287
|
+
# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
|
288
|
+
# documentation blocks found inside the body of a function.
|
289
|
+
# If set to NO (the default) these blocks will be appended to the
|
290
|
+
# function's detailed documentation block.
|
291
|
+
|
292
|
+
HIDE_IN_BODY_DOCS = NO
|
293
|
+
|
294
|
+
# The INTERNAL_DOCS tag determines if documentation
|
295
|
+
# that is typed after a \internal command is included. If the tag is set
|
296
|
+
# to NO (the default) then the documentation will be excluded.
|
297
|
+
# Set it to YES to include the internal documentation.
|
298
|
+
|
299
|
+
INTERNAL_DOCS = NO
|
300
|
+
|
301
|
+
# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
|
302
|
+
# file names in lower-case letters. If set to YES upper-case letters are also
|
303
|
+
# allowed. This is useful if you have classes or files whose names only differ
|
304
|
+
# in case and if your file system supports case sensitive file names. Windows
|
305
|
+
# and Mac users are advised to set this option to NO.
|
306
|
+
|
307
|
+
CASE_SENSE_NAMES = YES
|
308
|
+
|
309
|
+
# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
|
310
|
+
# will show members with their full class and namespace scopes in the
|
311
|
+
# documentation. If set to YES the scope will be hidden.
|
312
|
+
|
313
|
+
HIDE_SCOPE_NAMES = NO
|
314
|
+
|
315
|
+
# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
|
316
|
+
# will put a list of the files that are included by a file in the documentation
|
317
|
+
# of that file.
|
318
|
+
|
319
|
+
SHOW_INCLUDE_FILES = YES
|
320
|
+
|
321
|
+
# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
|
322
|
+
# is inserted in the documentation for inline members.
|
323
|
+
|
324
|
+
INLINE_INFO = YES
|
325
|
+
|
326
|
+
# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
|
327
|
+
# will sort the (detailed) documentation of file and class members
|
328
|
+
# alphabetically by member name. If set to NO the members will appear in
|
329
|
+
# declaration order.
|
330
|
+
|
331
|
+
SORT_MEMBER_DOCS = NO
|
332
|
+
|
333
|
+
# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
|
334
|
+
# brief documentation of file, namespace and class members alphabetically
|
335
|
+
# by member name. If set to NO (the default) the members will appear in
|
336
|
+
# declaration order.
|
337
|
+
|
338
|
+
SORT_BRIEF_DOCS = NO
|
339
|
+
|
340
|
+
# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
|
341
|
+
# sorted by fully-qualified names, including namespaces. If set to
|
342
|
+
# NO (the default), the class list will be sorted only by class name,
|
343
|
+
# not including the namespace part.
|
344
|
+
# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
|
345
|
+
# Note: This option applies only to the class list, not to the
|
346
|
+
# alphabetical list.
|
347
|
+
|
348
|
+
SORT_BY_SCOPE_NAME = YES
|
349
|
+
|
350
|
+
# The GENERATE_TODOLIST tag can be used to enable (YES) or
|
351
|
+
# disable (NO) the todo list. This list is created by putting \todo
|
352
|
+
# commands in the documentation.
|
353
|
+
|
354
|
+
GENERATE_TODOLIST = NO
|
355
|
+
|
356
|
+
# The GENERATE_TESTLIST tag can be used to enable (YES) or
|
357
|
+
# disable (NO) the test list. This list is created by putting \test
|
358
|
+
# commands in the documentation.
|
359
|
+
|
360
|
+
GENERATE_TESTLIST = YES
|
361
|
+
|
362
|
+
# The GENERATE_BUGLIST tag can be used to enable (YES) or
|
363
|
+
# disable (NO) the bug list. This list is created by putting \bug
|
364
|
+
# commands in the documentation.
|
365
|
+
|
366
|
+
GENERATE_BUGLIST = YES
|
367
|
+
|
368
|
+
# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
|
369
|
+
# disable (NO) the deprecated list. This list is created by putting
|
370
|
+
# \deprecated commands in the documentation.
|
371
|
+
|
372
|
+
GENERATE_DEPRECATEDLIST= YES
|
373
|
+
|
374
|
+
# The ENABLED_SECTIONS tag can be used to enable conditional
|
375
|
+
# documentation sections, marked by \if sectionname ... \endif.
|
376
|
+
|
377
|
+
ENABLED_SECTIONS =
|
378
|
+
|
379
|
+
# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
|
380
|
+
# the initial value of a variable or define consists of for it to appear in
|
381
|
+
# the documentation. If the initializer consists of more lines than specified
|
382
|
+
# here it will be hidden. Use a value of 0 to hide initializers completely.
|
383
|
+
# The appearance of the initializer of individual variables and defines in the
|
384
|
+
# documentation can be controlled using \showinitializer or \hideinitializer
|
385
|
+
# command in the documentation regardless of this setting.
|
386
|
+
|
387
|
+
MAX_INITIALIZER_LINES = 30
|
388
|
+
|
389
|
+
# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
|
390
|
+
# at the bottom of the documentation of classes and structs. If set to YES the
|
391
|
+
# list will mention the files that were used to generate the documentation.
|
392
|
+
|
393
|
+
SHOW_USED_FILES = YES
|
394
|
+
|
395
|
+
# If the sources in your project are distributed over multiple directories
|
396
|
+
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
|
397
|
+
# in the documentation.
|
398
|
+
|
399
|
+
SHOW_DIRECTORIES = YES
|
400
|
+
|
401
|
+
# The FILE_VERSION_FILTER tag can be used to specify a program or script that
|
402
|
+
# doxygen should invoke to get the current version for each file (typically from the
|
403
|
+
# version control system). Doxygen will invoke the program by executing (via
|
404
|
+
# popen()) the command <command> <input-file>, where <command> is the value of
|
405
|
+
# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
|
406
|
+
# provided by doxygen. Whatever the progam writes to standard output
|
407
|
+
# is used as the file version. See the manual for examples.
|
408
|
+
|
409
|
+
FILE_VERSION_FILTER = "perl @top_srcdir@/misc/getrevision.perl"
|
410
|
+
|
411
|
+
#---------------------------------------------------------------------------
|
412
|
+
# configuration options related to warning and progress messages
|
413
|
+
#---------------------------------------------------------------------------
|
414
|
+
|
415
|
+
# The QUIET tag can be used to turn on/off the messages that are generated
|
416
|
+
# by doxygen. Possible values are YES and NO. If left blank NO is used.
|
417
|
+
|
418
|
+
QUIET = NO
|
419
|
+
|
420
|
+
# The WARNINGS tag can be used to turn on/off the warning messages that are
|
421
|
+
# generated by doxygen. Possible values are YES and NO. If left blank
|
422
|
+
# NO is used.
|
423
|
+
|
424
|
+
WARNINGS = YES
|
425
|
+
|
426
|
+
# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
|
427
|
+
# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
|
428
|
+
# automatically be disabled.
|
429
|
+
|
430
|
+
WARN_IF_UNDOCUMENTED = NO
|
431
|
+
|
432
|
+
# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
|
433
|
+
# potential errors in the documentation, such as not documenting some
|
434
|
+
# parameters in a documented function, or documenting parameters that
|
435
|
+
# don't exist or using markup commands wrongly.
|
436
|
+
|
437
|
+
WARN_IF_DOC_ERROR = YES
|
438
|
+
|
439
|
+
# This WARN_NO_PARAMDOC option can be abled to get warnings for
|
440
|
+
# functions that are documented, but have no documentation for their parameters
|
441
|
+
# or return value. If set to NO (the default) doxygen will only warn about
|
442
|
+
# wrong or incomplete parameter documentation, but not about the absence of
|
443
|
+
# documentation.
|
444
|
+
|
445
|
+
WARN_NO_PARAMDOC = NO
|
446
|
+
|
447
|
+
# The WARN_FORMAT tag determines the format of the warning messages that
|
448
|
+
# doxygen can produce. The string should contain the $file, $line, and $text
|
449
|
+
# tags, which will be replaced by the file and line number from which the
|
450
|
+
# warning originated and the warning text. Optionally the format may contain
|
451
|
+
# $version, which will be replaced by the version of the file (if it could
|
452
|
+
# be obtained via FILE_VERSION_FILTER)
|
453
|
+
|
454
|
+
WARN_FORMAT = "$file:$line: $text"
|
455
|
+
|
456
|
+
# The WARN_LOGFILE tag can be used to specify a file to which warning
|
457
|
+
# and error messages should be written. If left blank the output is written
|
458
|
+
# to stderr.
|
459
|
+
|
460
|
+
WARN_LOGFILE = doxygen.log
|
461
|
+
|
462
|
+
#---------------------------------------------------------------------------
|
463
|
+
# configuration options related to the input files
|
464
|
+
#---------------------------------------------------------------------------
|
465
|
+
|
466
|
+
# The INPUT tag can be used to specify the files and/or directories that contain
|
467
|
+
# documented source files. You may enter file names like "myfile.cpp" or
|
468
|
+
# directories like "/usr/src/myproject". Separate the files or directories
|
469
|
+
# with spaces.
|
470
|
+
|
471
|
+
INPUT = . @top_srcdir@
|
472
|
+
|
473
|
+
# If the value of the INPUT tag contains directories, you can use the
|
474
|
+
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
|
475
|
+
# and *.h) to filter out the source-files in the directories. If left
|
476
|
+
# blank the following patterns are tested:
|
477
|
+
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
|
478
|
+
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
|
479
|
+
|
480
|
+
FILE_PATTERNS = *.h \
|
481
|
+
*.c \
|
482
|
+
*.hh \
|
483
|
+
*.cpp \
|
484
|
+
*.hpp
|
485
|
+
|
486
|
+
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
|
487
|
+
# should be searched for input files as well. Possible values are YES and NO.
|
488
|
+
# If left blank NO is used.
|
489
|
+
|
490
|
+
RECURSIVE = YES
|
491
|
+
|
492
|
+
# The EXCLUDE tag can be used to specify files and/or directories that should
|
493
|
+
# excluded from the INPUT source files. This way you can easily exclude a
|
494
|
+
# subdirectory from a directory tree whose root is specified with the INPUT tag.
|
495
|
+
|
496
|
+
EXCLUDE = gecode.framework
|
497
|
+
|
498
|
+
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
|
499
|
+
# directories that are symbolic links (a Unix filesystem feature) are excluded
|
500
|
+
# from the input.
|
501
|
+
|
502
|
+
EXCLUDE_SYMLINKS = NO
|
503
|
+
|
504
|
+
# If the value of the INPUT tag contains directories, you can use the
|
505
|
+
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
|
506
|
+
# certain files from those directories.
|
507
|
+
|
508
|
+
EXCLUDE_PATTERNS = \
|
509
|
+
*.svn/* \
|
510
|
+
*moc_* \
|
511
|
+
*contribs/* \
|
512
|
+
*gecode/gist/standalone-example/* \
|
513
|
+
*gecode/flatzinc/exampleplugin/* \
|
514
|
+
*gecode/flatzinc/parser.tab.* *gecode/flatzinc/lexer.*
|
515
|
+
|
516
|
+
# The EXAMPLE_PATH tag can be used to specify one or more files or
|
517
|
+
# directories that contain example code fragments that are included (see
|
518
|
+
# the \include command).
|
519
|
+
|
520
|
+
EXAMPLE_PATH =
|
521
|
+
|
522
|
+
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
|
523
|
+
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
|
524
|
+
# and *.h) to filter out the source-files in the directories. If left
|
525
|
+
# blank all files are included.
|
526
|
+
|
527
|
+
EXAMPLE_PATTERNS = *.cpp
|
528
|
+
|
529
|
+
# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
|
530
|
+
# searched for input files to be used with the \include or \dontinclude
|
531
|
+
# commands irrespective of the value of the RECURSIVE tag.
|
532
|
+
# Possible values are YES and NO. If left blank NO is used.
|
533
|
+
|
534
|
+
EXAMPLE_RECURSIVE = NO
|
535
|
+
|
536
|
+
# The IMAGE_PATH tag can be used to specify one or more files or
|
537
|
+
# directories that contain image that are included in the documentation (see
|
538
|
+
# the \image command).
|
539
|
+
|
540
|
+
IMAGE_PATH =
|
541
|
+
|
542
|
+
# The INPUT_FILTER tag can be used to specify a program that doxygen should
|
543
|
+
# invoke to filter for each input file. Doxygen will invoke the filter program
|
544
|
+
# by executing (via popen()) the command <filter> <input-file>, where <filter>
|
545
|
+
# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
|
546
|
+
# input file. Doxygen will then use the output that the filter program writes
|
547
|
+
# to standard output. If FILTER_PATTERNS is specified, this tag will be
|
548
|
+
# ignored.
|
549
|
+
|
550
|
+
INPUT_FILTER =
|
551
|
+
|
552
|
+
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
|
553
|
+
# basis. Doxygen will compare the file name with each pattern and apply the
|
554
|
+
# filter if there is a match. The filters are a list of the form:
|
555
|
+
# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
|
556
|
+
# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
|
557
|
+
# is applied to all files.
|
558
|
+
|
559
|
+
FILTER_PATTERNS =
|
560
|
+
|
561
|
+
# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
|
562
|
+
# INPUT_FILTER) will be used to filter the input files when producing source
|
563
|
+
# files to browse (i.e. when SOURCE_BROWSER is set to YES).
|
564
|
+
|
565
|
+
FILTER_SOURCE_FILES = NO
|
566
|
+
|
567
|
+
#---------------------------------------------------------------------------
|
568
|
+
# configuration options related to source browsing
|
569
|
+
#---------------------------------------------------------------------------
|
570
|
+
|
571
|
+
# If the SOURCE_BROWSER tag is set to YES then a list of source files will
|
572
|
+
# be generated. Documented entities will be cross-referenced with these sources.
|
573
|
+
# Note: To get rid of all source code in the generated output, make sure also
|
574
|
+
# VERBATIM_HEADERS is set to NO.
|
575
|
+
|
576
|
+
SOURCE_BROWSER = YES
|
577
|
+
|
578
|
+
# Setting the INLINE_SOURCES tag to YES will include the body
|
579
|
+
# of functions and classes directly in the documentation.
|
580
|
+
|
581
|
+
INLINE_SOURCES = NO
|
582
|
+
|
583
|
+
# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
|
584
|
+
# doxygen to hide any special comment blocks from generated source code
|
585
|
+
# fragments. Normal C and C++ comments will always remain visible.
|
586
|
+
|
587
|
+
STRIP_CODE_COMMENTS = YES
|
588
|
+
|
589
|
+
# If the REFERENCED_BY_RELATION tag is set to YES (the default)
|
590
|
+
# then for each documented function all documented
|
591
|
+
# functions referencing it will be listed.
|
592
|
+
|
593
|
+
REFERENCED_BY_RELATION = NO
|
594
|
+
|
595
|
+
# If the REFERENCES_RELATION tag is set to YES (the default)
|
596
|
+
# then for each documented function all documented entities
|
597
|
+
# called/used by that function will be listed.
|
598
|
+
|
599
|
+
REFERENCES_RELATION = NO
|
600
|
+
|
601
|
+
# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
|
602
|
+
# will generate a verbatim copy of the header file for each class for
|
603
|
+
# which an include is specified. Set to NO to disable this.
|
604
|
+
|
605
|
+
VERBATIM_HEADERS = YES
|
606
|
+
|
607
|
+
#---------------------------------------------------------------------------
|
608
|
+
# configuration options related to the alphabetical class index
|
609
|
+
#---------------------------------------------------------------------------
|
610
|
+
|
611
|
+
# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
|
612
|
+
# of all compounds will be generated. Enable this if the project
|
613
|
+
# contains a lot of classes, structs, unions or interfaces.
|
614
|
+
|
615
|
+
ALPHABETICAL_INDEX = YES
|
616
|
+
|
617
|
+
# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
|
618
|
+
# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
|
619
|
+
# in which this list will be split (can be a number in the range [1..20])
|
620
|
+
|
621
|
+
COLS_IN_ALPHA_INDEX = 3
|
622
|
+
|
623
|
+
# In case all classes in a project start with a common prefix, all
|
624
|
+
# classes will be put under the same header in the alphabetical index.
|
625
|
+
# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
|
626
|
+
# should be ignored while generating the index headers.
|
627
|
+
|
628
|
+
IGNORE_PREFIX =
|
629
|
+
|
630
|
+
#---------------------------------------------------------------------------
|
631
|
+
# configuration options related to the HTML output
|
632
|
+
#---------------------------------------------------------------------------
|
633
|
+
|
634
|
+
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
|
635
|
+
# generate HTML output.
|
636
|
+
|
637
|
+
GENERATE_HTML = YES
|
638
|
+
|
639
|
+
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
|
640
|
+
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
641
|
+
# put in front of it. If left blank `html' will be used as the default path.
|
642
|
+
|
643
|
+
HTML_OUTPUT = html
|
644
|
+
|
645
|
+
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
|
646
|
+
# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
|
647
|
+
# doxygen will generate files with .html extension.
|
648
|
+
|
649
|
+
HTML_FILE_EXTENSION = .html
|
650
|
+
|
651
|
+
# The HTML_HEADER tag can be used to specify a personal HTML header for
|
652
|
+
# each generated HTML page. If it is left blank doxygen will generate a
|
653
|
+
# standard header.
|
654
|
+
|
655
|
+
HTML_HEADER = header.html
|
656
|
+
|
657
|
+
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
|
658
|
+
# each generated HTML page. If it is left blank doxygen will generate a
|
659
|
+
# standard footer.
|
660
|
+
|
661
|
+
HTML_FOOTER = @top_srcdir@/misc/doxygen/footer.html
|
662
|
+
|
663
|
+
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
|
664
|
+
# style sheet that is used by each HTML page. It can be used to
|
665
|
+
# fine-tune the look of the HTML output. If the tag is left blank doxygen
|
666
|
+
# will generate a default style sheet. Note that doxygen will try to copy
|
667
|
+
# the style sheet file to the HTML output directory, so don't put your own
|
668
|
+
# stylesheet in the HTML output directory as well, or it will be erased!
|
669
|
+
|
670
|
+
HTML_STYLESHEET = @top_srcdir@/misc/doxygen/stylesheet.css
|
671
|
+
|
672
|
+
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
|
673
|
+
# files or namespaces will be aligned in HTML using tables. If set to
|
674
|
+
# NO a bullet list will be used.
|
675
|
+
|
676
|
+
HTML_ALIGN_MEMBERS = YES
|
677
|
+
|
678
|
+
# If the GENERATE_HTMLHELP tag is set to YES, additional index files
|
679
|
+
# will be generated that can be used as input for tools like the
|
680
|
+
# Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
|
681
|
+
# of the generated HTML documentation.
|
682
|
+
|
683
|
+
GENERATE_HTMLHELP = NO
|
684
|
+
|
685
|
+
# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
|
686
|
+
# be used to specify the file name of the resulting .chm file. You
|
687
|
+
# can add a path in front of the file if the result should not be
|
688
|
+
# written to the html output directory.
|
689
|
+
|
690
|
+
CHM_FILE = GecodeReference.chm
|
691
|
+
|
692
|
+
# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
|
693
|
+
# be used to specify the location (absolute path including file name) of
|
694
|
+
# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
|
695
|
+
# the HTML help compiler on the generated index.hhp.
|
696
|
+
|
697
|
+
HHC_LOCATION = hhc.exe
|
698
|
+
|
699
|
+
# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
|
700
|
+
# controls if a separate .chi index file is generated (YES) or that
|
701
|
+
# it should be included in the master .chm file (NO).
|
702
|
+
|
703
|
+
GENERATE_CHI = NO
|
704
|
+
|
705
|
+
# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
|
706
|
+
# controls whether a binary table of contents is generated (YES) or a
|
707
|
+
# normal table of contents (NO) in the .chm file.
|
708
|
+
|
709
|
+
BINARY_TOC = YES
|
710
|
+
|
711
|
+
# The TOC_EXPAND flag can be set to YES to add extra items for group members
|
712
|
+
# to the contents of the HTML help documentation and to the tree view.
|
713
|
+
|
714
|
+
TOC_EXPAND = YES
|
715
|
+
|
716
|
+
# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
|
717
|
+
# top of each HTML page. The value NO (the default) enables the index and
|
718
|
+
# the value YES disables it.
|
719
|
+
|
720
|
+
DISABLE_INDEX = YES
|
721
|
+
|
722
|
+
# This tag can be used to set the number of enum values (range [1..20])
|
723
|
+
# that doxygen will group on one line in the generated HTML documentation.
|
724
|
+
|
725
|
+
ENUM_VALUES_PER_LINE = 4
|
726
|
+
|
727
|
+
# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
|
728
|
+
# generated containing a tree-like index structure (just like the one that
|
729
|
+
# is generated for HTML Help). For this to work a browser that supports
|
730
|
+
# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
|
731
|
+
# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
|
732
|
+
# probably better off using the HTML help feature.
|
733
|
+
|
734
|
+
GENERATE_TREEVIEW = NO
|
735
|
+
|
736
|
+
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
|
737
|
+
# used to set the initial width (in pixels) of the frame in which the tree
|
738
|
+
# is shown.
|
739
|
+
|
740
|
+
TREEVIEW_WIDTH = 250
|
741
|
+
|
742
|
+
#---------------------------------------------------------------------------
|
743
|
+
# configuration options related to the LaTeX output
|
744
|
+
#---------------------------------------------------------------------------
|
745
|
+
|
746
|
+
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
|
747
|
+
# generate Latex output.
|
748
|
+
|
749
|
+
GENERATE_LATEX = NO
|
750
|
+
|
751
|
+
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
|
752
|
+
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
753
|
+
# put in front of it. If left blank `latex' will be used as the default path.
|
754
|
+
|
755
|
+
LATEX_OUTPUT = latex
|
756
|
+
|
757
|
+
# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
|
758
|
+
# invoked. If left blank `latex' will be used as the default command name.
|
759
|
+
|
760
|
+
LATEX_CMD_NAME = latex
|
761
|
+
|
762
|
+
# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
|
763
|
+
# generate index for LaTeX. If left blank `makeindex' will be used as the
|
764
|
+
# default command name.
|
765
|
+
|
766
|
+
MAKEINDEX_CMD_NAME = makeindex
|
767
|
+
|
768
|
+
# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
|
769
|
+
# LaTeX documents. This may be useful for small projects and may help to
|
770
|
+
# save some trees in general.
|
771
|
+
|
772
|
+
COMPACT_LATEX = NO
|
773
|
+
|
774
|
+
# The PAPER_TYPE tag can be used to set the paper type that is used
|
775
|
+
# by the printer. Possible values are: a4, a4wide, letter, legal and
|
776
|
+
# executive. If left blank a4wide will be used.
|
777
|
+
|
778
|
+
PAPER_TYPE = a4wide
|
779
|
+
|
780
|
+
# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
|
781
|
+
# packages that should be included in the LaTeX output.
|
782
|
+
|
783
|
+
EXTRA_PACKAGES = amsmath
|
784
|
+
|
785
|
+
# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
|
786
|
+
# the generated latex document. The header should contain everything until
|
787
|
+
# the first chapter. If it is left blank doxygen will generate a
|
788
|
+
# standard header. Notice: only use this tag if you know what you are doing!
|
789
|
+
|
790
|
+
LATEX_HEADER =
|
791
|
+
|
792
|
+
# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
|
793
|
+
# is prepared for conversion to pdf (using ps2pdf). The pdf file will
|
794
|
+
# contain links (just like the HTML output) instead of page references
|
795
|
+
# This makes the output suitable for online browsing using a pdf viewer.
|
796
|
+
|
797
|
+
PDF_HYPERLINKS = YES
|
798
|
+
|
799
|
+
# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
|
800
|
+
# plain latex in the generated Makefile. Set this option to YES to get a
|
801
|
+
# higher quality PDF documentation.
|
802
|
+
|
803
|
+
USE_PDFLATEX = YES
|
804
|
+
|
805
|
+
# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
|
806
|
+
# command to the generated LaTeX files. This will instruct LaTeX to keep
|
807
|
+
# running if errors occur, instead of asking the user for help.
|
808
|
+
# This option is also used when generating formulas in HTML.
|
809
|
+
|
810
|
+
LATEX_BATCHMODE = NO
|
811
|
+
|
812
|
+
# If LATEX_HIDE_INDICES is set to YES then doxygen will not
|
813
|
+
# include the index chapters (such as File Index, Compound Index, etc.)
|
814
|
+
# in the output.
|
815
|
+
|
816
|
+
LATEX_HIDE_INDICES = NO
|
817
|
+
|
818
|
+
#---------------------------------------------------------------------------
|
819
|
+
# configuration options related to the RTF output
|
820
|
+
#---------------------------------------------------------------------------
|
821
|
+
|
822
|
+
# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
|
823
|
+
# The RTF output is optimized for Word 97 and may not look very pretty with
|
824
|
+
# other RTF readers or editors.
|
825
|
+
|
826
|
+
GENERATE_RTF = NO
|
827
|
+
|
828
|
+
# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
|
829
|
+
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
830
|
+
# put in front of it. If left blank `rtf' will be used as the default path.
|
831
|
+
|
832
|
+
RTF_OUTPUT = rtf
|
833
|
+
|
834
|
+
# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
|
835
|
+
# RTF documents. This may be useful for small projects and may help to
|
836
|
+
# save some trees in general.
|
837
|
+
|
838
|
+
COMPACT_RTF = NO
|
839
|
+
|
840
|
+
# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
|
841
|
+
# will contain hyperlink fields. The RTF file will
|
842
|
+
# contain links (just like the HTML output) instead of page references.
|
843
|
+
# This makes the output suitable for online browsing using WORD or other
|
844
|
+
# programs which support those fields.
|
845
|
+
# Note: wordpad (write) and others do not support links.
|
846
|
+
|
847
|
+
RTF_HYPERLINKS = NO
|
848
|
+
|
849
|
+
# Load stylesheet definitions from file. Syntax is similar to doxygen's
|
850
|
+
# config file, i.e. a series of assignments. You only have to provide
|
851
|
+
# replacements, missing definitions are set to their default value.
|
852
|
+
|
853
|
+
RTF_STYLESHEET_FILE =
|
854
|
+
|
855
|
+
# Set optional variables used in the generation of an rtf document.
|
856
|
+
# Syntax is similar to doxygen's config file.
|
857
|
+
|
858
|
+
RTF_EXTENSIONS_FILE =
|
859
|
+
|
860
|
+
#---------------------------------------------------------------------------
|
861
|
+
# configuration options related to the man page output
|
862
|
+
#---------------------------------------------------------------------------
|
863
|
+
|
864
|
+
# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
|
865
|
+
# generate man pages
|
866
|
+
|
867
|
+
GENERATE_MAN = NO
|
868
|
+
|
869
|
+
# The MAN_OUTPUT tag is used to specify where the man pages will be put.
|
870
|
+
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
871
|
+
# put in front of it. If left blank `man' will be used as the default path.
|
872
|
+
|
873
|
+
MAN_OUTPUT = man
|
874
|
+
|
875
|
+
# The MAN_EXTENSION tag determines the extension that is added to
|
876
|
+
# the generated man pages (default is the subroutine's section .3)
|
877
|
+
|
878
|
+
MAN_EXTENSION = .3
|
879
|
+
|
880
|
+
# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
|
881
|
+
# then it will generate one additional man file for each entity
|
882
|
+
# documented in the real man page(s). These additional files
|
883
|
+
# only source the real man page, but without them the man command
|
884
|
+
# would be unable to find the correct page. The default is NO.
|
885
|
+
|
886
|
+
MAN_LINKS = NO
|
887
|
+
|
888
|
+
#---------------------------------------------------------------------------
|
889
|
+
# configuration options related to the XML output
|
890
|
+
#---------------------------------------------------------------------------
|
891
|
+
|
892
|
+
# If the GENERATE_XML tag is set to YES Doxygen will
|
893
|
+
# generate an XML file that captures the structure of
|
894
|
+
# the code including all documentation.
|
895
|
+
|
896
|
+
GENERATE_XML = NO
|
897
|
+
|
898
|
+
# The XML_OUTPUT tag is used to specify where the XML pages will be put.
|
899
|
+
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
900
|
+
# put in front of it. If left blank `xml' will be used as the default path.
|
901
|
+
|
902
|
+
XML_OUTPUT = xml
|
903
|
+
|
904
|
+
# The XML_SCHEMA tag can be used to specify an XML schema,
|
905
|
+
# which can be used by a validating XML parser to check the
|
906
|
+
# syntax of the XML files.
|
907
|
+
|
908
|
+
XML_SCHEMA =
|
909
|
+
|
910
|
+
# The XML_DTD tag can be used to specify an XML DTD,
|
911
|
+
# which can be used by a validating XML parser to check the
|
912
|
+
# syntax of the XML files.
|
913
|
+
|
914
|
+
XML_DTD =
|
915
|
+
|
916
|
+
# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
|
917
|
+
# dump the program listings (including syntax highlighting
|
918
|
+
# and cross-referencing information) to the XML output. Note that
|
919
|
+
# enabling this will significantly increase the size of the XML output.
|
920
|
+
|
921
|
+
XML_PROGRAMLISTING = YES
|
922
|
+
|
923
|
+
#---------------------------------------------------------------------------
|
924
|
+
# configuration options for the AutoGen Definitions output
|
925
|
+
#---------------------------------------------------------------------------
|
926
|
+
|
927
|
+
# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
|
928
|
+
# generate an AutoGen Definitions (see autogen.sf.net) file
|
929
|
+
# that captures the structure of the code including all
|
930
|
+
# documentation. Note that this feature is still experimental
|
931
|
+
# and incomplete at the moment.
|
932
|
+
|
933
|
+
GENERATE_AUTOGEN_DEF = NO
|
934
|
+
|
935
|
+
#---------------------------------------------------------------------------
|
936
|
+
# configuration options related to the Perl module output
|
937
|
+
#---------------------------------------------------------------------------
|
938
|
+
|
939
|
+
# If the GENERATE_PERLMOD tag is set to YES Doxygen will
|
940
|
+
# generate a Perl module file that captures the structure of
|
941
|
+
# the code including all documentation. Note that this
|
942
|
+
# feature is still experimental and incomplete at the
|
943
|
+
# moment.
|
944
|
+
|
945
|
+
GENERATE_PERLMOD = NO
|
946
|
+
|
947
|
+
# If the PERLMOD_LATEX tag is set to YES Doxygen will generate
|
948
|
+
# the necessary Makefile rules, Perl scripts and LaTeX code to be able
|
949
|
+
# to generate PDF and DVI output from the Perl module output.
|
950
|
+
|
951
|
+
PERLMOD_LATEX = NO
|
952
|
+
|
953
|
+
# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
|
954
|
+
# nicely formatted so it can be parsed by a human reader. This is useful
|
955
|
+
# if you want to understand what is going on. On the other hand, if this
|
956
|
+
# tag is set to NO the size of the Perl module output will be much smaller
|
957
|
+
# and Perl will parse it just the same.
|
958
|
+
|
959
|
+
PERLMOD_PRETTY = YES
|
960
|
+
|
961
|
+
# The names of the make variables in the generated doxyrules.make file
|
962
|
+
# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
|
963
|
+
# This is useful so different doxyrules.make files included by the same
|
964
|
+
# Makefile don't overwrite each other's variables.
|
965
|
+
|
966
|
+
PERLMOD_MAKEVAR_PREFIX =
|
967
|
+
|
968
|
+
#---------------------------------------------------------------------------
|
969
|
+
# Configuration options related to the preprocessor
|
970
|
+
#---------------------------------------------------------------------------
|
971
|
+
|
972
|
+
# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
|
973
|
+
# evaluate all C-preprocessor directives found in the sources and include
|
974
|
+
# files.
|
975
|
+
|
976
|
+
ENABLE_PREPROCESSING = YES
|
977
|
+
|
978
|
+
# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
|
979
|
+
# names in the source code. If set to NO (the default) only conditional
|
980
|
+
# compilation will be performed. Macro expansion can be done in a controlled
|
981
|
+
# way by setting EXPAND_ONLY_PREDEF to YES.
|
982
|
+
|
983
|
+
MACRO_EXPANSION = YES
|
984
|
+
|
985
|
+
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
|
986
|
+
# then the macro expansion is limited to the macros specified with the
|
987
|
+
# PREDEFINED and EXPAND_AS_PREDEFINED tags.
|
988
|
+
|
989
|
+
EXPAND_ONLY_PREDEF = YES
|
990
|
+
|
991
|
+
# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
|
992
|
+
# in the INCLUDE_PATH (see below) will be search if a #include is found.
|
993
|
+
|
994
|
+
SEARCH_INCLUDES = YES
|
995
|
+
|
996
|
+
# The INCLUDE_PATH tag can be used to specify one or more directories that
|
997
|
+
# contain include files that are not input files but should be processed by
|
998
|
+
# the preprocessor.
|
999
|
+
|
1000
|
+
INCLUDE_PATH =
|
1001
|
+
|
1002
|
+
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
|
1003
|
+
# patterns (like *.h and *.hpp) to filter out the header-files in the
|
1004
|
+
# directories. If left blank, the patterns specified with FILE_PATTERNS will
|
1005
|
+
# be used.
|
1006
|
+
|
1007
|
+
INCLUDE_FILE_PATTERNS =
|
1008
|
+
|
1009
|
+
# The PREDEFINED tag can be used to specify one or more macro names that
|
1010
|
+
# are defined before the preprocessor is started (similar to the -D option of
|
1011
|
+
# gcc). The argument of the tag is a list of macros of the form: name
|
1012
|
+
# or name=definition (no spaces). If the definition and the = are
|
1013
|
+
# omitted =1 is assumed. To prevent a macro definition from being
|
1014
|
+
# undefined via #undef or recursively expanded use the := operator
|
1015
|
+
# instead of the = operator.
|
1016
|
+
|
1017
|
+
PREDEFINED = "GECODE_SET_EXPORT=" \
|
1018
|
+
"GECODE_INT_EXPORT=" \
|
1019
|
+
"GECODE_KERNEL_EXPORT=" \
|
1020
|
+
"GECODE_SEARCH_EXPORT=" \
|
1021
|
+
"GECODE_MINIMODEL_EXPORT=" \
|
1022
|
+
"GECODE_GRAPH_EXPORT=" \
|
1023
|
+
"GECODE_SCHEDULING_EXPORT=" \
|
1024
|
+
"GECODE_DRIVER_EXPORT=" \
|
1025
|
+
"GECODE_GIST_EXPORT=" \
|
1026
|
+
"GECODE_SUPPORT_EXPORT=" \
|
1027
|
+
"GECODE_MSC_VIRTUAL=" \
|
1028
|
+
"GECODE_HAS_INT_VARS=1" \
|
1029
|
+
"GECODE_HAS_SET_VARS=1" \
|
1030
|
+
"GECODE_THREADS_PTHREADS=1" \
|
1031
|
+
"GECODE_HAS_THREADS=1" \
|
1032
|
+
"forceinline=inline"
|
1033
|
+
|
1034
|
+
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
|
1035
|
+
# this tag can be used to specify a list of macro names that should be expanded.
|
1036
|
+
# The macro definition that is found in the sources will be used.
|
1037
|
+
# Use the PREDEFINED tag if you want to use a different macro definition.
|
1038
|
+
|
1039
|
+
EXPAND_AS_DEFINED =
|
1040
|
+
|
1041
|
+
# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
|
1042
|
+
# doxygen's preprocessor will remove all function-like macros that are alone
|
1043
|
+
# on a line, have an all uppercase name, and do not end with a semicolon. Such
|
1044
|
+
# function macros are typically used for boiler-plate code, and will confuse
|
1045
|
+
# the parser if not removed.
|
1046
|
+
|
1047
|
+
SKIP_FUNCTION_MACROS = YES
|
1048
|
+
|
1049
|
+
#---------------------------------------------------------------------------
|
1050
|
+
# Configuration::additions related to external references
|
1051
|
+
#---------------------------------------------------------------------------
|
1052
|
+
|
1053
|
+
# The TAGFILES option can be used to specify one or more tagfiles.
|
1054
|
+
# Optionally an initial location of the external documentation
|
1055
|
+
# can be added for each tagfile. The format of a tag file without
|
1056
|
+
# this location is as follows:
|
1057
|
+
# TAGFILES = file1 file2 ...
|
1058
|
+
# Adding location for the tag files is done as follows:
|
1059
|
+
# TAGFILES = file1=loc1 "file2 = loc2" ...
|
1060
|
+
# where "loc1" and "loc2" can be relative or absolute paths or
|
1061
|
+
# URLs. If a location is present for each tag, the installdox tool
|
1062
|
+
# does not have to be run to correct the links.
|
1063
|
+
# Note that each tag file must have a unique name
|
1064
|
+
# (where the name does NOT include the path)
|
1065
|
+
# If a tag file is not located in the directory in which doxygen
|
1066
|
+
# is run, you must also specify the path to the tagfile here.
|
1067
|
+
|
1068
|
+
TAGFILES =
|
1069
|
+
|
1070
|
+
# When a file name is specified after GENERATE_TAGFILE, doxygen will create
|
1071
|
+
# a tag file that is based on the input files it reads.
|
1072
|
+
|
1073
|
+
GENERATE_TAGFILE = @GECODE_DOXYGEN_TAGFILE@
|
1074
|
+
|
1075
|
+
# If the ALLEXTERNALS tag is set to YES all external classes will be listed
|
1076
|
+
# in the class index. If set to NO only the inherited external classes
|
1077
|
+
# will be listed.
|
1078
|
+
|
1079
|
+
ALLEXTERNALS = NO
|
1080
|
+
|
1081
|
+
# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
|
1082
|
+
# in the modules index. If set to NO, only the current project's groups will
|
1083
|
+
# be listed.
|
1084
|
+
|
1085
|
+
EXTERNAL_GROUPS = YES
|
1086
|
+
|
1087
|
+
# The PERL_PATH should be the absolute path and name of the perl script
|
1088
|
+
# interpreter (i.e. the result of `which perl').
|
1089
|
+
|
1090
|
+
PERL_PATH = /usr/bin/perl
|
1091
|
+
|
1092
|
+
#---------------------------------------------------------------------------
|
1093
|
+
# Configuration options related to the dot tool
|
1094
|
+
#---------------------------------------------------------------------------
|
1095
|
+
|
1096
|
+
# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
|
1097
|
+
# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
|
1098
|
+
# or super classes. Setting the tag to NO turns the diagrams off. Note that
|
1099
|
+
# this option is superseded by the HAVE_DOT option below. This is only a
|
1100
|
+
# fallback. It is recommended to install and use dot, since it yields more
|
1101
|
+
# powerful graphs.
|
1102
|
+
|
1103
|
+
CLASS_DIAGRAMS = NO
|
1104
|
+
|
1105
|
+
# If set to YES, the inheritance and collaboration graphs will hide
|
1106
|
+
# inheritance and usage relations if the target is undocumented
|
1107
|
+
# or is not a class.
|
1108
|
+
|
1109
|
+
HIDE_UNDOC_RELATIONS = YES
|
1110
|
+
|
1111
|
+
# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
|
1112
|
+
# available from the path. This tool is part of Graphviz, a graph visualization
|
1113
|
+
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
|
1114
|
+
# have no effect if this option is set to NO (the default)
|
1115
|
+
|
1116
|
+
HAVE_DOT = YES
|
1117
|
+
|
1118
|
+
# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
|
1119
|
+
# will generate a graph for each documented class showing the direct and
|
1120
|
+
# indirect inheritance relations. Setting this tag to YES will force the
|
1121
|
+
# the CLASS_DIAGRAMS tag to NO.
|
1122
|
+
|
1123
|
+
CLASS_GRAPH = NO
|
1124
|
+
|
1125
|
+
# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
|
1126
|
+
# will generate a graph for each documented class showing the direct and
|
1127
|
+
# indirect implementation dependencies (inheritance, containment, and
|
1128
|
+
# class references variables) of the class with other documented classes.
|
1129
|
+
|
1130
|
+
COLLABORATION_GRAPH = NO
|
1131
|
+
|
1132
|
+
# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
|
1133
|
+
# will generate a graph for groups, showing the direct groups dependencies
|
1134
|
+
|
1135
|
+
GROUP_GRAPHS = NO
|
1136
|
+
|
1137
|
+
# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
|
1138
|
+
# collaboration diagrams in a style similar to the OMG's Unified Modeling
|
1139
|
+
# Language.
|
1140
|
+
|
1141
|
+
UML_LOOK = YES
|
1142
|
+
|
1143
|
+
# If set to YES, the inheritance and collaboration graphs will show the
|
1144
|
+
# relations between templates and their instances.
|
1145
|
+
|
1146
|
+
TEMPLATE_RELATIONS = YES
|
1147
|
+
|
1148
|
+
# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
|
1149
|
+
# tags are set to YES then doxygen will generate a graph for each documented
|
1150
|
+
# file showing the direct and indirect include dependencies of the file with
|
1151
|
+
# other documented files.
|
1152
|
+
|
1153
|
+
INCLUDE_GRAPH = NO
|
1154
|
+
|
1155
|
+
# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
|
1156
|
+
# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
|
1157
|
+
# documented header file showing the documented files that directly or
|
1158
|
+
# indirectly include this file.
|
1159
|
+
|
1160
|
+
INCLUDED_BY_GRAPH = NO
|
1161
|
+
|
1162
|
+
# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
|
1163
|
+
# generate a call dependency graph for every global function or class method.
|
1164
|
+
# Note that enabling this option will significantly increase the time of a run.
|
1165
|
+
# So in most cases it will be better to enable call graphs for selected
|
1166
|
+
# functions only using the \callgraph command.
|
1167
|
+
|
1168
|
+
CALL_GRAPH = NO
|
1169
|
+
|
1170
|
+
# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
|
1171
|
+
# will graphical hierarchy of all classes instead of a textual one.
|
1172
|
+
|
1173
|
+
GRAPHICAL_HIERARCHY = NO
|
1174
|
+
|
1175
|
+
# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
|
1176
|
+
# then doxygen will show the dependencies a directory has on other directories
|
1177
|
+
# in a graphical way. The dependency relations are determined by the #include
|
1178
|
+
# relations between the files in the directories.
|
1179
|
+
|
1180
|
+
DIRECTORY_GRAPH = YES
|
1181
|
+
|
1182
|
+
# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
|
1183
|
+
# generated by dot. Possible values are png, jpg, or gif
|
1184
|
+
# If left blank png will be used.
|
1185
|
+
|
1186
|
+
DOT_IMAGE_FORMAT = png
|
1187
|
+
|
1188
|
+
# The tag DOT_PATH can be used to specify the path where the dot tool can be
|
1189
|
+
# found. If left blank, it is assumed the dot tool can be found in the path.
|
1190
|
+
|
1191
|
+
DOT_PATH =
|
1192
|
+
|
1193
|
+
# The DOTFILE_DIRS tag can be used to specify one or more directories that
|
1194
|
+
# contain dot files that are included in the documentation (see the
|
1195
|
+
# \dotfile command).
|
1196
|
+
|
1197
|
+
DOTFILE_DIRS =
|
1198
|
+
|
1199
|
+
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
|
1200
|
+
# graphs generated by dot. A depth value of 3 means that only nodes reachable
|
1201
|
+
# from the root by following a path via at most 3 edges will be shown. Nodes
|
1202
|
+
# that lay further from the root node will be omitted. Note that setting this
|
1203
|
+
# option to 1 or 2 may greatly reduce the computation time needed for large
|
1204
|
+
# code bases. Also note that a graph may be further truncated if the graph's
|
1205
|
+
# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH
|
1206
|
+
# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default),
|
1207
|
+
# the graph is not depth-constrained.
|
1208
|
+
|
1209
|
+
MAX_DOT_GRAPH_DEPTH = 0
|
1210
|
+
|
1211
|
+
# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
|
1212
|
+
# background. This is disabled by default, which results in a white background.
|
1213
|
+
# Warning: Depending on the platform used, enabling this option may lead to
|
1214
|
+
# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
|
1215
|
+
# read).
|
1216
|
+
|
1217
|
+
DOT_TRANSPARENT = NO
|
1218
|
+
|
1219
|
+
# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
|
1220
|
+
# files in one run (i.e. multiple -o and -T options on the command line). This
|
1221
|
+
# makes dot run faster, but since only newer versions of dot (>1.8.10)
|
1222
|
+
# support this, this feature is disabled by default.
|
1223
|
+
|
1224
|
+
DOT_MULTI_TARGETS = NO
|
1225
|
+
|
1226
|
+
# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
|
1227
|
+
# generate a legend page explaining the meaning of the various boxes and
|
1228
|
+
# arrows in the dot generated graphs.
|
1229
|
+
|
1230
|
+
GENERATE_LEGEND = YES
|
1231
|
+
|
1232
|
+
# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
|
1233
|
+
# remove the intermediate dot files that are used to generate
|
1234
|
+
# the various graphs.
|
1235
|
+
|
1236
|
+
DOT_CLEANUP = YES
|
1237
|
+
|
1238
|
+
#---------------------------------------------------------------------------
|
1239
|
+
# Configuration::additions related to the search engine
|
1240
|
+
#---------------------------------------------------------------------------
|
1241
|
+
|
1242
|
+
# The SEARCHENGINE tag specifies whether or not a search engine should be
|
1243
|
+
# used. If set to NO the values of all tags below this one will be ignored.
|
1244
|
+
|
1245
|
+
SEARCHENGINE = NO
|