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.
Files changed (806) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +26 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +20 -0
  7. data/dep-selector-libgecode.gemspec +25 -0
  8. data/ext/libgecode3/Makefile +8 -0
  9. data/ext/libgecode3/extconf.rb +57 -0
  10. data/ext/libgecode3/vendor/gecode-3.7.3/LICENSE +25 -0
  11. data/ext/libgecode3/vendor/gecode-3.7.3/Makefile.contribs +88 -0
  12. data/ext/libgecode3/vendor/gecode-3.7.3/Makefile.dep +11307 -0
  13. data/ext/libgecode3/vendor/gecode-3.7.3/Makefile.in +1795 -0
  14. data/ext/libgecode3/vendor/gecode-3.7.3/changelog.in +6132 -0
  15. data/ext/libgecode3/vendor/gecode-3.7.3/configure +13054 -0
  16. data/ext/libgecode3/vendor/gecode-3.7.3/configure.ac +356 -0
  17. data/ext/libgecode3/vendor/gecode-3.7.3/configure.ac.in +352 -0
  18. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/README +26 -0
  19. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/AbstractWorker.hh +42 -0
  20. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Doxyfile +263 -0
  21. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Makefile.in.in +162 -0
  22. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/OptVar.cc +82 -0
  23. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/OptVar.hh +124 -0
  24. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/QCOPPlus.cc +306 -0
  25. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/QCOPPlus.hh +166 -0
  26. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/QCSPPlusUnblockable.cc +239 -0
  27. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/QCSPPlusUnblockable.hh +140 -0
  28. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/README +6 -0
  29. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Strategy.cc +253 -0
  30. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Strategy.hh +112 -0
  31. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/StrategyNode.cc +59 -0
  32. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/StrategyNode.hh +49 -0
  33. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/UnblockableBranching.hh +34 -0
  34. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/UnblockableViewValBranching.cc +61 -0
  35. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/UnblockableViewValBranching.hh +45 -0
  36. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Work.cc +48 -0
  37. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Work.hh +64 -0
  38. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/WorkComparators.hh +67 -0
  39. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/WorkManager.cc +376 -0
  40. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/WorkManager.hh +96 -0
  41. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Worker.cc +285 -0
  42. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/Worker.hh +70 -0
  43. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/clean +5 -0
  44. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/configure +2637 -0
  45. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/configure.ac +44 -0
  46. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/myDom.cc +59 -0
  47. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/myspace.cc +119 -0
  48. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/myspace.hh +79 -0
  49. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qecode.hh +56 -0
  50. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_parallel.cc +41 -0
  51. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_parallel.hh +43 -0
  52. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_qcop.cc +268 -0
  53. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_qcop.hh +56 -0
  54. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_qcsp.cc +163 -0
  55. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_qcsp.hh +63 -0
  56. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_unblockable.cc +423 -0
  57. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/qsolver_unblockable.hh +84 -0
  58. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/shortdesc.ac +1 -0
  59. data/ext/libgecode3/vendor/gecode-3.7.3/contribs/qecode/vartype.hh +31 -0
  60. data/ext/libgecode3/vendor/gecode-3.7.3/doxygen/doxygen.conf.in +1245 -0
  61. data/ext/libgecode3/vendor/gecode-3.7.3/doxygen/doxygen.hh.in +594 -0
  62. data/ext/libgecode3/vendor/gecode-3.7.3/examples/all-interval.cpp +136 -0
  63. data/ext/libgecode3/vendor/gecode-3.7.3/examples/alpha.cpp +151 -0
  64. data/ext/libgecode3/vendor/gecode-3.7.3/examples/bacp.cpp +596 -0
  65. data/ext/libgecode3/vendor/gecode-3.7.3/examples/bibd.cpp +182 -0
  66. data/ext/libgecode3/vendor/gecode-3.7.3/examples/bin-packing.cpp +25363 -0
  67. data/ext/libgecode3/vendor/gecode-3.7.3/examples/black-hole.cpp +413 -0
  68. data/ext/libgecode3/vendor/gecode-3.7.3/examples/car-sequencing.cpp +653 -0
  69. data/ext/libgecode3/vendor/gecode-3.7.3/examples/crew.cpp +269 -0
  70. data/ext/libgecode3/vendor/gecode-3.7.3/examples/crossword.cpp +3954 -0
  71. data/ext/libgecode3/vendor/gecode-3.7.3/examples/crowded-chess.cpp +424 -0
  72. data/ext/libgecode3/vendor/gecode-3.7.3/examples/dominating-queens.cpp +170 -0
  73. data/ext/libgecode3/vendor/gecode-3.7.3/examples/domino.cpp +346 -0
  74. data/ext/libgecode3/vendor/gecode-3.7.3/examples/donald.cpp +135 -0
  75. data/ext/libgecode3/vendor/gecode-3.7.3/examples/efpa.cpp +323 -0
  76. data/ext/libgecode3/vendor/gecode-3.7.3/examples/eq20.cpp +128 -0
  77. data/ext/libgecode3/vendor/gecode-3.7.3/examples/golf.cpp +190 -0
  78. data/ext/libgecode3/vendor/gecode-3.7.3/examples/golomb-ruler.cpp +157 -0
  79. data/ext/libgecode3/vendor/gecode-3.7.3/examples/graph-color.cpp +425 -0
  80. data/ext/libgecode3/vendor/gecode-3.7.3/examples/grocery.cpp +116 -0
  81. data/ext/libgecode3/vendor/gecode-3.7.3/examples/hamming.cpp +144 -0
  82. data/ext/libgecode3/vendor/gecode-3.7.3/examples/ind-set.cpp +144 -0
  83. data/ext/libgecode3/vendor/gecode-3.7.3/examples/kakuro.cpp +627 -0
  84. data/ext/libgecode3/vendor/gecode-3.7.3/examples/knights.cpp +430 -0
  85. data/ext/libgecode3/vendor/gecode-3.7.3/examples/langford-number.cpp +218 -0
  86. data/ext/libgecode3/vendor/gecode-3.7.3/examples/magic-sequence.cpp +133 -0
  87. data/ext/libgecode3/vendor/gecode-3.7.3/examples/magic-square.cpp +141 -0
  88. data/ext/libgecode3/vendor/gecode-3.7.3/examples/minesweeper.cpp +311 -0
  89. data/ext/libgecode3/vendor/gecode-3.7.3/examples/money.cpp +132 -0
  90. data/ext/libgecode3/vendor/gecode-3.7.3/examples/nonogram.cpp +1215 -0
  91. data/ext/libgecode3/vendor/gecode-3.7.3/examples/open-shop.cpp +412 -0
  92. data/ext/libgecode3/vendor/gecode-3.7.3/examples/ortho-latin.cpp +183 -0
  93. data/ext/libgecode3/vendor/gecode-3.7.3/examples/partition.cpp +145 -0
  94. data/ext/libgecode3/vendor/gecode-3.7.3/examples/pentominoes.cpp +952 -0
  95. data/ext/libgecode3/vendor/gecode-3.7.3/examples/perfect-square.cpp +317 -0
  96. data/ext/libgecode3/vendor/gecode-3.7.3/examples/photo.cpp +166 -0
  97. data/ext/libgecode3/vendor/gecode-3.7.3/examples/queen-armies.cpp +335 -0
  98. data/ext/libgecode3/vendor/gecode-3.7.3/examples/queens.cpp +214 -0
  99. data/ext/libgecode3/vendor/gecode-3.7.3/examples/radiotherapy.cpp +943 -0
  100. data/ext/libgecode3/vendor/gecode-3.7.3/examples/sat.cpp +260 -0
  101. data/ext/libgecode3/vendor/gecode-3.7.3/examples/schurs-lemma.cpp +142 -0
  102. data/ext/libgecode3/vendor/gecode-3.7.3/examples/scowl.hpp +14149 -0
  103. data/ext/libgecode3/vendor/gecode-3.7.3/examples/sports-league.cpp +353 -0
  104. data/ext/libgecode3/vendor/gecode-3.7.3/examples/steel-mill.cpp +654 -0
  105. data/ext/libgecode3/vendor/gecode-3.7.3/examples/steiner.cpp +170 -0
  106. data/ext/libgecode3/vendor/gecode-3.7.3/examples/sudoku.cpp +2294 -0
  107. data/ext/libgecode3/vendor/gecode-3.7.3/examples/tsp.cpp +339 -0
  108. data/ext/libgecode3/vendor/gecode-3.7.3/examples/warehouses.cpp +185 -0
  109. data/ext/libgecode3/vendor/gecode-3.7.3/examples/word-square.cpp +168 -0
  110. data/ext/libgecode3/vendor/gecode-3.7.3/gecode.m4 +1272 -0
  111. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver.hh +602 -0
  112. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver/options.cpp +435 -0
  113. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver/options.hpp +418 -0
  114. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver/script.cpp +104 -0
  115. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/driver/script.hpp +388 -0
  116. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc.hh +417 -0
  117. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/CHANGES +63 -0
  118. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/ast.hh +492 -0
  119. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/conexpr.hh +82 -0
  120. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/exampleplugin/myplugin.cpp +49 -0
  121. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/exampleplugin/myplugin.hh +47 -0
  122. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/exampleplugin/myplugin.pro +51 -0
  123. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/exampleplugin/test_myplugin.fzn +1 -0
  124. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/flatzinc.cpp +1056 -0
  125. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/lexer.lxx +137 -0
  126. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/lexer.yy.cpp +2458 -0
  127. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/all_different_int.mzn +37 -0
  128. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/all_equal_int.mzn +37 -0
  129. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/among.mzn +37 -0
  130. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/at_least_int.mzn +37 -0
  131. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/at_least_set.mzn +38 -0
  132. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/at_most_int.mzn +37 -0
  133. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/at_most_set.mzn +38 -0
  134. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/bin_packing.mzn +44 -0
  135. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/bin_packing_capa.mzn +45 -0
  136. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/bin_packing_load.mzn +45 -0
  137. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/circuit.mzn +40 -0
  138. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/count.mzn +37 -0
  139. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/cumulative.mzn +53 -0
  140. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/decreasing_bool.mzn +37 -0
  141. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/decreasing_int.mzn +37 -0
  142. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/diffn.mzn +44 -0
  143. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/disjoint.mzn +37 -0
  144. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/distribute.mzn +46 -0
  145. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/exactly_int.mzn +40 -0
  146. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/exactly_set.mzn +38 -0
  147. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/gecode.mzn +98 -0
  148. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/global_cardinality.mzn +43 -0
  149. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/global_cardinality_closed.mzn +39 -0
  150. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/global_cardinality_low_up.mzn +40 -0
  151. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/global_cardinality_low_up_closed.mzn +40 -0
  152. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/increasing_bool.mzn +37 -0
  153. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/increasing_int.mzn +37 -0
  154. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/int_set_channel.mzn +49 -0
  155. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/inverse.mzn +42 -0
  156. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/lex_less_int.mzn +42 -0
  157. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/lex_lesseq_int.mzn +42 -0
  158. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/link_set_to_booleans.mzn +47 -0
  159. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/maximum_int.mzn +37 -0
  160. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/member_bool.mzn +41 -0
  161. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/member_int.mzn +41 -0
  162. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/minimum_int.mzn +37 -0
  163. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/nvalue.mzn +37 -0
  164. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/partition_set.mzn +42 -0
  165. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/precedence.mzn +41 -0
  166. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/range.mzn +51 -0
  167. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/redefinitions.mzn +62 -0
  168. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/regular.mzn +38 -0
  169. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/roots.mzn +63 -0
  170. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/sort.mzn +37 -0
  171. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/sum_pred.mzn +42 -0
  172. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/table_bool.mzn +37 -0
  173. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/mznlib/table_int.mzn +37 -0
  174. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/option.hh +70 -0
  175. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/parser.hh +265 -0
  176. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/parser.tab.cpp +3571 -0
  177. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/parser.tab.hh +164 -0
  178. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/parser.yxx +1604 -0
  179. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/plugin.hh +83 -0
  180. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/registry.cpp +1812 -0
  181. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/registry.hh +71 -0
  182. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/symboltable.hh +96 -0
  183. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/flatzinc/varspec.hh +163 -0
  184. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist.hh +298 -0
  185. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/drawingcursor.cpp +288 -0
  186. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/drawingcursor.hh +110 -0
  187. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/drawingcursor.hpp +84 -0
  188. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/gecodelogo.cpp +673 -0
  189. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/gecodelogo.hh +65 -0
  190. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/gist.cpp +120 -0
  191. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/gist.hpp +207 -0
  192. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/layoutcursor.hh +69 -0
  193. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/layoutcursor.hpp +70 -0
  194. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/mainwindow.cpp +341 -0
  195. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/mainwindow.hh +129 -0
  196. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/node.cpp +82 -0
  197. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/node.hh +160 -0
  198. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/node.hpp +210 -0
  199. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodecursor.hh +215 -0
  200. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodecursor.hpp +271 -0
  201. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodestats.cpp +138 -0
  202. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodestats.hh +81 -0
  203. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodevisitor.hh +96 -0
  204. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodevisitor.hpp +126 -0
  205. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodewidget.cpp +90 -0
  206. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/nodewidget.hh +59 -0
  207. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/preferences.cpp +190 -0
  208. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/preferences.hh +96 -0
  209. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/qtgist.cpp +809 -0
  210. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/qtgist.hh +294 -0
  211. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/spacenode.cpp +369 -0
  212. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/spacenode.hh +221 -0
  213. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/spacenode.hpp +191 -0
  214. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/standalone-example/mygist.cpp +80 -0
  215. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/standalone-example/standalone_example.pro +18 -0
  216. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/stopbrancher.cpp +90 -0
  217. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/stopbrancher.hh +82 -0
  218. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/textoutput.cpp +175 -0
  219. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/textoutput.hh +75 -0
  220. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/treecanvas.cpp +1430 -0
  221. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/treecanvas.hh +369 -0
  222. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/visualnode.cpp +473 -0
  223. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/visualnode.hh +237 -0
  224. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/visualnode.hpp +220 -0
  225. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/gist/zoomToFitIcon.hpp +114 -0
  226. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int.hh +3477 -0
  227. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic.cpp +185 -0
  228. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic.hh +666 -0
  229. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/abs.hpp +236 -0
  230. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/divmod.hpp +350 -0
  231. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/max.hpp +398 -0
  232. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/mult.hpp +750 -0
  233. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/sqr.hpp +377 -0
  234. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/arithmetic/sqrt.hpp +217 -0
  235. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/array-traits.hpp +147 -0
  236. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/array.cpp +113 -0
  237. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/array.hpp +111 -0
  238. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bin-packing.cpp +71 -0
  239. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bin-packing.hh +184 -0
  240. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bin-packing/propagate.cpp +388 -0
  241. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bin-packing/propagate.hpp +219 -0
  242. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool.cpp +755 -0
  243. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool.hh +581 -0
  244. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/base.hpp +137 -0
  245. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/clause.hpp +353 -0
  246. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/eq.hpp +196 -0
  247. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/eqv.cpp +104 -0
  248. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/eqv.hpp +202 -0
  249. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/lq.hpp +241 -0
  250. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/bool/or.hpp +850 -0
  251. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch.cpp +152 -0
  252. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch.hh +607 -0
  253. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-val-bool.hpp +81 -0
  254. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-val-int.hpp +107 -0
  255. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-view-bool.bs +121 -0
  256. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-view-bool.cpp +438 -0
  257. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-view-int.bs +121 -0
  258. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/post-view-int.cpp +438 -0
  259. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/select-val.hpp +229 -0
  260. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/select-values.hpp +213 -0
  261. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/branch/select-view.hpp +364 -0
  262. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel.cpp +172 -0
  263. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel.hh +249 -0
  264. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/base.hpp +78 -0
  265. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/dom.hpp +332 -0
  266. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/link-multi.cpp +241 -0
  267. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/link-multi.hpp +84 -0
  268. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/link-single.cpp +77 -0
  269. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/link-single.hpp +71 -0
  270. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/channel/val.hpp +256 -0
  271. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit.cpp +229 -0
  272. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit.hh +160 -0
  273. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit/base.hpp +270 -0
  274. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit/dom.hpp +128 -0
  275. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/circuit/val.hpp +105 -0
  276. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count.cpp +417 -0
  277. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count.hh +410 -0
  278. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/int-base.hpp +80 -0
  279. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/int-eq.hpp +143 -0
  280. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/int-gq.hpp +137 -0
  281. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/int-lq.hpp +136 -0
  282. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/rel.hpp +281 -0
  283. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/view-base.hpp +131 -0
  284. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/view-eq.hpp +117 -0
  285. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/view-gq.hpp +109 -0
  286. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/count/view-lq.hpp +96 -0
  287. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative.cpp +432 -0
  288. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative.hh +745 -0
  289. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/basic.hpp +211 -0
  290. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/edge-finding.hpp +185 -0
  291. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/man-prop.hpp +127 -0
  292. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/opt-prop.hpp +171 -0
  293. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/overload.hpp +63 -0
  294. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/task-view.hpp +84 -0
  295. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/task.hpp +256 -0
  296. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulative/tree.hpp +272 -0
  297. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulatives.cpp +187 -0
  298. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulatives.hh +133 -0
  299. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/cumulatives/val.hpp +380 -0
  300. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct.cpp +97 -0
  301. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct.hh +314 -0
  302. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/bnd.hpp +444 -0
  303. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/dom-ctrl.hpp +81 -0
  304. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/dom.hpp +123 -0
  305. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/graph.hpp +266 -0
  306. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/ter-dom.hpp +113 -0
  307. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/distinct/val.hpp +185 -0
  308. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/dom.cpp +135 -0
  309. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/dom.hh +118 -0
  310. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/dom/range.hpp +105 -0
  311. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/dom/spec.hpp +124 -0
  312. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element.cpp +190 -0
  313. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element.hh +384 -0
  314. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element/int.hpp +443 -0
  315. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element/pair.cpp +151 -0
  316. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element/pair.hpp +74 -0
  317. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/element/view.hpp +559 -0
  318. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exception.hpp +196 -0
  319. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exec.cpp +83 -0
  320. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exec.hh +87 -0
  321. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exec/when.cpp +77 -0
  322. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/exec/when.hpp +51 -0
  323. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional.cpp +124 -0
  324. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional.hh +508 -0
  325. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/base.hpp +163 -0
  326. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/basic.hpp +148 -0
  327. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/dfa.cpp +535 -0
  328. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/dfa.hpp +282 -0
  329. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/incremental.hpp +454 -0
  330. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/layered-graph.hpp +982 -0
  331. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/tuple-set.cpp +222 -0
  332. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/extensional/tuple-set.hpp +184 -0
  333. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc.cpp +172 -0
  334. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc.hh +268 -0
  335. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/bnd-sup.hpp +608 -0
  336. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/bnd.hpp +829 -0
  337. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/dom-sup.hpp +1777 -0
  338. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/dom.hpp +315 -0
  339. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/post.hpp +169 -0
  340. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/val.hpp +299 -0
  341. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/gcc/view.hpp +410 -0
  342. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/int-set-1.hpp +249 -0
  343. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/int-set-2.hpp +51 -0
  344. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/int-set.cpp +167 -0
  345. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/limits.hpp +94 -0
  346. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear-bool.cpp +196 -0
  347. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear-int.cpp +194 -0
  348. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear.hh +1560 -0
  349. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/bool-int.hpp +743 -0
  350. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/bool-post.cpp +602 -0
  351. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/bool-scale.hpp +695 -0
  352. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/bool-view.hpp +319 -0
  353. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-bin.hpp +439 -0
  354. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-dom.hpp +484 -0
  355. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-nary.hpp +864 -0
  356. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-noview.hpp +251 -0
  357. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-post.cpp +561 -0
  358. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/int-ter.hpp +273 -0
  359. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/linear/post.hpp +152 -0
  360. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/member.cpp +85 -0
  361. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/member.hh +125 -0
  362. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/member/prop.hpp +175 -0
  363. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/member/re-prop.hpp +178 -0
  364. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap.cpp +226 -0
  365. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap.hh +318 -0
  366. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/base.hpp +88 -0
  367. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/box.hpp +198 -0
  368. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/dim.hpp +197 -0
  369. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/man.hpp +119 -0
  370. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/no-overlap/opt.hpp +153 -0
  371. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues.cpp +244 -0
  372. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues.hh +429 -0
  373. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/bool-base.hpp +98 -0
  374. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/bool-eq.hpp +174 -0
  375. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/bool-gq.hpp +149 -0
  376. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/bool-lq.hpp +151 -0
  377. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/graph.hpp +283 -0
  378. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/int-base.hpp +347 -0
  379. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/int-eq.hpp +167 -0
  380. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/int-gq.hpp +130 -0
  381. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/int-lq.hpp +154 -0
  382. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/range-event.hpp +51 -0
  383. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/nvalues/sym-bit-matrix.hpp +69 -0
  384. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/precede.cpp +73 -0
  385. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/precede.hh +113 -0
  386. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/precede/single.hpp +232 -0
  387. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/propagator.hpp +311 -0
  388. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel.cpp +381 -0
  389. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel.hh +665 -0
  390. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel/eq.hpp +676 -0
  391. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel/lex.hpp +414 -0
  392. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel/lq-le.hpp +537 -0
  393. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/rel/nq.hpp +196 -0
  394. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence.cpp +197 -0
  395. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence.hh +154 -0
  396. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence/int.hpp +168 -0
  397. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence/set-op.hpp +154 -0
  398. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence/view.hpp +499 -0
  399. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sequence/violations.hpp +101 -0
  400. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted.cpp +82 -0
  401. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted.hh +107 -0
  402. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/matching.hpp +173 -0
  403. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/narrowing.hpp +250 -0
  404. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/order.hpp +213 -0
  405. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/propagate.hpp +646 -0
  406. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/sorted/sortsup.hpp +564 -0
  407. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/support-values.hh +154 -0
  408. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/support-values.hpp +187 -0
  409. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task.hh +454 -0
  410. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/array.hpp +179 -0
  411. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/fwd-to-bwd.hpp +102 -0
  412. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/iter.hpp +92 -0
  413. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/man-to-opt.hpp +100 -0
  414. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/prop.hpp +70 -0
  415. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/purge.hpp +74 -0
  416. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/sort.hpp +234 -0
  417. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/task/tree.hpp +189 -0
  418. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary.cpp +258 -0
  419. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary.hh +839 -0
  420. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/detectable.hpp +116 -0
  421. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/edge-finding.hpp +78 -0
  422. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/man-prop.hpp +78 -0
  423. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/not-first-not-last.hpp +133 -0
  424. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/opt-prop.hpp +116 -0
  425. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/overload.hpp +93 -0
  426. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/subsumption.hpp +55 -0
  427. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/task-view.hpp +105 -0
  428. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/task.hpp +532 -0
  429. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unary/tree.hpp +229 -0
  430. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/unshare.cpp +146 -0
  431. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/val-set.hh +118 -0
  432. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/val-set.hpp +186 -0
  433. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp.hpp +710 -0
  434. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/bool.cpp +65 -0
  435. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/bool.hpp +431 -0
  436. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/bool.vis +75 -0
  437. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/delta.hpp +64 -0
  438. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/int.cpp +361 -0
  439. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/int.hpp +1029 -0
  440. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var-imp/int.vis +117 -0
  441. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/bool.cpp +53 -0
  442. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/bool.hpp +121 -0
  443. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/int.cpp +61 -0
  444. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/int.hpp +145 -0
  445. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/var/print.hpp +56 -0
  446. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph.hh +334 -0
  447. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/bi-link.hpp +89 -0
  448. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/comb-ptr-flag.hpp +78 -0
  449. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/edge.hpp +124 -0
  450. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/graph.hpp +202 -0
  451. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/iter-prune-val.hpp +70 -0
  452. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view-val-graph/node.hpp +171 -0
  453. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view.hpp +1690 -0
  454. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/bool-test.hpp +64 -0
  455. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/bool.hpp +314 -0
  456. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/cached.hpp +402 -0
  457. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/constint.hpp +324 -0
  458. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/int.hpp +264 -0
  459. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/iter.hpp +65 -0
  460. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/minus.hpp +300 -0
  461. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/neg-bool.hpp +177 -0
  462. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/offset.hpp +303 -0
  463. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/print.hpp +162 -0
  464. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/rel-test.hpp +231 -0
  465. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/scale.hpp +368 -0
  466. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/int/view/zero.hpp +305 -0
  467. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter.hh +96 -0
  468. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-add.hpp +144 -0
  469. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-append.hpp +222 -0
  470. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-array.hpp +139 -0
  471. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-cache.hpp +106 -0
  472. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-compl.hpp +220 -0
  473. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-diff.hpp +142 -0
  474. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-empty.hpp +111 -0
  475. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-inter.hpp +309 -0
  476. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-list.hpp +263 -0
  477. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-map.hpp +260 -0
  478. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-minmax.hpp +118 -0
  479. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-minus.hpp +107 -0
  480. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-negative.hpp +137 -0
  481. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-offset.hpp +127 -0
  482. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-operations.hpp +157 -0
  483. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-positive.hpp +139 -0
  484. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-rangelist.hpp +115 -0
  485. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-scale.hpp +238 -0
  486. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-singleton-append.hpp +111 -0
  487. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-singleton.hpp +86 -0
  488. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-size.hpp +146 -0
  489. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-union.hpp +361 -0
  490. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/ranges-values.hpp +140 -0
  491. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-array.hpp +120 -0
  492. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-bitset.hpp +114 -0
  493. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-inter.hpp +130 -0
  494. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-list.hpp +186 -0
  495. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-map.hpp +136 -0
  496. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-minus.hpp +105 -0
  497. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-negative.hpp +116 -0
  498. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-offset.hpp +113 -0
  499. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-positive.hpp +123 -0
  500. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-ranges.hpp +106 -0
  501. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-singleton.hpp +109 -0
  502. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-union.hpp +137 -0
  503. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-unique.hpp +118 -0
  504. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel.hh +194 -0
  505. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/advisor.hpp +102 -0
  506. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/allocators.hpp +476 -0
  507. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/archive.cpp +70 -0
  508. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/archive.hpp +298 -0
  509. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/array.hpp +2133 -0
  510. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/branch.cpp +121 -0
  511. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/branch.hpp +254 -0
  512. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/brancher-tiebreak.hpp +615 -0
  513. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/brancher-val.hpp +126 -0
  514. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/brancher-view.hpp +455 -0
  515. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/brancher.hpp +431 -0
  516. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/core.cpp +563 -0
  517. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/core.hpp +3668 -0
  518. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/exception.hpp +124 -0
  519. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/global-prop-info.hpp +258 -0
  520. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/macros.hpp +118 -0
  521. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/memory-config.hpp +154 -0
  522. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/memory-manager.cpp +53 -0
  523. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/memory-manager.hpp +511 -0
  524. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/modevent.hpp +69 -0
  525. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/propagator.hpp +699 -0
  526. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/range-list.hpp +184 -0
  527. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/region.cpp +85 -0
  528. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/region.hpp +459 -0
  529. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/shared-array.hpp +345 -0
  530. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/var-imp.hpp +332 -0
  531. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/var-type.hpp +767 -0
  532. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/var.hpp +144 -0
  533. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/view.hpp +715 -0
  534. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/kernel/wait.hh +244 -0
  535. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel.hh +1870 -0
  536. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/arithmetic.cpp +408 -0
  537. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/bool-expr.cpp +522 -0
  538. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/bool-expr.hpp +87 -0
  539. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/exception.hpp +84 -0
  540. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/lin-expr.cpp +594 -0
  541. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/lin-expr.hpp +297 -0
  542. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/lin-rel.cpp +414 -0
  543. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/lin-rel.hpp +85 -0
  544. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/matrix.hpp +247 -0
  545. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/optimize.hpp +62 -0
  546. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/reg.cpp +817 -0
  547. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/reg.hpp +94 -0
  548. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/set-expr.cpp +704 -0
  549. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/set-expr.hpp +96 -0
  550. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/set-rel.cpp +81 -0
  551. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/minimodel/set-rel.hpp +84 -0
  552. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search.hh +458 -0
  553. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/bab.cpp +62 -0
  554. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/bab.hpp +91 -0
  555. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/dfs.cpp +62 -0
  556. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/dfs.hpp +84 -0
  557. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/options.cpp +72 -0
  558. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/options.hpp +49 -0
  559. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/bab.cpp +178 -0
  560. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/bab.hh +203 -0
  561. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/dfs.cpp +176 -0
  562. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/dfs.hh +195 -0
  563. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/engine.cpp +118 -0
  564. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/engine.hh +418 -0
  565. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/path.hh +477 -0
  566. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/restart.cpp +167 -0
  567. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/parallel/restart.hh +73 -0
  568. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/restart.cpp +62 -0
  569. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/restart.hpp +88 -0
  570. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/sequential/bab.hh +177 -0
  571. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/sequential/dfs.hh +176 -0
  572. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/sequential/path.hh +411 -0
  573. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/sequential/restart.hh +89 -0
  574. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/statistics.hpp +70 -0
  575. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/stop.cpp +83 -0
  576. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/stop.hpp +137 -0
  577. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/support.hh +91 -0
  578. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/search/worker.hh +202 -0
  579. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set.hh +1144 -0
  580. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/array-traits.hpp +86 -0
  581. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/array.cpp +219 -0
  582. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/array.hpp +64 -0
  583. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch.cpp +128 -0
  584. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch.hh +438 -0
  585. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/post-val.hpp +107 -0
  586. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/post-view.bs +109 -0
  587. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/post-view.cpp +370 -0
  588. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/select-val.hpp +204 -0
  589. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/branch/select-view.hpp +306 -0
  590. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/cardinality.cpp +65 -0
  591. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex.cpp +60 -0
  592. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex.hh +107 -0
  593. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex/conv.cpp +97 -0
  594. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex/conv.hpp +67 -0
  595. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex/hull.cpp +116 -0
  596. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/convex/hull.hpp +68 -0
  597. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/distinct.cpp +56 -0
  598. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/distinct.hh +79 -0
  599. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/distinct/atmostOne.cpp +162 -0
  600. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/distinct/atmostOne.hpp +66 -0
  601. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/dom.cpp +300 -0
  602. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element.cpp +255 -0
  603. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element.hh +218 -0
  604. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element/disjoint.hpp +324 -0
  605. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element/inter.hpp +308 -0
  606. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element/union.hpp +342 -0
  607. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/element/unionConst.hpp +293 -0
  608. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/exception.hpp +146 -0
  609. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/exec.cpp +58 -0
  610. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int.cpp +191 -0
  611. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int.hh +459 -0
  612. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/card.hpp +93 -0
  613. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/channel-bool.hpp +282 -0
  614. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/channel-int.hpp +158 -0
  615. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/match.hpp +199 -0
  616. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/minmax.hpp +645 -0
  617. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/int/weights.hpp +353 -0
  618. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/limits.hpp +62 -0
  619. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/precede.cpp +74 -0
  620. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/precede.hh +115 -0
  621. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/precede/single.hpp +255 -0
  622. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-cvc.cpp +66 -0
  623. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-cvv.cpp +65 -0
  624. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-vcc.cpp +168 -0
  625. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-vcv.cpp +166 -0
  626. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-const-vvc.cpp +63 -0
  627. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-singleton.cpp +115 -0
  628. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op-ternary.cpp +60 -0
  629. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op.cpp +105 -0
  630. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op.hh +297 -0
  631. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/common.hpp +619 -0
  632. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/inter.hpp +389 -0
  633. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/partition.hpp +164 -0
  634. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-compl-cvc.cpp +58 -0
  635. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-compl-cvv.cpp +54 -0
  636. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-compl-vvc.cpp +57 -0
  637. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-compl.cpp +54 -0
  638. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-nocompl-cvc.cpp +55 -0
  639. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-nocompl-cvv.cpp +54 -0
  640. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-nocompl-vvc.cpp +54 -0
  641. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post-nocompl.cpp +54 -0
  642. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/post.hpp +266 -0
  643. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/subofunion.hpp +166 -0
  644. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/superofinter.hpp +167 -0
  645. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel-op/union.hpp +319 -0
  646. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel.cpp +232 -0
  647. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel.hh +322 -0
  648. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/common.hpp +125 -0
  649. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/eq.hpp +116 -0
  650. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/lq.hpp +417 -0
  651. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/nosubset.hpp +104 -0
  652. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/nq.hpp +160 -0
  653. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/re-eq.hpp +152 -0
  654. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/re-lq.hpp +182 -0
  655. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/re-subset.hpp +146 -0
  656. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/rel/subset.hpp +96 -0
  657. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence.cpp +64 -0
  658. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence.hh +115 -0
  659. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/common.hpp +100 -0
  660. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/seq-u.cpp +145 -0
  661. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/seq-u.hpp +79 -0
  662. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/seq.cpp +76 -0
  663. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/sequence/seq.hpp +69 -0
  664. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp.hpp +634 -0
  665. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/delta.hpp +78 -0
  666. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/integerset.cpp +348 -0
  667. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/integerset.hpp +426 -0
  668. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/iter.hpp +63 -0
  669. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/set.cpp +142 -0
  670. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/set.hpp +531 -0
  671. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var-imp/set.vis +197 -0
  672. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var/print.hpp +49 -0
  673. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var/set.cpp +111 -0
  674. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/var/set.hpp +254 -0
  675. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view.hpp +1142 -0
  676. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/cached.hpp +399 -0
  677. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/complement.hpp +556 -0
  678. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/const.hpp +723 -0
  679. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/print.hpp +140 -0
  680. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/set.hpp +263 -0
  681. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/set/view/singleton.hpp +402 -0
  682. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support.hh +135 -0
  683. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/auto-link.hpp +73 -0
  684. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/bitset-base.hpp +379 -0
  685. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/bitset.hpp +81 -0
  686. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/block-allocator.hpp +169 -0
  687. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/cast.hpp +52 -0
  688. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/config.hpp.in +109 -0
  689. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/dynamic-array.hpp +140 -0
  690. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/dynamic-queue.hpp +156 -0
  691. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/dynamic-stack.hpp +186 -0
  692. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/exception.cpp +65 -0
  693. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/exception.hpp +102 -0
  694. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/heap.cpp +49 -0
  695. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/heap.hpp +593 -0
  696. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/int-type.hpp +172 -0
  697. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/macros.hpp +103 -0
  698. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/marked-pointer.hpp +79 -0
  699. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/random.hpp +128 -0
  700. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/sort.hpp +268 -0
  701. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/static-stack.hpp +148 -0
  702. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread.hpp +272 -0
  703. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/none.hpp +87 -0
  704. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/pthreads.cpp +66 -0
  705. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/pthreads.hpp +142 -0
  706. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/thread.cpp +72 -0
  707. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/thread.hpp +114 -0
  708. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/windows.cpp +68 -0
  709. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/thread/windows.hpp +108 -0
  710. data/ext/libgecode3/vendor/gecode-3.7.3/gecode/support/timer.hpp +103 -0
  711. data/ext/libgecode3/vendor/gecode-3.7.3/install-sh +323 -0
  712. data/ext/libgecode3/vendor/gecode-3.7.3/misc/allexamples.perl +60 -0
  713. data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/back.png +0 -0
  714. data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/footer.html +3 -0
  715. data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/gecode-logo-100.png +0 -0
  716. data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/header.html +66 -0
  717. data/ext/libgecode3/vendor/gecode-3.7.3/misc/doxygen/stylesheet.css +468 -0
  718. data/ext/libgecode3/vendor/gecode-3.7.3/misc/fixautoheader.perl +55 -0
  719. data/ext/libgecode3/vendor/gecode-3.7.3/misc/fixmanifest.perl +84 -0
  720. data/ext/libgecode3/vendor/gecode-3.7.3/misc/fixproperties.sh +98 -0
  721. data/ext/libgecode3/vendor/gecode-3.7.3/misc/gecode-logo.ico +0 -0
  722. data/ext/libgecode3/vendor/gecode-3.7.3/misc/genbranch.perl +310 -0
  723. data/ext/libgecode3/vendor/gecode-3.7.3/misc/genchangelog.perl +249 -0
  724. data/ext/libgecode3/vendor/gecode-3.7.3/misc/gencurrentchangelog.perl +191 -0
  725. data/ext/libgecode3/vendor/gecode-3.7.3/misc/genlcovmakefile.perl +148 -0
  726. data/ext/libgecode3/vendor/gecode-3.7.3/misc/genlicense.perl +121 -0
  727. data/ext/libgecode3/vendor/gecode-3.7.3/misc/genrc.perl +236 -0
  728. data/ext/libgecode3/vendor/gecode-3.7.3/misc/genstatistics.perl +178 -0
  729. data/ext/libgecode3/vendor/gecode-3.7.3/misc/gentxtchangelog.perl +198 -0
  730. data/ext/libgecode3/vendor/gecode-3.7.3/misc/genvarimp.perl +877 -0
  731. data/ext/libgecode3/vendor/gecode-3.7.3/misc/genxcodeproj.perl +144 -0
  732. data/ext/libgecode3/vendor/gecode-3.7.3/misc/getrevision.perl +47 -0
  733. data/ext/libgecode3/vendor/gecode-3.7.3/misc/makedepend.perl +85 -0
  734. data/ext/libgecode3/vendor/gecode-3.7.3/misc/svn-ignore-root.txt +43 -0
  735. data/ext/libgecode3/vendor/gecode-3.7.3/misc/svn-ignore.txt +18 -0
  736. data/ext/libgecode3/vendor/gecode-3.7.3/test/afc.cpp +143 -0
  737. data/ext/libgecode3/vendor/gecode-3.7.3/test/array.cpp +277 -0
  738. data/ext/libgecode3/vendor/gecode-3.7.3/test/assign.cpp +278 -0
  739. data/ext/libgecode3/vendor/gecode-3.7.3/test/assign.hh +119 -0
  740. data/ext/libgecode3/vendor/gecode-3.7.3/test/assign/bool.cpp +61 -0
  741. data/ext/libgecode3/vendor/gecode-3.7.3/test/assign/int.cpp +70 -0
  742. data/ext/libgecode3/vendor/gecode-3.7.3/test/assign/set.cpp +72 -0
  743. data/ext/libgecode3/vendor/gecode-3.7.3/test/branch.cpp +504 -0
  744. data/ext/libgecode3/vendor/gecode-3.7.3/test/branch.hh +119 -0
  745. data/ext/libgecode3/vendor/gecode-3.7.3/test/branch/bool.cpp +61 -0
  746. data/ext/libgecode3/vendor/gecode-3.7.3/test/branch/int.cpp +70 -0
  747. data/ext/libgecode3/vendor/gecode-3.7.3/test/branch/set.cpp +72 -0
  748. data/ext/libgecode3/vendor/gecode-3.7.3/test/int.cpp +655 -0
  749. data/ext/libgecode3/vendor/gecode-3.7.3/test/int.hh +353 -0
  750. data/ext/libgecode3/vendor/gecode-3.7.3/test/int.hpp +314 -0
  751. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/arithmetic.cpp +772 -0
  752. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/basic.cpp +82 -0
  753. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/bin-packing.cpp +237 -0
  754. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/bool.cpp +500 -0
  755. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/channel.cpp +234 -0
  756. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/circuit.cpp +359 -0
  757. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/count.cpp +410 -0
  758. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/cumulative.cpp +560 -0
  759. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/cumulatives.cpp +276 -0
  760. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/distinct.cpp +248 -0
  761. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/dom.cpp +174 -0
  762. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/element.cpp +602 -0
  763. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/exec.cpp +150 -0
  764. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/extensional.cpp +571 -0
  765. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/gcc.cpp +320 -0
  766. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/linear.cpp +394 -0
  767. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/member.cpp +138 -0
  768. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-arithmetic.cpp +368 -0
  769. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-bool.cpp +4344 -0
  770. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-count.cpp +295 -0
  771. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-lin.cpp +2179 -0
  772. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/mm-rel.cpp +136 -0
  773. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/no-overlap.cpp +259 -0
  774. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/nvalues.cpp +241 -0
  775. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/precede.cpp +115 -0
  776. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/rel.cpp +568 -0
  777. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/sequence.cpp +168 -0
  778. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/sorted.cpp +165 -0
  779. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/unary.cpp +327 -0
  780. data/ext/libgecode3/vendor/gecode-3.7.3/test/int/unshare.cpp +109 -0
  781. data/ext/libgecode3/vendor/gecode-3.7.3/test/search.cpp +487 -0
  782. data/ext/libgecode3/vendor/gecode-3.7.3/test/set.cpp +638 -0
  783. data/ext/libgecode3/vendor/gecode-3.7.3/test/set.hh +362 -0
  784. data/ext/libgecode3/vendor/gecode-3.7.3/test/set.hpp +121 -0
  785. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/construct.cpp +225 -0
  786. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/convex.cpp +139 -0
  787. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/distinct.cpp +116 -0
  788. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/dom.cpp +346 -0
  789. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/element.cpp +397 -0
  790. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/exec.cpp +86 -0
  791. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/int.cpp +532 -0
  792. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/mm-set.cpp +4532 -0
  793. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/precede.cpp +136 -0
  794. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/rel-op-const.cpp +368 -0
  795. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/rel-op.cpp +504 -0
  796. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/rel.cpp +157 -0
  797. data/ext/libgecode3/vendor/gecode-3.7.3/test/set/sequence.cpp +133 -0
  798. data/ext/libgecode3/vendor/gecode-3.7.3/test/test.cpp +281 -0
  799. data/ext/libgecode3/vendor/gecode-3.7.3/test/test.hh +161 -0
  800. data/ext/libgecode3/vendor/gecode-3.7.3/test/test.hpp +76 -0
  801. data/ext/libgecode3/vendor/gecode-3.7.3/tools/flatzinc/fz.cpp +93 -0
  802. data/ext/libgecode3/vendor/gecode-3.7.3/tools/flatzinc/mzn-gecode.bat.in +41 -0
  803. data/ext/libgecode3/vendor/gecode-3.7.3/tools/flatzinc/mzn-gecode.in +41 -0
  804. data/lib/dep-selector-libgecode.rb +15 -0
  805. data/lib/dep-selector-libgecode/version.rb +3 -0
  806. metadata +878 -0
@@ -0,0 +1,295 @@
1
+ /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
2
+ /*
3
+ * Main authors:
4
+ * Christian Schulte <schulte@gecode.org>
5
+ *
6
+ * Copyright:
7
+ * Christian Schulte, 2008
8
+ *
9
+ * Last modified:
10
+ * $Date: 2010-04-08 20:35:31 +1000 (Thu, 08 Apr 2010) $ by $Author: schulte $
11
+ * $Revision: 10684 $
12
+ *
13
+ * This file is part of Gecode, the generic constraint
14
+ * development environment:
15
+ * http://www.gecode.org
16
+ *
17
+ * Permission is hereby granted, free of charge, to any person obtaining
18
+ * a copy of this software and associated documentation files (the
19
+ * "Software"), to deal in the Software without restriction, including
20
+ * without limitation the rights to use, copy, modify, merge, publish,
21
+ * distribute, sublicense, and/or sell copies of the Software, and to
22
+ * permit persons to whom the Software is furnished to do so, subject to
23
+ * the following conditions:
24
+ *
25
+ * The above copyright notice and this permission notice shall be
26
+ * included in all copies or substantial portions of the Software.
27
+ *
28
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
+ *
36
+ */
37
+
38
+ #include "test/int.hh"
39
+
40
+ #include <gecode/minimodel.hh>
41
+
42
+ namespace Test { namespace Int {
43
+
44
+ /// %Tests for minimal modelling constraints (counting)
45
+ namespace MiniModelCount {
46
+
47
+ /// Expand relation to abbreviation
48
+ std::string expand(Gecode::IntRelType irt) {
49
+ switch (irt) {
50
+ case Gecode::IRT_EQ: return "Exactly";
51
+ case Gecode::IRT_LQ: return "AtMost";
52
+ case Gecode::IRT_GQ: return "AtLeast";
53
+ default: GECODE_NEVER;
54
+ }
55
+ GECODE_NEVER;
56
+ return "";
57
+ }
58
+
59
+ /**
60
+ * \defgroup TaskTestIntMiniModelCount Minimal modelling constraints (counting)
61
+ * \ingroup TaskTestInt
62
+ */
63
+ //@{
64
+ /// %Test number of equal integers equal to integer
65
+ class IntInt : public Test {
66
+ protected:
67
+ /// Integer relation type to propagate
68
+ Gecode::IntRelType irt;
69
+ public:
70
+ /// Create and register test
71
+ IntInt(Gecode::IntRelType irt0)
72
+ : Test("MiniModel::"+expand(irt0)+"::Int::Int",4,-2,2), irt(irt0) {}
73
+ /// %Test whether \a x is solution
74
+ virtual bool solution(const Assignment& x) const {
75
+ int m = 0;
76
+ for (int i=x.size(); i--; )
77
+ if (x[i] == 0)
78
+ m++;
79
+ return cmp(m,irt,2);
80
+ }
81
+ /// Post constraint on \a x
82
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
83
+ switch (irt) {
84
+ case Gecode::IRT_EQ:
85
+ Gecode::exactly(home,x,0,2); break;
86
+ case Gecode::IRT_LQ:
87
+ Gecode::atmost(home,x,0,2); break;
88
+ case Gecode::IRT_GQ:
89
+ Gecode::atleast(home,x,0,2); break;
90
+ default: GECODE_NEVER;
91
+ }
92
+ }
93
+ };
94
+
95
+ /// %Test number of equal integers equal to integer variable
96
+ class IntVar : public Test {
97
+ protected:
98
+ /// Integer relation type to propagate
99
+ Gecode::IntRelType irt;
100
+ public:
101
+ /// Create and register test
102
+ IntVar(Gecode::IntRelType irt0)
103
+ : Test("MiniModel::"+expand(irt0)+"::Int::Var",5,-2,2), irt(irt0) {}
104
+ /// %Test whether \a x is solution
105
+ virtual bool solution(const Assignment& x) const {
106
+ int m = 0;
107
+ for (int i=0; i<4; i++)
108
+ if (x[i] == 0)
109
+ m++;
110
+ return cmp(m,irt,x[4]);
111
+ }
112
+ /// Post constraint on \a x
113
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
114
+ Gecode::IntVarArgs y(4);
115
+ for (int i=0; i<4; i++)
116
+ y[i]=x[i];
117
+ switch (irt) {
118
+ case Gecode::IRT_EQ:
119
+ Gecode::exactly(home,y,0,x[4]); break;
120
+ case Gecode::IRT_LQ:
121
+ Gecode::atmost(home,y,0,x[4]); break;
122
+ case Gecode::IRT_GQ:
123
+ Gecode::atleast(home,y,0,x[4]); break;
124
+ default: GECODE_NEVER;
125
+ }
126
+ }
127
+ };
128
+
129
+ /// %Test number of equal variables equal to integer variable
130
+ class VarVar : public Test {
131
+ protected:
132
+ /// Integer relation type to propagate
133
+ Gecode::IntRelType irt;
134
+ public:
135
+ /// Create and register test
136
+ VarVar(Gecode::IntRelType irt0)
137
+ : Test("MiniModel::"+expand(irt0)+"::Var::Var",5,-2,2), irt(irt0) {}
138
+ /// %Test whether \a x is solution
139
+ virtual bool solution(const Assignment& x) const {
140
+ int m = 0;
141
+ for (int i=0; i<3; i++)
142
+ if (x[i] == x[3])
143
+ m++;
144
+ return cmp(m,irt,x[4]);
145
+ }
146
+ /// Post constraint on \a x
147
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
148
+ Gecode::IntVarArgs y(3);
149
+ for (int i=0; i<3; i++)
150
+ y[i]=x[i];
151
+ switch (irt) {
152
+ case Gecode::IRT_EQ:
153
+ Gecode::exactly(home,y,x[3],x[4]); break;
154
+ case Gecode::IRT_LQ:
155
+ Gecode::atmost(home,y,x[3],x[4]); break;
156
+ case Gecode::IRT_GQ:
157
+ Gecode::atleast(home,y,x[3],x[4]); break;
158
+ default: GECODE_NEVER;
159
+ }
160
+ }
161
+ };
162
+
163
+ /// %Test number of equal variables equal to integer
164
+ class VarInt : public Test {
165
+ protected:
166
+ /// Integer relation type to propagate
167
+ Gecode::IntRelType irt;
168
+ public:
169
+ /// Create and register test
170
+ VarInt(Gecode::IntRelType irt0)
171
+ : Test("MiniModel::"+expand(irt0)+"::Var::Int",4,-2,2), irt(irt0) {}
172
+ /// %Test whether \a x is solution
173
+ virtual bool solution(const Assignment& x) const {
174
+ int m = 0;
175
+ for (int i=0; i<3; i++)
176
+ if (x[i] == x[3])
177
+ m++;
178
+ return cmp(m,irt,2);
179
+ }
180
+ /// Post constraint on \a x
181
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
182
+ Gecode::IntVarArgs y(3);
183
+ for (int i=0; i<3; i++)
184
+ y[i]=x[i];
185
+ switch (irt) {
186
+ case Gecode::IRT_EQ:
187
+ Gecode::exactly(home,y,x[3],2); break;
188
+ case Gecode::IRT_LQ:
189
+ Gecode::atmost(home,y,x[3],2); break;
190
+ case Gecode::IRT_GQ:
191
+ Gecode::atleast(home,y,x[3],2); break;
192
+ default: GECODE_NEVER;
193
+ }
194
+ }
195
+ };
196
+
197
+ Gecode::IntArgs ints(4, 1,0,3,2);
198
+
199
+ /// %Test number of several equal integers equal to integer
200
+ class IntArrayInt : public Test {
201
+ protected:
202
+ /// Integer relation type to propagate
203
+ Gecode::IntRelType irt;
204
+ public:
205
+ /// Create and register test
206
+ IntArrayInt(Gecode::IntRelType irt0)
207
+ : Test("MiniModel::"+expand(irt0)+"::IntArray::Int",5,-2,2),
208
+ irt(irt0) {}
209
+ /// %Test whether \a x is solution
210
+ virtual bool solution(const Assignment& x) const {
211
+ int m = 0;
212
+ for (int i=0; i<4; i++)
213
+ if (x[i] == ints[i])
214
+ m++;
215
+ return cmp(m,irt,2);
216
+ }
217
+ /// Post constraint on \a x
218
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
219
+ Gecode::IntVarArgs y(4);
220
+ for (int i=0; i<4; i++)
221
+ y[i]=x[i];
222
+ switch (irt) {
223
+ case Gecode::IRT_EQ:
224
+ Gecode::exactly(home,y,ints,2); break;
225
+ case Gecode::IRT_LQ:
226
+ Gecode::atmost(home,y,ints,2); break;
227
+ case Gecode::IRT_GQ:
228
+ Gecode::atleast(home,y,ints,2); break;
229
+ default: GECODE_NEVER;
230
+ }
231
+ }
232
+ };
233
+
234
+ /// %Test number of several equal integers equal to integer variable
235
+ class IntArrayVar : public Test {
236
+ protected:
237
+ /// Integer relation type to propagate
238
+ Gecode::IntRelType irt;
239
+ public:
240
+ /// Create and register test
241
+ IntArrayVar(Gecode::IntRelType irt0)
242
+ : Test("MiniModel::"+expand(irt0)+"::IntArray::Var",5,-2,2),
243
+ irt(irt0) {}
244
+ /// %Test whether \a x is solution
245
+ virtual bool solution(const Assignment& x) const {
246
+ int m = 0;
247
+ for (int i=0; i<4; i++)
248
+ if (x[i] == ints[i])
249
+ m++;
250
+ return cmp(m,irt,x[4]);
251
+ }
252
+ /// Post constraint on \a x
253
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
254
+ Gecode::IntVarArgs y(4);
255
+ for (int i=0; i<4; i++)
256
+ y[i]=x[i];
257
+ switch (irt) {
258
+ case Gecode::IRT_EQ:
259
+ Gecode::exactly(home,y,ints,x[4]); break;
260
+ case Gecode::IRT_LQ:
261
+ Gecode::atmost(home,y,ints,x[4]); break;
262
+ case Gecode::IRT_GQ:
263
+ Gecode::atleast(home,y,ints,x[4]); break;
264
+ default: GECODE_NEVER;
265
+ }
266
+ }
267
+ };
268
+
269
+ /// Help class to create and register tests
270
+ class Create {
271
+ public:
272
+ /// Perform creation and registration
273
+ Create(void) {
274
+ for (IntRelTypes irts; irts(); ++irts)
275
+ if ((irts.irt() == Gecode::IRT_EQ) ||
276
+ (irts.irt() == Gecode::IRT_LQ) ||
277
+ (irts.irt() == Gecode::IRT_GQ)) {
278
+ (void) new IntInt(irts.irt());
279
+ (void) new IntVar(irts.irt());
280
+ (void) new VarVar(irts.irt());
281
+ (void) new VarInt(irts.irt());
282
+ (void) new IntArrayInt(irts.irt());
283
+ (void) new IntArrayVar(irts.irt());
284
+ }
285
+ }
286
+ };
287
+
288
+ Create c;
289
+ //@}
290
+
291
+ }
292
+
293
+ }}
294
+
295
+ // STATISTICS: test-minimodel
@@ -0,0 +1,2179 @@
1
+ /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
2
+ /*
3
+ * Main authors:
4
+ * Christian Schulte <schulte@gecode.org>
5
+ *
6
+ * Copyright:
7
+ * Christian Schulte, 2008
8
+ *
9
+ * Last modified:
10
+ * $Date: 2010-05-08 21:09:21 +1000 (Sat, 08 May 2010) $ by $Author: tack $
11
+ * $Revision: 10907 $
12
+ *
13
+ * This file is part of Gecode, the generic constraint
14
+ * development environment:
15
+ * http://www.gecode.org
16
+ *
17
+ * Permission is hereby granted, free of charge, to any person obtaining
18
+ * a copy of this software and associated documentation files (the
19
+ * "Software"), to deal in the Software without restriction, including
20
+ * without limitation the rights to use, copy, modify, merge, publish,
21
+ * distribute, sublicense, and/or sell copies of the Software, and to
22
+ * permit persons to whom the Software is furnished to do so, subject to
23
+ * the following conditions:
24
+ *
25
+ * The above copyright notice and this permission notice shall be
26
+ * included in all copies or substantial portions of the Software.
27
+ *
28
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
+ *
36
+ */
37
+
38
+ #include "test/int.hh"
39
+
40
+ #include <gecode/minimodel.hh>
41
+
42
+ namespace Test { namespace Int {
43
+
44
+ /// %Tests for minimal modelling constraints (linear)
45
+ namespace MiniModelLin {
46
+
47
+ /// Linear opcode
48
+ enum LinOpcode {
49
+ LO_ACE, ///< Add integer and expression
50
+ LO_AEC, ///< Add expression and integer
51
+ LO_AEE, ///< Add expressions
52
+ LO_SCE, ///< Subtract integer and expression
53
+ LO_SEC, ///< Subtract expression and integer
54
+ LO_SEE, ///< Subtract expressions
55
+ LO_SE, ///< Unary subtraction
56
+ LO_MCE, ///< Multiply constant and expression
57
+ LO_MEC, ///< Multiply constant and expression
58
+ LO_HLT ///< Stop execution
59
+ };
60
+
61
+ /// Type for representing a linear instruction
62
+ class LinInstr {
63
+ public:
64
+ LinOpcode o; ///< Which instruction to execute
65
+ unsigned char x, y, z; ///< Instruction arguments, \a y is destination (or \a z)
66
+ int c; ///< Numerical constant
67
+ };
68
+
69
+ /// Evaluate linear instructions
70
+ template<class Expr>
71
+ Expr
72
+ eval(const LinInstr* pc, Expr reg[]) {
73
+ while (true) {
74
+ switch (pc->o) {
75
+ case LO_ACE: reg[pc->y] = pc->c + reg[pc->x]; break;
76
+ case LO_AEC: reg[pc->y] = reg[pc->x] + pc->c; break;
77
+ case LO_AEE: reg[pc->z] = reg[pc->x] + reg[pc->y]; break;
78
+ case LO_SCE: reg[pc->y] = pc->c - reg[pc->x]; break;
79
+ case LO_SEC: reg[pc->y] = reg[pc->x] - pc->c; break;
80
+ case LO_SEE: reg[pc->z] = reg[pc->x] - reg[pc->y]; break;
81
+ case LO_SE: reg[pc->y] = -reg[pc->x]; break;
82
+ case LO_MCE: reg[pc->y] = pc->c * reg[pc->x]; break;
83
+ case LO_MEC: reg[pc->y] = reg[pc->x] * pc->c; break;
84
+ case LO_HLT: return reg[pc->x];
85
+ default: GECODE_NEVER;
86
+ }
87
+ pc++;
88
+ }
89
+ GECODE_NEVER;
90
+ }
91
+
92
+ /**
93
+ * \defgroup TaskTestIntMiniModelLin Minimal modeling constraints (linear constraints)
94
+ * \ingroup TaskTestInt
95
+ */
96
+ //@{
97
+ /// %Test linear expressions over integer variables
98
+ class LinExprInt : public Test {
99
+ protected:
100
+ /// Linear instruction sequence
101
+ const LinInstr* lis;
102
+ public:
103
+ /// Create and register test
104
+ LinExprInt(const LinInstr* lis0, const std::string& s)
105
+ : Test("MiniModel::LinExpr::Int::"+s,4,-3,3), lis(lis0) {
106
+ testfix = false;
107
+ }
108
+ /// %Test whether \a x is solution
109
+ virtual bool solution(const Assignment& x) const {
110
+ int reg[3] = {x[0],x[1],x[2]};
111
+ return eval(lis, reg) == x[3];
112
+ }
113
+ /// Post constraint on \a x
114
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
115
+ using namespace Gecode;
116
+ Gecode::LinExpr reg[3] = {x[0],x[1],x[2]};
117
+ rel(home, x[3], IRT_EQ, Gecode::expr(home, eval(lis,reg)));
118
+ }
119
+ };
120
+
121
+ /// %Test linear expressions over Boolean variables
122
+ class LinExprBool : public Test {
123
+ protected:
124
+ /// Linear instruction sequence
125
+ const LinInstr* lis;
126
+ public:
127
+ /// Create and register test
128
+ LinExprBool(const LinInstr* lis0, const std::string& s)
129
+ : Test("MiniModel::LinExpr::Bool::"+s,4,-3,3), lis(lis0) {
130
+ testfix = false;
131
+ }
132
+ /// %Test whether \a x is solution
133
+ virtual bool solution(const Assignment& x) const {
134
+ for (int i=3; i--; )
135
+ if ((x[i] < 0) || (x[i] > 1))
136
+ return false;
137
+ int reg[3] = {x[0],x[1],x[2]};
138
+ return eval(lis, reg) == x[3];
139
+ }
140
+ /// Post constraint on \a x
141
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
142
+ using namespace Gecode;
143
+ Gecode::LinExpr reg[3] = {
144
+ channel(home,x[0]),channel(home,x[1]),channel(home,x[2])
145
+ };
146
+ rel(home, x[3], IRT_EQ, Gecode::expr(home, eval(lis,reg)));
147
+ }
148
+ };
149
+
150
+ /// %Test linear expressions over integer and Boolean variables
151
+ class LinExprMixed : public Test {
152
+ protected:
153
+ /// Linear instruction sequence
154
+ const LinInstr* lis;
155
+ public:
156
+ /// Create and register test
157
+ LinExprMixed(const LinInstr* lis0, const std::string& s)
158
+ : Test("MiniModel::LinExpr::Mixed::"+s,4,-3,3), lis(lis0) {
159
+ testfix = false;
160
+ }
161
+ /// %Test whether \a x is solution
162
+ virtual bool solution(const Assignment& x) const {
163
+ if ((x[2] < 0) || (x[2] > 1))
164
+ return false;
165
+ int reg[3] = {x[0],x[1],x[2]};
166
+ return eval(lis, reg) == x[3];
167
+ }
168
+ /// Post constraint on \a x
169
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
170
+ using namespace Gecode;
171
+ Gecode::LinExpr reg[3] = {
172
+ x[0],x[1],channel(home,x[2])
173
+ };
174
+ rel(home, x[3], IRT_EQ, Gecode::expr(home, eval(lis,reg)));
175
+ }
176
+ };
177
+
178
+
179
+ /// %Test linear relations over integer variables
180
+ class LinRelInt : public Test {
181
+ protected:
182
+ /// Linear instruction sequence for left hand side
183
+ const LinInstr* l_lis;
184
+ /// Linear instruction sequence for right hand side
185
+ const LinInstr* r_lis;
186
+ /// Integer relation type to propagate
187
+ Gecode::IntRelType irt;
188
+ public:
189
+ /// Create and register test
190
+ LinRelInt(const LinInstr* l_lis0, const LinInstr* r_lis0,
191
+ Gecode::IntRelType irt0, const std::string& s)
192
+ : Test("MiniModel::LinRel::Int::"+s+"::"+str(irt0),3,-3,3,true),
193
+ l_lis(l_lis0), r_lis(r_lis0), irt(irt0) {
194
+ testfix = false;
195
+ }
196
+ /// %Test whether \a x is solution
197
+ virtual bool solution(const Assignment& x) const {
198
+ int l_reg[3] = {x[0],x[1],x[2]};
199
+ int r_reg[3] = {x[0],x[1],x[2]};
200
+ return cmp(eval(l_lis,l_reg),irt,eval(r_lis,r_reg));
201
+ }
202
+ /// Post constraint on \a x
203
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
204
+ using namespace Gecode;
205
+ Gecode::LinExpr l_reg[3] = {x[0],x[1],x[2]};
206
+ Gecode::LinExpr r_reg[3] = {x[0],x[1],x[2]};
207
+ switch (irt) {
208
+ case IRT_EQ:
209
+ {
210
+ IntVar x = Gecode::expr(home,eval(l_lis,l_reg));
211
+ IntVar y = Gecode::expr(home,eval(r_lis,r_reg));
212
+ IntArgs a(2, 1,-1);
213
+ IntVarArgs xy(2); xy[0]=x; xy[1]=y;
214
+ Gecode::rel(home, 0 == sum(a,xy));
215
+ }
216
+ break;
217
+ case IRT_NQ:
218
+ Gecode::rel(home, eval(l_lis,l_reg) - eval(r_lis,r_reg) != 0);
219
+ break;
220
+ case IRT_LQ:
221
+ Gecode::rel(home, !(eval(l_lis,l_reg) > eval(r_lis,r_reg)));
222
+ break;
223
+ case IRT_LE:
224
+ Gecode::rel(home, eval(l_lis,l_reg) < eval(r_lis,r_reg));
225
+ break;
226
+ case IRT_GQ:
227
+ Gecode::rel(home, eval(l_lis,l_reg) >= eval(r_lis,r_reg));
228
+ break;
229
+ case IRT_GR:
230
+ Gecode::rel(home, !(eval(l_lis,l_reg) <= eval(r_lis,r_reg)));
231
+ break;
232
+ default: GECODE_NEVER;
233
+ }
234
+ }
235
+ /// Post constraint on \a x for \a b
236
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x,
237
+ Gecode::BoolVar b) {
238
+ using namespace Gecode;
239
+ Gecode::LinExpr l_reg[3] = {x[0],x[1],x[2]};
240
+ Gecode::LinExpr r_reg[3] = {x[0],x[1],x[2]};
241
+ switch (irt) {
242
+ case IRT_EQ:
243
+ rel(home, Gecode::expr(home,
244
+ (eval(l_lis,l_reg)==eval(r_lis,r_reg))),
245
+ IRT_EQ, b);
246
+ break;
247
+ case IRT_NQ:
248
+ Gecode::rel(home,
249
+ (eval(l_lis,l_reg)!=eval(r_lis,r_reg)) == b);
250
+ break;
251
+ case IRT_LQ:
252
+ Gecode::rel(home,
253
+ !((eval(l_lis,l_reg)<=eval(r_lis,r_reg))^b));
254
+ break;
255
+ case IRT_LE:
256
+ rel(home, Gecode::expr(home,
257
+ (eval(l_lis,l_reg)<eval(r_lis,r_reg))),
258
+ IRT_EQ, b);
259
+ break;
260
+ case IRT_GQ:
261
+ Gecode::rel(home,
262
+ (eval(l_lis,l_reg)>=eval(r_lis,r_reg)) == b);
263
+ break;
264
+ case IRT_GR:
265
+ Gecode::rel(home,
266
+ !((eval(l_lis,l_reg)>eval(r_lis,r_reg))^b));
267
+ break;
268
+ default: GECODE_NEVER;
269
+ }
270
+ }
271
+ };
272
+
273
+ /// %Test linear relations over Boolean variables
274
+ class LinRelBool : public Test {
275
+ protected:
276
+ /// Linear instruction sequence for left hand side
277
+ const LinInstr* l_lis;
278
+ /// Linear instruction sequence for right hand side
279
+ const LinInstr* r_lis;
280
+ /// Integer relation type to propagate
281
+ Gecode::IntRelType irt;
282
+ public:
283
+ /// Create and register test
284
+ LinRelBool(const LinInstr* l_lis0, const LinInstr* r_lis0,
285
+ Gecode::IntRelType irt0, const std::string& s)
286
+ : Test("MiniModel::LinRel::Bool::"+s+"::"+str(irt0),3,0,1,true),
287
+ l_lis(l_lis0), r_lis(r_lis0), irt(irt0) {
288
+ testfix = false;
289
+ }
290
+ /// %Test whether \a x is solution
291
+ virtual bool solution(const Assignment& x) const {
292
+ int l_reg[3] = {x[0],x[1],x[2]};
293
+ int r_reg[3] = {x[0],x[1],x[2]};
294
+ return cmp(eval(l_lis,l_reg),irt,eval(r_lis,r_reg));
295
+ }
296
+ /// Post constraint on \a x
297
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
298
+ using namespace Gecode;
299
+ BoolVarArgs y(3);
300
+ y[0] = channel(home,x[0]); y[1] = channel(home,x[1]);
301
+ y[2] = channel(home,x[2]);
302
+ Gecode::LinExpr l_reg[3] = {y[0],y[1],y[2]};
303
+ Gecode::LinExpr r_reg[3] = {y[0],y[1],y[2]};
304
+ switch (irt) {
305
+ case IRT_EQ:
306
+ {
307
+ IntVar x = Gecode::expr(home,eval(l_lis,l_reg));
308
+ IntVar y = Gecode::expr(home,eval(r_lis,r_reg));
309
+ IntArgs a(2, -2,2);
310
+ IntVarArgs xy(2); xy[0]=x; xy[1]=y;
311
+ Gecode::rel(home, 0 == sum(a,xy));
312
+ }
313
+ break;
314
+ case IRT_NQ:
315
+ Gecode::rel(home, eval(l_lis,l_reg) - eval(r_lis,r_reg) != 0);
316
+ break;
317
+ case IRT_LQ:
318
+ Gecode::rel(home, !(eval(l_lis,l_reg) > eval(r_lis,r_reg)));
319
+ break;
320
+ case IRT_LE:
321
+ Gecode::rel(home, eval(l_lis,l_reg) < eval(r_lis,r_reg));
322
+ break;
323
+ case IRT_GQ:
324
+ Gecode::rel(home, eval(l_lis,l_reg) >= eval(r_lis,r_reg));
325
+ break;
326
+ case IRT_GR:
327
+ Gecode::rel(home, !(eval(l_lis,l_reg) <= eval(r_lis,r_reg)));
328
+ break;
329
+ default: GECODE_NEVER;
330
+ }
331
+ }
332
+ /// Post constraint on \a x for \a b
333
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x,
334
+ Gecode::BoolVar b) {
335
+ using namespace Gecode;
336
+ BoolVarArgs y(3);
337
+ y[0] = channel(home,x[0]); y[1] = channel(home,x[1]);
338
+ y[2] = channel(home,x[2]);
339
+ Gecode::LinExpr l_reg[3] = {y[0],y[1],y[2]};
340
+ Gecode::LinExpr r_reg[3] = {y[0],y[1],y[2]};
341
+ switch (irt) {
342
+ case IRT_EQ:
343
+ rel(home, Gecode::expr(home,
344
+ (eval(l_lis,l_reg)==eval(r_lis,r_reg))),
345
+ IRT_EQ, b);
346
+ break;
347
+ case IRT_NQ:
348
+ Gecode::rel(home,
349
+ (eval(l_lis,l_reg)!=eval(r_lis,r_reg)) == b);
350
+ break;
351
+ case IRT_LQ:
352
+ Gecode::rel(home,
353
+ !((eval(l_lis,l_reg)<=eval(r_lis,r_reg))^b));
354
+ break;
355
+ case IRT_LE:
356
+ rel(home, Gecode::expr(home,
357
+ (eval(l_lis,l_reg)<eval(r_lis,r_reg))),
358
+ IRT_EQ, b);
359
+ break;
360
+ case IRT_GQ:
361
+ Gecode::rel(home,
362
+ (eval(l_lis,l_reg)>=eval(r_lis,r_reg)) == b);
363
+ break;
364
+ case IRT_GR:
365
+ Gecode::rel(home,
366
+ !((eval(l_lis,l_reg)>eval(r_lis,r_reg))^b));
367
+ break;
368
+ default: GECODE_NEVER;
369
+ }
370
+ }
371
+ };
372
+
373
+ /// %Test linear relations over integer and Boolean variables
374
+ class LinRelMixed : public Test {
375
+ protected:
376
+ /// Linear instruction sequence for left hand side
377
+ const LinInstr* l_lis;
378
+ /// Linear instruction sequence for right hand side
379
+ const LinInstr* r_lis;
380
+ /// Integer relation type to propagate
381
+ Gecode::IntRelType irt;
382
+ public:
383
+ /// Create and register test
384
+ LinRelMixed(const LinInstr* l_lis0, const LinInstr* r_lis0,
385
+ Gecode::IntRelType irt0, const std::string& s)
386
+ : Test("MiniModel::LinRel::Mixed::"+s+"::"+str(irt0),6,0,1,true),
387
+ l_lis(l_lis0), r_lis(r_lis0), irt(irt0) {
388
+ testfix = false;
389
+ }
390
+ /// %Test whether \a x is solution
391
+ virtual bool solution(const Assignment& x) const {
392
+ int l_reg[3] = {x[0],x[1],x[2]};
393
+ int r_reg[3] = {x[3],x[4],x[5]};
394
+ return cmp(eval(l_lis,l_reg),irt,eval(r_lis,r_reg));
395
+ }
396
+ /// Post constraint on \a x
397
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
398
+ using namespace Gecode;
399
+ Gecode::LinExpr l_reg[3] = {channel(home,x[0]),x[1],x[2]};
400
+ Gecode::LinExpr r_reg[3] = {channel(home,x[3]),x[4],
401
+ channel(home,x[5])};
402
+ switch (irt) {
403
+ case IRT_EQ:
404
+ Gecode::rel(home, 0 == eval(l_lis,l_reg) - eval(r_lis,r_reg));
405
+ break;
406
+ case IRT_NQ:
407
+ Gecode::rel(home, eval(l_lis,l_reg) - eval(r_lis,r_reg) != 0);
408
+ break;
409
+ case IRT_LQ:
410
+ Gecode::rel(home, !(eval(l_lis,l_reg) > eval(r_lis,r_reg)));
411
+ break;
412
+ case IRT_LE:
413
+ Gecode::rel(home, eval(l_lis,l_reg) < eval(r_lis,r_reg));
414
+ break;
415
+ case IRT_GQ:
416
+ Gecode::rel(home, eval(l_lis,l_reg) >= eval(r_lis,r_reg));
417
+ break;
418
+ case IRT_GR:
419
+ Gecode::rel(home, !(eval(l_lis,l_reg) <= eval(r_lis,r_reg)));
420
+ break;
421
+ default: GECODE_NEVER;
422
+ }
423
+ }
424
+ /// Post constraint on \a x for \a b
425
+ virtual void post(Gecode::Space& home, Gecode::IntVarArray& x,
426
+ Gecode::BoolVar b) {
427
+ using namespace Gecode;
428
+ Gecode::LinExpr l_reg[3] = {channel(home,x[0]),x[1],x[2]};
429
+ Gecode::LinExpr r_reg[3] = {channel(home,x[3]),x[4],
430
+ channel(home,x[5])};
431
+ switch (irt) {
432
+ case IRT_EQ:
433
+ rel(home, Gecode::expr(home,
434
+ (eval(l_lis,l_reg)==eval(r_lis,r_reg))),
435
+ IRT_EQ, b);
436
+ break;
437
+ case IRT_NQ:
438
+ rel(home, Gecode::expr(home,
439
+ (eval(l_lis,l_reg)!=eval(r_lis,r_reg))),
440
+ IRT_EQ, b);
441
+ break;
442
+ case IRT_LQ:
443
+ rel(home, Gecode::expr(home,
444
+ (eval(l_lis,l_reg)<=eval(r_lis,r_reg))),
445
+ IRT_EQ, b);
446
+ break;
447
+ case IRT_LE:
448
+ rel(home, Gecode::expr(home,
449
+ (eval(l_lis,l_reg)<eval(r_lis,r_reg))),
450
+ IRT_EQ, b);
451
+ break;
452
+ case IRT_GQ:
453
+ rel(home, Gecode::expr(home,
454
+ (eval(l_lis,l_reg)>=eval(r_lis,r_reg))),
455
+ IRT_EQ, b);
456
+ break;
457
+ case IRT_GR:
458
+ rel(home, Gecode::expr(home,
459
+ (eval(l_lis,l_reg)>eval(r_lis,r_reg))),
460
+ IRT_EQ, b);
461
+ break;
462
+ default: GECODE_NEVER;
463
+ }
464
+ }
465
+ };
466
+
467
+ const LinInstr li000[] = {
468
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
469
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
470
+ };
471
+ const LinInstr li001[] = {
472
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
473
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
474
+ };
475
+ const LinInstr li002[] = {
476
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
477
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
478
+ };
479
+ const LinInstr li003[] = {
480
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
481
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
482
+ };
483
+ const LinInstr li004[] = {
484
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
485
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
486
+ };
487
+ const LinInstr li005[] = {
488
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
489
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
490
+ };
491
+ const LinInstr li006[] = {
492
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
493
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
494
+ };
495
+ const LinInstr li007[] = {
496
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
497
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
498
+ };
499
+ const LinInstr li008[] = {
500
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
501
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
502
+ };
503
+ const LinInstr li009[] = {
504
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
505
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
506
+ };
507
+ const LinInstr li010[] = {
508
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
509
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
510
+ };
511
+ const LinInstr li011[] = {
512
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
513
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
514
+ };
515
+ const LinInstr li012[] = {
516
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
517
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
518
+ };
519
+ const LinInstr li013[] = {
520
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
521
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
522
+ };
523
+ const LinInstr li014[] = {
524
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
525
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
526
+ };
527
+ const LinInstr li015[] = {
528
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
529
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
530
+ };
531
+ const LinInstr li016[] = {
532
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
533
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
534
+ };
535
+ const LinInstr li017[] = {
536
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
537
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
538
+ };
539
+ const LinInstr li018[] = {
540
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
541
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
542
+ };
543
+ const LinInstr li019[] = {
544
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
545
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
546
+ };
547
+ const LinInstr li020[] = {
548
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
549
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
550
+ };
551
+ const LinInstr li021[] = {
552
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
553
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
554
+ };
555
+ const LinInstr li022[] = {
556
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
557
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
558
+ };
559
+ const LinInstr li023[] = {
560
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
561
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
562
+ };
563
+ const LinInstr li024[] = {
564
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
565
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
566
+ };
567
+ const LinInstr li025[] = {
568
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
569
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
570
+ };
571
+ const LinInstr li026[] = {
572
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
573
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
574
+ };
575
+ const LinInstr li027[] = {
576
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
577
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
578
+ };
579
+ const LinInstr li028[] = {
580
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
581
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
582
+ };
583
+ const LinInstr li029[] = {
584
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
585
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
586
+ };
587
+ const LinInstr li030[] = {
588
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
589
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
590
+ };
591
+ const LinInstr li031[] = {
592
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
593
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
594
+ };
595
+ const LinInstr li032[] = {
596
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
597
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
598
+ };
599
+ const LinInstr li033[] = {
600
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
601
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
602
+ };
603
+ const LinInstr li034[] = {
604
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
605
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
606
+ };
607
+ const LinInstr li035[] = {
608
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
609
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
610
+ };
611
+ const LinInstr li036[] = {
612
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
613
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
614
+ };
615
+ const LinInstr li037[] = {
616
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
617
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
618
+ };
619
+ const LinInstr li038[] = {
620
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
621
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
622
+ };
623
+ const LinInstr li039[] = {
624
+ {LO_AEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
625
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
626
+ };
627
+ const LinInstr li040[] = {
628
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
629
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
630
+ };
631
+ const LinInstr li041[] = {
632
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
633
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
634
+ };
635
+ const LinInstr li042[] = {
636
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
637
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
638
+ };
639
+ const LinInstr li043[] = {
640
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
641
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
642
+ };
643
+ const LinInstr li044[] = {
644
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
645
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
646
+ };
647
+ const LinInstr li045[] = {
648
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
649
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
650
+ };
651
+ const LinInstr li046[] = {
652
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
653
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
654
+ };
655
+ const LinInstr li047[] = {
656
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
657
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
658
+ };
659
+ const LinInstr li048[] = {
660
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
661
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
662
+ };
663
+ const LinInstr li049[] = {
664
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
665
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
666
+ };
667
+ const LinInstr li050[] = {
668
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
669
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
670
+ };
671
+ const LinInstr li051[] = {
672
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
673
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
674
+ };
675
+ const LinInstr li052[] = {
676
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
677
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
678
+ };
679
+ const LinInstr li053[] = {
680
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
681
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
682
+ };
683
+ const LinInstr li054[] = {
684
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
685
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
686
+ };
687
+ const LinInstr li055[] = {
688
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
689
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
690
+ };
691
+ const LinInstr li056[] = {
692
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
693
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
694
+ };
695
+ const LinInstr li057[] = {
696
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
697
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
698
+ };
699
+ const LinInstr li058[] = {
700
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
701
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
702
+ };
703
+ const LinInstr li059[] = {
704
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
705
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
706
+ };
707
+ const LinInstr li060[] = {
708
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
709
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
710
+ };
711
+ const LinInstr li061[] = {
712
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
713
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
714
+ };
715
+ const LinInstr li062[] = {
716
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
717
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
718
+ };
719
+ const LinInstr li063[] = {
720
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
721
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
722
+ };
723
+ const LinInstr li064[] = {
724
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
725
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
726
+ };
727
+ const LinInstr li065[] = {
728
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
729
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
730
+ };
731
+ const LinInstr li066[] = {
732
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
733
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
734
+ };
735
+ const LinInstr li067[] = {
736
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
737
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
738
+ };
739
+ const LinInstr li068[] = {
740
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
741
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
742
+ };
743
+ const LinInstr li069[] = {
744
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
745
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
746
+ };
747
+ const LinInstr li070[] = {
748
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
749
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
750
+ };
751
+ const LinInstr li071[] = {
752
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
753
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
754
+ };
755
+ const LinInstr li072[] = {
756
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
757
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
758
+ };
759
+ const LinInstr li073[] = {
760
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
761
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
762
+ };
763
+ const LinInstr li074[] = {
764
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
765
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
766
+ };
767
+ const LinInstr li075[] = {
768
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
769
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
770
+ };
771
+ const LinInstr li076[] = {
772
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
773
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
774
+ };
775
+ const LinInstr li077[] = {
776
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
777
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
778
+ };
779
+ const LinInstr li078[] = {
780
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
781
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
782
+ };
783
+ const LinInstr li079[] = {
784
+ {LO_AEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
785
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
786
+ };
787
+ const LinInstr li080[] = {
788
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
789
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
790
+ };
791
+ const LinInstr li081[] = {
792
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
793
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
794
+ };
795
+ const LinInstr li082[] = {
796
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
797
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
798
+ };
799
+ const LinInstr li083[] = {
800
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
801
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
802
+ };
803
+ const LinInstr li084[] = {
804
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
805
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
806
+ };
807
+ const LinInstr li085[] = {
808
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
809
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
810
+ };
811
+ const LinInstr li086[] = {
812
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
813
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
814
+ };
815
+ const LinInstr li087[] = {
816
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
817
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
818
+ };
819
+ const LinInstr li088[] = {
820
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
821
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
822
+ };
823
+ const LinInstr li089[] = {
824
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
825
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
826
+ };
827
+ const LinInstr li090[] = {
828
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
829
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
830
+ };
831
+ const LinInstr li091[] = {
832
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
833
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
834
+ };
835
+ const LinInstr li092[] = {
836
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
837
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
838
+ };
839
+ const LinInstr li093[] = {
840
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
841
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
842
+ };
843
+ const LinInstr li094[] = {
844
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
845
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
846
+ };
847
+ const LinInstr li095[] = {
848
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
849
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
850
+ };
851
+ const LinInstr li096[] = {
852
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
853
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
854
+ };
855
+ const LinInstr li097[] = {
856
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
857
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
858
+ };
859
+ const LinInstr li098[] = {
860
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
861
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
862
+ };
863
+ const LinInstr li099[] = {
864
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
865
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
866
+ };
867
+ const LinInstr li100[] = {
868
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
869
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
870
+ };
871
+ const LinInstr li101[] = {
872
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
873
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
874
+ };
875
+ const LinInstr li102[] = {
876
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
877
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
878
+ };
879
+ const LinInstr li103[] = {
880
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
881
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
882
+ };
883
+ const LinInstr li104[] = {
884
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
885
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
886
+ };
887
+ const LinInstr li105[] = {
888
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
889
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
890
+ };
891
+ const LinInstr li106[] = {
892
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
893
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
894
+ };
895
+ const LinInstr li107[] = {
896
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
897
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
898
+ };
899
+ const LinInstr li108[] = {
900
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
901
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
902
+ };
903
+ const LinInstr li109[] = {
904
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
905
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
906
+ };
907
+ const LinInstr li110[] = {
908
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
909
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
910
+ };
911
+ const LinInstr li111[] = {
912
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
913
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
914
+ };
915
+ const LinInstr li112[] = {
916
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
917
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
918
+ };
919
+ const LinInstr li113[] = {
920
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
921
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
922
+ };
923
+ const LinInstr li114[] = {
924
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
925
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
926
+ };
927
+ const LinInstr li115[] = {
928
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
929
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
930
+ };
931
+ const LinInstr li116[] = {
932
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
933
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
934
+ };
935
+ const LinInstr li117[] = {
936
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
937
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
938
+ };
939
+ const LinInstr li118[] = {
940
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
941
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
942
+ };
943
+ const LinInstr li119[] = {
944
+ {LO_AEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
945
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
946
+ };
947
+ const LinInstr li120[] = {
948
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
949
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
950
+ };
951
+ const LinInstr li121[] = {
952
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
953
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
954
+ };
955
+ const LinInstr li122[] = {
956
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
957
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
958
+ };
959
+ const LinInstr li123[] = {
960
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
961
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
962
+ };
963
+ const LinInstr li124[] = {
964
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
965
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
966
+ };
967
+ const LinInstr li125[] = {
968
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
969
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
970
+ };
971
+ const LinInstr li126[] = {
972
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
973
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
974
+ };
975
+ const LinInstr li127[] = {
976
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
977
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
978
+ };
979
+ const LinInstr li128[] = {
980
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
981
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
982
+ };
983
+ const LinInstr li129[] = {
984
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
985
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
986
+ };
987
+ const LinInstr li130[] = {
988
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
989
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
990
+ };
991
+ const LinInstr li131[] = {
992
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
993
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
994
+ };
995
+ const LinInstr li132[] = {
996
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
997
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
998
+ };
999
+ const LinInstr li133[] = {
1000
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1001
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1002
+ };
1003
+ const LinInstr li134[] = {
1004
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1005
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1006
+ };
1007
+ const LinInstr li135[] = {
1008
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1009
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1010
+ };
1011
+ const LinInstr li136[] = {
1012
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1013
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1014
+ };
1015
+ const LinInstr li137[] = {
1016
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1017
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1018
+ };
1019
+ const LinInstr li138[] = {
1020
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1021
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1022
+ };
1023
+ const LinInstr li139[] = {
1024
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1025
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1026
+ };
1027
+ const LinInstr li140[] = {
1028
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1029
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1030
+ };
1031
+ const LinInstr li141[] = {
1032
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1033
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1034
+ };
1035
+ const LinInstr li142[] = {
1036
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1037
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1038
+ };
1039
+ const LinInstr li143[] = {
1040
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1041
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1042
+ };
1043
+ const LinInstr li144[] = {
1044
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1045
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1046
+ };
1047
+ const LinInstr li145[] = {
1048
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1049
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1050
+ };
1051
+ const LinInstr li146[] = {
1052
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1053
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1054
+ };
1055
+ const LinInstr li147[] = {
1056
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1057
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1058
+ };
1059
+ const LinInstr li148[] = {
1060
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1061
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1062
+ };
1063
+ const LinInstr li149[] = {
1064
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1065
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1066
+ };
1067
+ const LinInstr li150[] = {
1068
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1069
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1070
+ };
1071
+ const LinInstr li151[] = {
1072
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1073
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1074
+ };
1075
+ const LinInstr li152[] = {
1076
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1077
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1078
+ };
1079
+ const LinInstr li153[] = {
1080
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1081
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1082
+ };
1083
+ const LinInstr li154[] = {
1084
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1085
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1086
+ };
1087
+ const LinInstr li155[] = {
1088
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1089
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1090
+ };
1091
+ const LinInstr li156[] = {
1092
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1093
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1094
+ };
1095
+ const LinInstr li157[] = {
1096
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1097
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1098
+ };
1099
+ const LinInstr li158[] = {
1100
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1101
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1102
+ };
1103
+ const LinInstr li159[] = {
1104
+ {LO_AEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1105
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1106
+ };
1107
+ const LinInstr li160[] = {
1108
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1109
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1110
+ };
1111
+ const LinInstr li161[] = {
1112
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1113
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1114
+ };
1115
+ const LinInstr li162[] = {
1116
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1117
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1118
+ };
1119
+ const LinInstr li163[] = {
1120
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1121
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1122
+ };
1123
+ const LinInstr li164[] = {
1124
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1125
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1126
+ };
1127
+ const LinInstr li165[] = {
1128
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1129
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1130
+ };
1131
+ const LinInstr li166[] = {
1132
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1133
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1134
+ };
1135
+ const LinInstr li167[] = {
1136
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1137
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1138
+ };
1139
+ const LinInstr li168[] = {
1140
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1141
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1142
+ };
1143
+ const LinInstr li169[] = {
1144
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1145
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1146
+ };
1147
+ const LinInstr li170[] = {
1148
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1149
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1150
+ };
1151
+ const LinInstr li171[] = {
1152
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1153
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1154
+ };
1155
+ const LinInstr li172[] = {
1156
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1157
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1158
+ };
1159
+ const LinInstr li173[] = {
1160
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1161
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1162
+ };
1163
+ const LinInstr li174[] = {
1164
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1165
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1166
+ };
1167
+ const LinInstr li175[] = {
1168
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1169
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1170
+ };
1171
+ const LinInstr li176[] = {
1172
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1173
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1174
+ };
1175
+ const LinInstr li177[] = {
1176
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1177
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1178
+ };
1179
+ const LinInstr li178[] = {
1180
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1181
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1182
+ };
1183
+ const LinInstr li179[] = {
1184
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1185
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1186
+ };
1187
+ const LinInstr li180[] = {
1188
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1189
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1190
+ };
1191
+ const LinInstr li181[] = {
1192
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1193
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1194
+ };
1195
+ const LinInstr li182[] = {
1196
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1197
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1198
+ };
1199
+ const LinInstr li183[] = {
1200
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1201
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1202
+ };
1203
+ const LinInstr li184[] = {
1204
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1205
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1206
+ };
1207
+ const LinInstr li185[] = {
1208
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1209
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1210
+ };
1211
+ const LinInstr li186[] = {
1212
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1213
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1214
+ };
1215
+ const LinInstr li187[] = {
1216
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1217
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1218
+ };
1219
+ const LinInstr li188[] = {
1220
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1221
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1222
+ };
1223
+ const LinInstr li189[] = {
1224
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1225
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1226
+ };
1227
+ const LinInstr li190[] = {
1228
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1229
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1230
+ };
1231
+ const LinInstr li191[] = {
1232
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1233
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1234
+ };
1235
+ const LinInstr li192[] = {
1236
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1237
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1238
+ };
1239
+ const LinInstr li193[] = {
1240
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1241
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1242
+ };
1243
+ const LinInstr li194[] = {
1244
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1245
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1246
+ };
1247
+ const LinInstr li195[] = {
1248
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1249
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1250
+ };
1251
+ const LinInstr li196[] = {
1252
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1253
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1254
+ };
1255
+ const LinInstr li197[] = {
1256
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1257
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1258
+ };
1259
+ const LinInstr li198[] = {
1260
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1261
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1262
+ };
1263
+ const LinInstr li199[] = {
1264
+ {LO_AEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1265
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1266
+ };
1267
+ const LinInstr li200[] = {
1268
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1269
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1270
+ };
1271
+ const LinInstr li201[] = {
1272
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1273
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1274
+ };
1275
+ const LinInstr li202[] = {
1276
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1277
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1278
+ };
1279
+ const LinInstr li203[] = {
1280
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1281
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1282
+ };
1283
+ const LinInstr li204[] = {
1284
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1285
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1286
+ };
1287
+ const LinInstr li205[] = {
1288
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1289
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1290
+ };
1291
+ const LinInstr li206[] = {
1292
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1293
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1294
+ };
1295
+ const LinInstr li207[] = {
1296
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1297
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1298
+ };
1299
+ const LinInstr li208[] = {
1300
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1301
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1302
+ };
1303
+ const LinInstr li209[] = {
1304
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1305
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1306
+ };
1307
+ const LinInstr li210[] = {
1308
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1309
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1310
+ };
1311
+ const LinInstr li211[] = {
1312
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1313
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1314
+ };
1315
+ const LinInstr li212[] = {
1316
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1317
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1318
+ };
1319
+ const LinInstr li213[] = {
1320
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1321
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1322
+ };
1323
+ const LinInstr li214[] = {
1324
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1325
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1326
+ };
1327
+ const LinInstr li215[] = {
1328
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1329
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1330
+ };
1331
+ const LinInstr li216[] = {
1332
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1333
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1334
+ };
1335
+ const LinInstr li217[] = {
1336
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1337
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1338
+ };
1339
+ const LinInstr li218[] = {
1340
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1341
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1342
+ };
1343
+ const LinInstr li219[] = {
1344
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1345
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1346
+ };
1347
+ const LinInstr li220[] = {
1348
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1349
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1350
+ };
1351
+ const LinInstr li221[] = {
1352
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1353
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1354
+ };
1355
+ const LinInstr li222[] = {
1356
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1357
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1358
+ };
1359
+ const LinInstr li223[] = {
1360
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1361
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1362
+ };
1363
+ const LinInstr li224[] = {
1364
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1365
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1366
+ };
1367
+ const LinInstr li225[] = {
1368
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1369
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1370
+ };
1371
+ const LinInstr li226[] = {
1372
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1373
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1374
+ };
1375
+ const LinInstr li227[] = {
1376
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1377
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1378
+ };
1379
+ const LinInstr li228[] = {
1380
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1381
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1382
+ };
1383
+ const LinInstr li229[] = {
1384
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1385
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1386
+ };
1387
+ const LinInstr li230[] = {
1388
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1389
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1390
+ };
1391
+ const LinInstr li231[] = {
1392
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1393
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1394
+ };
1395
+ const LinInstr li232[] = {
1396
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1397
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1398
+ };
1399
+ const LinInstr li233[] = {
1400
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1401
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1402
+ };
1403
+ const LinInstr li234[] = {
1404
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1405
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1406
+ };
1407
+ const LinInstr li235[] = {
1408
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1409
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1410
+ };
1411
+ const LinInstr li236[] = {
1412
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1413
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1414
+ };
1415
+ const LinInstr li237[] = {
1416
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1417
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1418
+ };
1419
+ const LinInstr li238[] = {
1420
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1421
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1422
+ };
1423
+ const LinInstr li239[] = {
1424
+ {LO_SEE,0,1,0, 0},{LO_AEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1425
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1426
+ };
1427
+ const LinInstr li240[] = {
1428
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
1429
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1430
+ };
1431
+ const LinInstr li241[] = {
1432
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
1433
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1434
+ };
1435
+ const LinInstr li242[] = {
1436
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
1437
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1438
+ };
1439
+ const LinInstr li243[] = {
1440
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
1441
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1442
+ };
1443
+ const LinInstr li244[] = {
1444
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
1445
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1446
+ };
1447
+ const LinInstr li245[] = {
1448
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
1449
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1450
+ };
1451
+ const LinInstr li246[] = {
1452
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
1453
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1454
+ };
1455
+ const LinInstr li247[] = {
1456
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
1457
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1458
+ };
1459
+ const LinInstr li248[] = {
1460
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
1461
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1462
+ };
1463
+ const LinInstr li249[] = {
1464
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
1465
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1466
+ };
1467
+ const LinInstr li250[] = {
1468
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
1469
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1470
+ };
1471
+ const LinInstr li251[] = {
1472
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
1473
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1474
+ };
1475
+ const LinInstr li252[] = {
1476
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1477
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1478
+ };
1479
+ const LinInstr li253[] = {
1480
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1481
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1482
+ };
1483
+ const LinInstr li254[] = {
1484
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1485
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1486
+ };
1487
+ const LinInstr li255[] = {
1488
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1489
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1490
+ };
1491
+ const LinInstr li256[] = {
1492
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1493
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1494
+ };
1495
+ const LinInstr li257[] = {
1496
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1497
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1498
+ };
1499
+ const LinInstr li258[] = {
1500
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1501
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1502
+ };
1503
+ const LinInstr li259[] = {
1504
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1505
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1506
+ };
1507
+ const LinInstr li260[] = {
1508
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1509
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1510
+ };
1511
+ const LinInstr li261[] = {
1512
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1513
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1514
+ };
1515
+ const LinInstr li262[] = {
1516
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1517
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1518
+ };
1519
+ const LinInstr li263[] = {
1520
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1521
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1522
+ };
1523
+ const LinInstr li264[] = {
1524
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1525
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1526
+ };
1527
+ const LinInstr li265[] = {
1528
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1529
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1530
+ };
1531
+ const LinInstr li266[] = {
1532
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1533
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1534
+ };
1535
+ const LinInstr li267[] = {
1536
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1537
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1538
+ };
1539
+ const LinInstr li268[] = {
1540
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1541
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1542
+ };
1543
+ const LinInstr li269[] = {
1544
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1545
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1546
+ };
1547
+ const LinInstr li270[] = {
1548
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1549
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1550
+ };
1551
+ const LinInstr li271[] = {
1552
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1553
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1554
+ };
1555
+ const LinInstr li272[] = {
1556
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1557
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1558
+ };
1559
+ const LinInstr li273[] = {
1560
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1561
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1562
+ };
1563
+ const LinInstr li274[] = {
1564
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1565
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1566
+ };
1567
+ const LinInstr li275[] = {
1568
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1569
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1570
+ };
1571
+ const LinInstr li276[] = {
1572
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1573
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1574
+ };
1575
+ const LinInstr li277[] = {
1576
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1577
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1578
+ };
1579
+ const LinInstr li278[] = {
1580
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1581
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1582
+ };
1583
+ const LinInstr li279[] = {
1584
+ {LO_SEE,0,1,0, 0},{LO_SCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1585
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1586
+ };
1587
+ const LinInstr li280[] = {
1588
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1589
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1590
+ };
1591
+ const LinInstr li281[] = {
1592
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1593
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1594
+ };
1595
+ const LinInstr li282[] = {
1596
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1597
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1598
+ };
1599
+ const LinInstr li283[] = {
1600
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1601
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1602
+ };
1603
+ const LinInstr li284[] = {
1604
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1605
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1606
+ };
1607
+ const LinInstr li285[] = {
1608
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1609
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1610
+ };
1611
+ const LinInstr li286[] = {
1612
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1613
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1614
+ };
1615
+ const LinInstr li287[] = {
1616
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1617
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1618
+ };
1619
+ const LinInstr li288[] = {
1620
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1621
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1622
+ };
1623
+ const LinInstr li289[] = {
1624
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1625
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1626
+ };
1627
+ const LinInstr li290[] = {
1628
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1629
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1630
+ };
1631
+ const LinInstr li291[] = {
1632
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1633
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1634
+ };
1635
+ const LinInstr li292[] = {
1636
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1637
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1638
+ };
1639
+ const LinInstr li293[] = {
1640
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1641
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1642
+ };
1643
+ const LinInstr li294[] = {
1644
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1645
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1646
+ };
1647
+ const LinInstr li295[] = {
1648
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1649
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1650
+ };
1651
+ const LinInstr li296[] = {
1652
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1653
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1654
+ };
1655
+ const LinInstr li297[] = {
1656
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1657
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1658
+ };
1659
+ const LinInstr li298[] = {
1660
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1661
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1662
+ };
1663
+ const LinInstr li299[] = {
1664
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1665
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1666
+ };
1667
+ const LinInstr li300[] = {
1668
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1669
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1670
+ };
1671
+ const LinInstr li301[] = {
1672
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1673
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1674
+ };
1675
+ const LinInstr li302[] = {
1676
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1677
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1678
+ };
1679
+ const LinInstr li303[] = {
1680
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1681
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1682
+ };
1683
+ const LinInstr li304[] = {
1684
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1685
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1686
+ };
1687
+ const LinInstr li305[] = {
1688
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1689
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1690
+ };
1691
+ const LinInstr li306[] = {
1692
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1693
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1694
+ };
1695
+ const LinInstr li307[] = {
1696
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
1697
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1698
+ };
1699
+ const LinInstr li308[] = {
1700
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1701
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1702
+ };
1703
+ const LinInstr li309[] = {
1704
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1705
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1706
+ };
1707
+ const LinInstr li310[] = {
1708
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1709
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1710
+ };
1711
+ const LinInstr li311[] = {
1712
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
1713
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1714
+ };
1715
+ const LinInstr li312[] = {
1716
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1717
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1718
+ };
1719
+ const LinInstr li313[] = {
1720
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1721
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1722
+ };
1723
+ const LinInstr li314[] = {
1724
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1725
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1726
+ };
1727
+ const LinInstr li315[] = {
1728
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
1729
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1730
+ };
1731
+ const LinInstr li316[] = {
1732
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1733
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1734
+ };
1735
+ const LinInstr li317[] = {
1736
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1737
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1738
+ };
1739
+ const LinInstr li318[] = {
1740
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1741
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1742
+ };
1743
+ const LinInstr li319[] = {
1744
+ {LO_SEE,0,1,0, 0},{LO_SEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
1745
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1746
+ };
1747
+ const LinInstr li320[] = {
1748
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
1749
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1750
+ };
1751
+ const LinInstr li321[] = {
1752
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
1753
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1754
+ };
1755
+ const LinInstr li322[] = {
1756
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
1757
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1758
+ };
1759
+ const LinInstr li323[] = {
1760
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_AEE,0,2,0, 0},
1761
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1762
+ };
1763
+ const LinInstr li324[] = {
1764
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
1765
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1766
+ };
1767
+ const LinInstr li325[] = {
1768
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
1769
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1770
+ };
1771
+ const LinInstr li326[] = {
1772
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
1773
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1774
+ };
1775
+ const LinInstr li327[] = {
1776
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-2},{LO_SEE,0,2,0, 0},
1777
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1778
+ };
1779
+ const LinInstr li328[] = {
1780
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
1781
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1782
+ };
1783
+ const LinInstr li329[] = {
1784
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
1785
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1786
+ };
1787
+ const LinInstr li330[] = {
1788
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
1789
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1790
+ };
1791
+ const LinInstr li331[] = {
1792
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_AEE,0,2,0, 0},
1793
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1794
+ };
1795
+ const LinInstr li332[] = {
1796
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1797
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1798
+ };
1799
+ const LinInstr li333[] = {
1800
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1801
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1802
+ };
1803
+ const LinInstr li334[] = {
1804
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1805
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1806
+ };
1807
+ const LinInstr li335[] = {
1808
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0,-1},{LO_SEE,0,2,0, 0},
1809
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1810
+ };
1811
+ const LinInstr li336[] = {
1812
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1813
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1814
+ };
1815
+ const LinInstr li337[] = {
1816
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1817
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1818
+ };
1819
+ const LinInstr li338[] = {
1820
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1821
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1822
+ };
1823
+ const LinInstr li339[] = {
1824
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_AEE,0,2,0, 0},
1825
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1826
+ };
1827
+ const LinInstr li340[] = {
1828
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1829
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1830
+ };
1831
+ const LinInstr li341[] = {
1832
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1833
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1834
+ };
1835
+ const LinInstr li342[] = {
1836
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1837
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1838
+ };
1839
+ const LinInstr li343[] = {
1840
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 0},{LO_SEE,0,2,0, 0},
1841
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1842
+ };
1843
+ const LinInstr li344[] = {
1844
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1845
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1846
+ };
1847
+ const LinInstr li345[] = {
1848
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1849
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1850
+ };
1851
+ const LinInstr li346[] = {
1852
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1853
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1854
+ };
1855
+ const LinInstr li347[] = {
1856
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_AEE,0,2,0, 0},
1857
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1858
+ };
1859
+ const LinInstr li348[] = {
1860
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1861
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1862
+ };
1863
+ const LinInstr li349[] = {
1864
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1865
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1866
+ };
1867
+ const LinInstr li350[] = {
1868
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1869
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1870
+ };
1871
+ const LinInstr li351[] = {
1872
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 1},{LO_SEE,0,2,0, 0},
1873
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1874
+ };
1875
+ const LinInstr li352[] = {
1876
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1877
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1878
+ };
1879
+ const LinInstr li353[] = {
1880
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1881
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1882
+ };
1883
+ const LinInstr li354[] = {
1884
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1885
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1886
+ };
1887
+ const LinInstr li355[] = {
1888
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_AEE,0,2,0, 0},
1889
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1890
+ };
1891
+ const LinInstr li356[] = {
1892
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1893
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1894
+ };
1895
+ const LinInstr li357[] = {
1896
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1897
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1898
+ };
1899
+ const LinInstr li358[] = {
1900
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1901
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1902
+ };
1903
+ const LinInstr li359[] = {
1904
+ {LO_SEE,0,1,0, 0},{LO_MCE,0,0,0, 2},{LO_SEE,0,2,0, 0},
1905
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1906
+ };
1907
+ const LinInstr li360[] = {
1908
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1909
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1910
+ };
1911
+ const LinInstr li361[] = {
1912
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1913
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1914
+ };
1915
+ const LinInstr li362[] = {
1916
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1917
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1918
+ };
1919
+ const LinInstr li363[] = {
1920
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_AEE,0,2,0, 0},
1921
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1922
+ };
1923
+ const LinInstr li364[] = {
1924
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1925
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1926
+ };
1927
+ const LinInstr li365[] = {
1928
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1929
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1930
+ };
1931
+ const LinInstr li366[] = {
1932
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1933
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1934
+ };
1935
+ const LinInstr li367[] = {
1936
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-2},{LO_SEE,0,2,0, 0},
1937
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1938
+ };
1939
+ const LinInstr li368[] = {
1940
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1941
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1942
+ };
1943
+ const LinInstr li369[] = {
1944
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1945
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1946
+ };
1947
+ const LinInstr li370[] = {
1948
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1949
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1950
+ };
1951
+ const LinInstr li371[] = {
1952
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_AEE,0,2,0, 0},
1953
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1954
+ };
1955
+ const LinInstr li372[] = {
1956
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1957
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1958
+ };
1959
+ const LinInstr li373[] = {
1960
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1961
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1962
+ };
1963
+ const LinInstr li374[] = {
1964
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1965
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1966
+ };
1967
+ const LinInstr li375[] = {
1968
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0,-1},{LO_SEE,0,2,0, 0},
1969
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1970
+ };
1971
+ const LinInstr li376[] = {
1972
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1973
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1974
+ };
1975
+ const LinInstr li377[] = {
1976
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1977
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1978
+ };
1979
+ const LinInstr li378[] = {
1980
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1981
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1982
+ };
1983
+ const LinInstr li379[] = {
1984
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_AEE,0,2,0, 0},
1985
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1986
+ };
1987
+ const LinInstr li380[] = {
1988
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1989
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
1990
+ };
1991
+ const LinInstr li381[] = {
1992
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1993
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
1994
+ };
1995
+ const LinInstr li382[] = {
1996
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
1997
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
1998
+ };
1999
+ const LinInstr li383[] = {
2000
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 0},{LO_SEE,0,2,0, 0},
2001
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
2002
+ };
2003
+ const LinInstr li384[] = {
2004
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
2005
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
2006
+ };
2007
+ const LinInstr li385[] = {
2008
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
2009
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
2010
+ };
2011
+ const LinInstr li386[] = {
2012
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
2013
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
2014
+ };
2015
+ const LinInstr li387[] = {
2016
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_AEE,0,2,0, 0},
2017
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
2018
+ };
2019
+ const LinInstr li388[] = {
2020
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
2021
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
2022
+ };
2023
+ const LinInstr li389[] = {
2024
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
2025
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
2026
+ };
2027
+ const LinInstr li390[] = {
2028
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
2029
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
2030
+ };
2031
+ const LinInstr li391[] = {
2032
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 1},{LO_SEE,0,2,0, 0},
2033
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
2034
+ };
2035
+ const LinInstr li392[] = {
2036
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
2037
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
2038
+ };
2039
+ const LinInstr li393[] = {
2040
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
2041
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
2042
+ };
2043
+ const LinInstr li394[] = {
2044
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
2045
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
2046
+ };
2047
+ const LinInstr li395[] = {
2048
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_AEE,0,2,0, 0},
2049
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
2050
+ };
2051
+ const LinInstr li396[] = {
2052
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
2053
+ {LO_ACE,0,0,0,-1},{LO_HLT,0,0,0, 0}
2054
+ };
2055
+ const LinInstr li397[] = {
2056
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
2057
+ {LO_ACE,0,0,0, 1},{LO_HLT,0,0,0, 0}
2058
+ };
2059
+ const LinInstr li398[] = {
2060
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
2061
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
2062
+ };
2063
+ const LinInstr li399[] = {
2064
+ {LO_SEE,0,1,0, 0},{LO_MEC,0,0,0, 2},{LO_SEE,0,2,0, 0},
2065
+ {LO_SE ,0,0,0, 0},{LO_HLT,0,0,0, 0}
2066
+ };
2067
+
2068
+ const LinInstr* li[] = {
2069
+ &li000[0],&li001[0],&li002[0],&li003[0],&li004[0],&li005[0],
2070
+ &li006[0],&li007[0],&li008[0],&li009[0],&li010[0],&li011[0],
2071
+ &li012[0],&li013[0],&li014[0],&li015[0],&li016[0],&li017[0],
2072
+ &li018[0],&li019[0],&li020[0],&li021[0],&li022[0],&li023[0],
2073
+ &li024[0],&li025[0],&li026[0],&li027[0],&li028[0],&li029[0],
2074
+ &li030[0],&li031[0],&li032[0],&li033[0],&li034[0],&li035[0],
2075
+ &li036[0],&li037[0],&li038[0],&li039[0],&li040[0],&li041[0],
2076
+ &li042[0],&li043[0],&li044[0],&li045[0],&li046[0],&li047[0],
2077
+ &li048[0],&li049[0],&li050[0],&li051[0],&li052[0],&li053[0],
2078
+ &li054[0],&li055[0],&li056[0],&li057[0],&li058[0],&li059[0],
2079
+ &li060[0],&li061[0],&li062[0],&li063[0],&li064[0],&li065[0],
2080
+ &li066[0],&li067[0],&li068[0],&li069[0],&li070[0],&li071[0],
2081
+ &li072[0],&li073[0],&li074[0],&li075[0],&li076[0],&li077[0],
2082
+ &li078[0],&li079[0],&li080[0],&li081[0],&li082[0],&li083[0],
2083
+ &li084[0],&li085[0],&li086[0],&li087[0],&li088[0],&li089[0],
2084
+ &li090[0],&li091[0],&li092[0],&li093[0],&li094[0],&li095[0],
2085
+ &li096[0],&li097[0],&li098[0],&li099[0],&li100[0],&li101[0],
2086
+ &li102[0],&li103[0],&li104[0],&li105[0],&li106[0],&li107[0],
2087
+ &li108[0],&li109[0],&li110[0],&li111[0],&li112[0],&li113[0],
2088
+ &li114[0],&li115[0],&li116[0],&li117[0],&li118[0],&li119[0],
2089
+ &li120[0],&li121[0],&li122[0],&li123[0],&li124[0],&li125[0],
2090
+ &li126[0],&li127[0],&li128[0],&li129[0],&li130[0],&li131[0],
2091
+ &li132[0],&li133[0],&li134[0],&li135[0],&li136[0],&li137[0],
2092
+ &li138[0],&li139[0],&li140[0],&li141[0],&li142[0],&li143[0],
2093
+ &li144[0],&li145[0],&li146[0],&li147[0],&li148[0],&li149[0],
2094
+ &li150[0],&li151[0],&li152[0],&li153[0],&li154[0],&li155[0],
2095
+ &li156[0],&li157[0],&li158[0],&li159[0],&li160[0],&li161[0],
2096
+ &li162[0],&li163[0],&li164[0],&li165[0],&li166[0],&li167[0],
2097
+ &li168[0],&li169[0],&li170[0],&li171[0],&li172[0],&li173[0],
2098
+ &li174[0],&li175[0],&li176[0],&li177[0],&li178[0],&li179[0],
2099
+ &li180[0],&li181[0],&li182[0],&li183[0],&li184[0],&li185[0],
2100
+ &li186[0],&li187[0],&li188[0],&li189[0],&li190[0],&li191[0],
2101
+ &li192[0],&li193[0],&li194[0],&li195[0],&li196[0],&li197[0],
2102
+ &li198[0],&li199[0],&li200[0],&li201[0],&li202[0],&li203[0],
2103
+ &li204[0],&li205[0],&li206[0],&li207[0],&li208[0],&li209[0],
2104
+ &li210[0],&li211[0],&li212[0],&li213[0],&li214[0],&li215[0],
2105
+ &li216[0],&li217[0],&li218[0],&li219[0],&li220[0],&li221[0],
2106
+ &li222[0],&li223[0],&li224[0],&li225[0],&li226[0],&li227[0],
2107
+ &li228[0],&li229[0],&li230[0],&li231[0],&li232[0],&li233[0],
2108
+ &li234[0],&li235[0],&li236[0],&li237[0],&li238[0],&li239[0],
2109
+ &li240[0],&li241[0],&li242[0],&li243[0],&li244[0],&li245[0],
2110
+ &li246[0],&li247[0],&li248[0],&li249[0],&li250[0],&li251[0],
2111
+ &li252[0],&li253[0],&li254[0],&li255[0],&li256[0],&li257[0],
2112
+ &li258[0],&li259[0],&li260[0],&li261[0],&li262[0],&li263[0],
2113
+ &li264[0],&li265[0],&li266[0],&li267[0],&li268[0],&li269[0],
2114
+ &li270[0],&li271[0],&li272[0],&li273[0],&li274[0],&li275[0],
2115
+ &li276[0],&li277[0],&li278[0],&li279[0],&li280[0],&li281[0],
2116
+ &li282[0],&li283[0],&li284[0],&li285[0],&li286[0],&li287[0],
2117
+ &li288[0],&li289[0],&li290[0],&li291[0],&li292[0],&li293[0],
2118
+ &li294[0],&li295[0],&li296[0],&li297[0],&li298[0],&li299[0],
2119
+ &li300[0],&li301[0],&li302[0],&li303[0],&li304[0],&li305[0],
2120
+ &li306[0],&li307[0],&li308[0],&li309[0],&li310[0],&li311[0],
2121
+ &li312[0],&li313[0],&li314[0],&li315[0],&li316[0],&li317[0],
2122
+ &li318[0],&li319[0],&li320[0],&li321[0],&li322[0],&li323[0],
2123
+ &li324[0],&li325[0],&li326[0],&li327[0],&li328[0],&li329[0],
2124
+ &li330[0],&li331[0],&li332[0],&li333[0],&li334[0],&li335[0],
2125
+ &li336[0],&li337[0],&li338[0],&li339[0],&li340[0],&li341[0],
2126
+ &li342[0],&li343[0],&li344[0],&li345[0],&li346[0],&li347[0],
2127
+ &li348[0],&li349[0],&li350[0],&li351[0],&li352[0],&li353[0],
2128
+ &li354[0],&li355[0],&li356[0],&li357[0],&li358[0],&li359[0],
2129
+ &li360[0],&li361[0],&li362[0],&li363[0],&li364[0],&li365[0],
2130
+ &li366[0],&li367[0],&li368[0],&li369[0],&li370[0],&li371[0],
2131
+ &li372[0],&li373[0],&li374[0],&li375[0],&li376[0],&li377[0],
2132
+ &li378[0],&li379[0],&li380[0],&li381[0],&li382[0],&li383[0],
2133
+ &li384[0],&li385[0],&li386[0],&li387[0],&li388[0],&li389[0],
2134
+ &li390[0],&li391[0],&li392[0],&li393[0],&li394[0],&li395[0],
2135
+ &li396[0],&li397[0],&li398[0],&li399[0],
2136
+ };
2137
+
2138
+ /// Help class to create and register tests
2139
+ class Create {
2140
+ public:
2141
+ /// Perform creation and registration
2142
+ Create(void) {
2143
+ int n = sizeof(li)/sizeof(LinInstr*);
2144
+ for (int i=0; i<n; i++) {
2145
+ std::string s = Test::str(i);
2146
+ if (i < 10) {
2147
+ s = "00" + s;
2148
+ } else if (i < 100) {
2149
+ s = "0" + s;
2150
+ }
2151
+ (void) new LinExprInt(li[i],s);
2152
+ (void) new LinExprBool(li[i],s);
2153
+ (void) new LinExprMixed(li[i],s);
2154
+ }
2155
+ IntRelTypes irts;
2156
+ for (int i=0; i<n/2; i++) {
2157
+ std::string s = Test::str(i);
2158
+ if (i < 10) {
2159
+ s = "00" + s;
2160
+ } else if (i < 100) {
2161
+ s = "0" + s;
2162
+ }
2163
+ (void) new LinRelInt(li[2*i],li[2*i+1],irts.irt(),s);
2164
+ (void) new LinRelBool(li[2*i],li[2*i+1],irts.irt(),s);
2165
+ (void) new LinRelMixed(li[2*i],li[2*i+1],irts.irt(),s);
2166
+ ++irts;
2167
+ if (!irts())
2168
+ irts.reset();
2169
+ }
2170
+ }
2171
+ };
2172
+
2173
+ Create c;
2174
+ //@}
2175
+ }
2176
+
2177
+ }}
2178
+
2179
+ // STATISTICS: test-minimodel