Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.27 KB | None | 0 0
  1. # Naxos Solver
  2.  
  3. Naxos is a mini-solver.
  4. If it is run without arguments, it shows its version.
  5.  
  6. ```
  7. $ ./naxos-xcsp3
  8. Naxos Solver 1.1.0
  9. Usage: ./naxos-xcsp3 BENCHNAME
  10. ```
  11.  
  12. Below, we test its conformance against simple instances.
  13.  
  14. ## aim-50-1-6-sat-1
  15.  
  16. A satisfiable CSP
  17.  
  18. ```
  19. $ timeout --kill-after=1s 10s ./naxos-xcsp3 aim-50-1-6-sat-1.xml | tee solution.txt
  20. s SATISFIABLE
  21. v <instantiation>
  22. v <list> x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] x[26] x[27] x[28] x[29] x[30] x[31] x[32] x[33] x[34] x[35] x[36] x[37] x[38] x[39] x[40] x[41] x[42] x[43] x[44] x[45] x[46] x[47] x[48] x[49] </list>
  23. v <values> 0 1 1 0 0 0 1 1 1 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 0 0 0 1 1 0 1 1 1 1 1 1 0 0 1 0 1 0 0 </values>
  24. v </instantiation>
  25. ```
  26.  
  27. ```
  28. $ java org.xcsp.checker.SolutionChecker -cm aim-50-1-6-sat-1.xml solution.txt
  29. OK
  30. ```
  31.  
  32. ## AllInterval-005
  33.  
  34. A satisfiable CSP
  35.  
  36. ```
  37. $ timeout --kill-after=1s 10s ./naxos-xcsp3 AllInterval-005.xml | tee solution.txt
  38. s SATISFIABLE
  39. v <instantiation>
  40. v <list> x[0] x[1] x[2] x[3] x[4] y[0] y[1] y[2] y[3] </list>
  41. v <values> 2 1 3 0 4 1 2 3 4 </values>
  42. v </instantiation>
  43. ```
  44.  
  45. ```
  46. $ java org.xcsp.checker.SolutionChecker -cm AllInterval-005.xml solution.txt
  47. OK
  48. ```
  49.  
  50. ## Alpha
  51.  
  52. A satisfiable CSP
  53.  
  54. ```
  55. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Alpha.xml | tee solution.txt
  56. s SATISFIABLE
  57. v <instantiation>
  58. v <list> x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] </list>
  59. v <values> 5 13 9 16 20 4 24 21 25 17 23 2 8 12 10 19 7 11 15 3 1 26 6 22 14 18 </values>
  60. v </instantiation>
  61. ```
  62.  
  63. ```
  64. $ java org.xcsp.checker.SolutionChecker -cm Alpha.xml solution.txt
  65. OK
  66. ```
  67.  
  68. ## bdd-15-21-2-2713-79-01
  69.  
  70. An unsatisfiable CSP
  71.  
  72. ```
  73. $ timeout --kill-after=1s 10s ./naxos-xcsp3 bdd-15-21-2-2713-79-01.xml | tee solution.txt
  74. ```
  75.  
  76. ```
  77. $ java org.xcsp.checker.SolutionChecker -cm bdd-15-21-2-2713-79-01.xml solution.txt
  78. One s line expected
  79. ```
  80.  
  81. ## Bibd-sc-03-03-01
  82.  
  83. A satisfiable CSP
  84.  
  85. ```
  86. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Bibd-sc-03-03-01.xml | tee solution.txt
  87. Exception at line 38
  88. s UNSUPPORTED
  89. c Lex matrix constraint is not yet supported
  90. ```
  91.  
  92. ```
  93. $ java org.xcsp.checker.SolutionChecker -cm Bibd-sc-03-03-01.xml solution.txt
  94. ```
  95.  
  96. ## Bibd-sum-03-03-01
  97.  
  98. A satisfiable CSP
  99.  
  100. ```
  101. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Bibd-sum-03-03-01.xml | tee solution.txt
  102. Exception at line 38
  103. s UNSUPPORTED
  104. c Lex matrix constraint is not yet supported
  105. ```
  106.  
  107. ```
  108. $ java org.xcsp.checker.SolutionChecker -cm Bibd-sum-03-03-01.xml solution.txt
  109. ```
  110.  
  111. ## Blackhole-04-3-00
  112.  
  113. A satisfiable CSP
  114.  
  115. ```
  116. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Blackhole-04-3-00.xml | tee solution.txt
  117. Exception at line 10
  118. s UNSUPPORTED
  119. c channel with 2 lists constraint is not yet supported
  120. ```
  121.  
  122. ```
  123. $ java org.xcsp.checker.SolutionChecker -cm Blackhole-04-3-00.xml solution.txt
  124. ```
  125.  
  126. ## Blackhole-4-04-0_X2
  127.  
  128. An unsatisfiable CSP
  129.  
  130. ```
  131. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Blackhole-4-04-0_X2.xml | tee solution.txt
  132. s UNKNOWN
  133. ```
  134.  
  135. ```
  136. $ java org.xcsp.checker.SolutionChecker -cm Blackhole-4-04-0_X2.xml solution.txt
  137. ```
  138.  
  139. ## bqwh-15-106-00_X2
  140.  
  141. A satisfiable CSP
  142.  
  143. ```
  144. $ timeout --kill-after=1s 10s ./naxos-xcsp3 bqwh-15-106-00_X2.xml | tee solution.txt
  145. s SATISFIABLE
  146. v <instantiation>
  147. v <list> x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 x100 x101 x102 x103 x104 x105 </list>
  148. v <values> 14 9 12 10 2 13 0 4 8 13 1 12 7 3 11 5 13 3 9 2 6 7 0 5 4 14 10 9 8 12 5 11 10 2 14 14 3 0 9 4 13 12 9 14 0 2 4 10 6 2 0 10 5 1 9 8 1 12 5 6 11 14 0 3 0 12 5 7 6 11 0 7 2 9 10 4 5 13 5 11 7 10 1 3 2 7 3 10 2 14 5 0 6 13 12 1 11 8 5 2 12 1 4 8 11 5 </values>
  149. v </instantiation>
  150. ```
  151.  
  152. ```
  153. $ java org.xcsp.checker.SolutionChecker -cm bqwh-15-106-00_X2.xml solution.txt
  154. OK
  155. ```
  156.  
  157. ## Cabinet-5561_X2
  158.  
  159. An unsatisfiable CSP
  160.  
  161. ```
  162. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Cabinet-5561_X2.xml | tee solution.txt
  163. Exception at line 560
  164. s UNSUPPORTED
  165. c maximum constraint is not yet supported
  166. ```
  167.  
  168. ```
  169. $ java org.xcsp.checker.SolutionChecker -cm Cabinet-5561_X2.xml solution.txt
  170. ```
  171.  
  172. ## CarSequencing-dingbas
  173.  
  174. A satisfiable CSP
  175.  
  176. ```
  177. $ timeout --kill-after=1s 10s ./naxos-xcsp3 CarSequencing-dingbas.xml | tee solution.txt
  178. Exception at line 11
  179. s UNSUPPORTED
  180. c cardinality with int values and int occurs constraint is not yet supported
  181. ```
  182.  
  183. ```
  184. $ java org.xcsp.checker.SolutionChecker -cm CarSequencing-dingbas.xml solution.txt
  185. ```
  186.  
  187. ## ColouredQueens-03
  188.  
  189. An unsatisfiable CSP
  190.  
  191. ```
  192. $ timeout --kill-after=1s 10s ./naxos-xcsp3 ColouredQueens-03.xml | tee solution.txt
  193. s UNSATISFIABLE
  194. ```
  195.  
  196. ```
  197. $ java org.xcsp.checker.SolutionChecker -cm ColouredQueens-03.xml solution.txt
  198. ```
  199.  
  200. ## ColouredQueens-05
  201.  
  202. A satisfiable CSP
  203.  
  204. ```
  205. $ timeout --kill-after=1s 10s ./naxos-xcsp3 ColouredQueens-05.xml | tee solution.txt
  206. s SATISFIABLE
  207. v <instantiation>
  208. v <list> x[0][0] x[0][1] x[0][2] x[0][3] x[0][4] x[1][0] x[1][1] x[1][2] x[1][3] x[1][4] x[2][0] x[2][1] x[2][2] x[2][3] x[2][4] x[3][0] x[3][1] x[3][2] x[3][3] x[3][4] x[4][0] x[4][1] x[4][2] x[4][3] x[4][4] </list>
  209. v <values> 0 1 2 3 4 2 3 4 0 1 4 0 1 2 3 1 2 3 4 0 3 4 0 1 2 </values>
  210. v </instantiation>
  211. ```
  212.  
  213. ```
  214. $ java org.xcsp.checker.SolutionChecker -cm ColouredQueens-05.xml solution.txt
  215. OK
  216. ```
  217.  
  218. ## composed-25-01-02-0
  219.  
  220. An unsatisfiable CSP
  221.  
  222. ```
  223. $ timeout --kill-after=1s 10s ./naxos-xcsp3 composed-25-01-02-0.xml | tee solution.txt
  224. s UNSATISFIABLE
  225. ```
  226.  
  227. ```
  228. $ java org.xcsp.checker.SolutionChecker -cm composed-25-01-02-0.xml solution.txt
  229. ```
  230.  
  231. ## CostasArray-10
  232.  
  233. A satisfiable CSP
  234.  
  235. ```
  236. $ timeout --kill-after=1s 10s ./naxos-xcsp3 CostasArray-10.xml | tee solution.txt
  237. s UNSUPPORTED
  238. c Only one arithmetic operation is permitted in 'sub(x[0],x[8]),sub(x[1],x[9])'
  239. ```
  240.  
  241. ```
  242. $ java org.xcsp.checker.SolutionChecker -cm CostasArray-10.xml solution.txt
  243. ```
  244.  
  245. ## CoveringArray-3-04-2-08
  246.  
  247. A satisfiable CSP
  248.  
  249. ```
  250. $ timeout --kill-after=1s 10s ./naxos-xcsp3 CoveringArray-3-04-2-08.xml | tee solution.txt
  251. Exception at line 18
  252. s UNSUPPORTED
  253. c channel with 2 lists constraint is not yet supported
  254. ```
  255.  
  256. ```
  257. $ java org.xcsp.checker.SolutionChecker -cm CoveringArray-3-04-2-08.xml solution.txt
  258. ```
  259.  
  260. ## Crossword-lex-vg-4-4
  261.  
  262. A satisfiable CSP
  263.  
  264. ## Crossword-lex-vg-4-4
  265.  
  266. A satisfiable CSP
  267.  
  268. ```
  269. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Crossword-lex-vg-4-4.xml | tee solution.txt
  270. Exception at line 30
  271. s UNSUPPORTED
  272. c AllDiff list constraint is not yet supported
  273. ```
  274.  
  275. ```
  276. $ java org.xcsp.checker.SolutionChecker -cm Crossword-lex-vg-4-4.xml solution.txt
  277. ```
  278.  
  279. ## CryptoPuzzle-send-more-money
  280.  
  281. A satisfiable CSP
  282.  
  283. ```
  284. $ timeout --kill-after=1s 10s ./naxos-xcsp3 CryptoPuzzle-send-more-money.xml | tee solution.txt
  285. s UNSUPPORTED
  286. c Only one arithmetic operation is permitted in 'mod(add(C[0],l[3],l[4]),10),l[24]'
  287. ```
  288.  
  289. ```
  290. $ java org.xcsp.checker.SolutionChecker -cm CryptoPuzzle-send-more-money.xml solution.txt
  291. ```
  292.  
  293. ## DeBruijnSequence-02-02
  294.  
  295. A satisfiable CSP
  296.  
  297. ```
  298. $ timeout --kill-after=1s 10s ./naxos-xcsp3 DeBruijnSequence-02-02.xml | tee solution.txt
  299. Exception at line 42
  300. s UNSUPPORTED
  301. c cardinality with int values and int occurs constraint is not yet supported
  302. ```
  303.  
  304. ```
  305. $ java org.xcsp.checker.SolutionChecker -cm DeBruijnSequence-02-02.xml solution.txt
  306. ```
  307.  
  308. ## DeBruijnSequence-02-04
  309.  
  310. A satisfiable CSP
  311.  
  312. ```
  313. $ timeout --kill-after=1s 10s ./naxos-xcsp3 DeBruijnSequence-02-04.xml | tee solution.txt
  314. Exception at line 149
  315. s UNSUPPORTED
  316. c cardinality with int values and int occurs constraint is not yet supported
  317. ```
  318.  
  319. ```
  320. $ java org.xcsp.checker.SolutionChecker -cm DeBruijnSequence-02-04.xml solution.txt
  321. ```
  322.  
  323. ## DiamondFree-004
  324.  
  325. An unsatisfiable CSP
  326.  
  327. ```
  328. $ timeout --kill-after=1s 10s ./naxos-xcsp3 DiamondFree-004.xml | tee solution.txt
  329. Exception at line 59
  330. s UNSUPPORTED
  331. c Lex constraint is not yet supported
  332. ```
  333.  
  334. ```
  335. $ java org.xcsp.checker.SolutionChecker -cm DiamondFree-004.xml solution.txt
  336. ```
  337.  
  338. ## DiamondFree-008
  339.  
  340. A satisfiable CSP
  341.  
  342. ```
  343. $ timeout --kill-after=1s 10s ./naxos-xcsp3 DiamondFree-008.xml | tee solution.txt
  344. Exception at line 188
  345. s UNSUPPORTED
  346. c Ordered constraint is not yet supported
  347. ```
  348.  
  349. ```
  350. $ java org.xcsp.checker.SolutionChecker -cm DiamondFree-008.xml solution.txt
  351. ```
  352.  
  353. ## DistinctVectors-05-100-02
  354.  
  355. A satisfiable CSP
  356.  
  357. ```
  358. $ timeout --kill-after=1s 10s ./naxos-xcsp3 DistinctVectors-05-100-02.xml | tee solution.txt
  359. Exception at line 12
  360. s UNSUPPORTED
  361. c AllDiff list constraint is not yet supported
  362. ```
  363.  
  364. ```
  365. $ java org.xcsp.checker.SolutionChecker -cm DistinctVectors-05-100-02.xml solution.txt
  366. ```
  367.  
  368. ## Domino-100-100
  369.  
  370. A satisfiable CSP
  371.  
  372. ```
  373. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Domino-100-100.xml | tee solution.txt
  374. Exception at line 6
  375. s UNSUPPORTED
  376. c Allequal constraint is not yet supported
  377. ```
  378.  
  379. ```
  380. $ java org.xcsp.checker.SolutionChecker -cm Domino-100-100.xml solution.txt
  381. ```
  382.  
  383. ## Dominoes-grid1
  384.  
  385. A satisfiable CSP
  386.  
  387. ```
  388. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Dominoes-grid1.xml | tee solution.txt
  389. s UNSUPPORTED
  390. c Invalid intension constraint 'in'
  391. ```
  392.  
  393. ```
  394. $ java org.xcsp.checker.SolutionChecker -cm Dominoes-grid1.xml solution.txt
  395. ```
  396.  
  397. ## driverlogw-01c
  398.  
  399. A satisfiable CSP
  400.  
  401. ```
  402. $ timeout --kill-after=1s 10s ./naxos-xcsp3 driverlogw-01c.xml | tee solution.txt
  403. s SATISFIABLE
  404. v <instantiation>
  405. v <list> x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] x[26] x[27] x[28] x[29] x[30] x[31] y[0] y[1] y[2] y[3] y[4] y[5] y[6] y[7] y[8] y[9] y[10] y[11] y[12] y[13] y[14] y[15] y[16] y[17] y[18] y[19] y[20] y[21] y[22] y[23] y[24] z[0] z[1] z[2] z[3] z[4] z[5] z[6] z[7] z[8] z[9] z[10] z[11] z[12] z[13] </list>
  406. v <values> 0 0 1 0 1 1 0 0 1 1 0 1 0 1 1 1 0 0 1 1 0 1 0 0 0 0 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 2 0 1 1 2 1 1 1 1 </values>
  407. v </instantiation>
  408. ```
  409.  
  410. ```
  411. $ java org.xcsp.checker.SolutionChecker -cm driverlogw-01c.xml solution.txt
  412. OK
  413. ```
  414.  
  415. ## Dubois-015
  416.  
  417. An unsatisfiable CSP
  418.  
  419. ```
  420. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Dubois-015.xml | tee solution.txt
  421. s UNSATISFIABLE
  422. ```
  423.  
  424. ```
  425. $ java org.xcsp.checker.SolutionChecker -cm Dubois-015.xml solution.txt
  426. ```
  427.  
  428. ## ehi-85-297-00
  429.  
  430. An unsatisfiable CSP
  431.  
  432. ```
  433. $ timeout --kill-after=1s 10s ./naxos-xcsp3 ehi-85-297-00.xml | tee solution.txt
  434. s UNSATISFIABLE
  435. ```
  436.  
  437. ```
  438. $ java org.xcsp.checker.SolutionChecker -cm ehi-85-297-00.xml solution.txt
  439. ```
  440.  
  441. ## GracefulGraph-K02-P02
  442.  
  443. A satisfiable CSP
  444.  
  445. ```
  446. $ timeout --kill-after=1s 10s ./naxos-xcsp3 GracefulGraph-K02-P02.xml | tee solution.txt
  447. s SATISFIABLE
  448. v <instantiation>
  449. v <list> cn[0][0] cn[0][1] cn[1][0] cn[1][1] ce[0][0][0] ce[0][0][1] ce[0][1][0] ce[0][1][1] ce[1][0][0] ce[1][0][1] ce[1][1][0] ce[1][1][1] cie[0][0] cie[0][1] </list>
  450. v <values> 2 1 0 4 1 1 1 1 1 4 1 1 2 3 </values>
  451. v </instantiation>
  452. ```
  453.  
  454. ```
  455. $ java org.xcsp.checker.SolutionChecker -cm GracefulGraph-K02-P02.xml solution.txt
  456. OK
  457. ```
  458.  
  459. ## Hanoi-04
  460.  
  461. A satisfiable CSP
  462.  
  463. ```
  464. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Hanoi-04.xml | tee solution.txt
  465. s UNSUPPORTED
  466. c Invalid intension constraint 'in'
  467. ```
  468.  
  469. ```
  470. $ java org.xcsp.checker.SolutionChecker -cm Hanoi-04.xml solution.txt
  471. ```
  472.  
  473. ## Haystacks-04
  474.  
  475. An unsatisfiable CSP
  476.  
  477. ```
  478. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Haystacks-04.xml | tee solution.txt
  479. s UNSUPPORTED
  480. c Only one arithmetic operation is permitted in '0,mul(sub(x[1],x[8]),sub(x[8],x[1]))'
  481. ```
  482.  
  483. ```
  484. $ java org.xcsp.checker.SolutionChecker -cm Haystacks-04.xml solution.txt
  485. ```
  486.  
  487. ## Kakuro-easy-000-ext
  488.  
  489. A satisfiable CSP
  490.  
  491. ```
  492. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Kakuro-easy-000-ext.xml | tee solution.txt
  493. s SATISFIABLE
  494. v <instantiation>
  495. v <list> x[0][0] x[0][1] x[0][2] x[0][3] x[0][4] x[0][5] x[1][0] x[1][1] x[1][2] x[1][3] x[1][4] x[1][5] x[2][0] x[2][1] x[2][2] x[2][3] x[2][4] x[2][5] x[3][0] x[3][1] x[3][2] x[3][3] x[3][4] x[3][5] x[4][0] x[4][1] x[4][2] x[4][3] x[4][4] x[4][5] x[5][0] x[5][1] x[5][2] x[5][3] x[5][4] x[5][5] </list>
  496. v <values> 1 1 1 1 1 1 1 1 5 8 1 1 1 8 6 9 4 1 1 9 8 1 3 1 1 1 7 9 2 3 1 1 9 8 6 1 </values>
  497. v </instantiation>
  498. ```
  499.  
  500. ```
  501. $ java org.xcsp.checker.SolutionChecker -cm Kakuro-easy-000-ext.xml solution.txt
  502. OK
  503. ```
  504.  
  505. ## Kakuro-easy-000-sumdiff
  506.  
  507. A satisfiable CSP
  508.  
  509. ```
  510. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Kakuro-easy-000-sumdiff.xml | tee solution.txt
  511. s SATISFIABLE
  512. v <instantiation>
  513. v <list> x[0][0] x[0][1] x[0][2] x[0][3] x[0][4] x[0][5] x[1][0] x[1][1] x[1][2] x[1][3] x[1][4] x[1][5] x[2][0] x[2][1] x[2][2] x[2][3] x[2][4] x[2][5] x[3][0] x[3][1] x[3][2] x[3][3] x[3][4] x[3][5] x[4][0] x[4][1] x[4][2] x[4][3] x[4][4] x[4][5] x[5][0] x[5][1] x[5][2] x[5][3] x[5][4] x[5][5] </list>
  514. v <values> 1 1 1 1 1 1 1 1 5 8 1 1 1 8 6 9 4 1 1 9 8 1 3 1 1 1 7 9 2 3 1 1 9 8 6 1 </values>
  515. v </instantiation>
  516. ```
  517.  
  518. ```
  519. $ java org.xcsp.checker.SolutionChecker -cm Kakuro-easy-000-sumdiff.xml solution.txt
  520. OK
  521. ```
  522.  
  523. ## Knights-008-05
  524.  
  525. An unsatisfiable CSP
  526.  
  527. ```
  528. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Knights-008-05.xml | tee solution.txt
  529. s UNSUPPORTED
  530. c Invalid intension constraint 'or'
  531. ```
  532.  
  533. ```
  534. $ java org.xcsp.checker.SolutionChecker -cm Knights-008-05.xml solution.txt
  535. ```
  536.  
  537. ## KnightTour-04-ext02
  538.  
  539. An unsatisfiable CSP
  540.  
  541. ```
  542. $ timeout --kill-after=1s 10s ./naxos-xcsp3 KnightTour-04-ext02.xml | tee solution.txt
  543. Exception at line 17
  544. s UNSUPPORTED
  545. c instantiation constraint not yet supported
  546. ```
  547.  
  548. ```
  549. $ java org.xcsp.checker.SolutionChecker -cm KnightTour-04-ext02.xml solution.txt
  550. ```
  551.  
  552. ## KnightTour-04-int
  553.  
  554. An unsatisfiable CSP
  555.  
  556. ```
  557. $ timeout --kill-after=1s 10s ./naxos-xcsp3 KnightTour-04-int.xml | tee solution.txt
  558. s UNSUPPORTED
  559. c Invalid intension constraint 'or'
  560. ```
  561.  
  562. ```
  563. $ java org.xcsp.checker.SolutionChecker -cm KnightTour-04-int.xml solution.txt
  564. ```
  565.  
  566. ## LabeledDice
  567.  
  568. A satisfiable CSP
  569.  
  570. ```
  571. $ timeout --kill-after=1s 10s ./naxos-xcsp3 LabeledDice.xml | tee solution.txt
  572. Exception at line 25
  573. s UNSUPPORTED
  574. c cardinality with int values and int occurs constraint is not yet supported
  575. ```
  576.  
  577. ```
  578. $ java org.xcsp.checker.SolutionChecker -cm LabeledDice.xml solution.txt
  579. ```
  580.  
  581. ## Langford-2-05
  582.  
  583. An unsatisfiable CSP
  584.  
  585. ```
  586. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Langford-2-05.xml | tee solution.txt
  587. s UNSATISFIABLE
  588. ```
  589.  
  590. ```
  591. $ java org.xcsp.checker.SolutionChecker -cm Langford-2-05.xml solution.txt
  592. ```
  593.  
  594. ## LangfordBin-05
  595.  
  596. An unsatisfiable CSP
  597.  
  598. ```
  599. $ timeout --kill-after=1s 10s ./naxos-xcsp3 LangfordBin-05.xml | tee solution.txt
  600. s UNKNOWN
  601. ```
  602.  
  603. ```
  604. $ java org.xcsp.checker.SolutionChecker -cm LangfordBin-05.xml solution.txt
  605. ```
  606.  
  607. ## MagicHexagon-02-0000
  608.  
  609. An unsatisfiable CSP
  610.  
  611. ```
  612. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MagicHexagon-02-0000.xml | tee solution.txt
  613. s UNSATISFIABLE
  614. ```
  615.  
  616. ```
  617. $ java org.xcsp.checker.SolutionChecker -cm MagicHexagon-02-0000.xml solution.txt
  618. ```
  619.  
  620. ## MagicHexagon-03-0001
  621.  
  622. A satisfiable CSP
  623.  
  624. ```
  625. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MagicHexagon-03-0001.xml | tee solution.txt
  626. s SATISFIABLE
  627. v <instantiation>
  628. v <list> x[0][0] x[0][1] x[0][2] x[0][3] x[0][4] x[1][0] x[1][1] x[1][2] x[1][3] x[1][4] x[2][0] x[2][1] x[2][2] x[2][3] x[2][4] x[3][0] x[3][1] x[3][2] x[3][3] x[3][4] x[4][0] x[4][1] x[4][2] x[4][3] x[4][4] </list>
  629. v <values> 3 19 16 1 1 17 7 2 12 1 18 1 5 4 10 11 6 8 13 1 9 14 15 1 1 </values>
  630. v </instantiation>
  631. ```
  632.  
  633. ```
  634. $ java org.xcsp.checker.SolutionChecker -cm MagicHexagon-03-0001.xml solution.txt
  635. OK
  636. ```
  637.  
  638. ## MagicSequence-003-ca
  639.  
  640. An unsatisfiable CSP
  641.  
  642. ```
  643. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MagicSequence-003-ca.xml | tee solution.txt
  644. Exception at line 10
  645. s UNSUPPORTED
  646. c cardinality with int values and int occurs constraint is not yet supported
  647. ```
  648.  
  649. ```
  650. $ java org.xcsp.checker.SolutionChecker -cm MagicSequence-003-ca.xml solution.txt
  651. ```
  652.  
  653. ## MagicSequence-003-co
  654.  
  655. An unsatisfiable CSP
  656.  
  657. ```
  658. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MagicSequence-003-co.xml | tee solution.txt
  659. Exception at line 10
  660. s UNSUPPORTED
  661. c exactly Variable constraint is not yet supported
  662. ```
  663.  
  664. ```
  665. $ java org.xcsp.checker.SolutionChecker -cm MagicSequence-003-co.xml solution.txt
  666. ```
  667.  
  668. ## MagicSequence-004-ca
  669.  
  670. A satisfiable CSP
  671.  
  672. ```
  673. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MagicSequence-004-ca.xml | tee solution.txt
  674. Exception at line 10
  675. s UNSUPPORTED
  676. c cardinality with int values and int occurs constraint is not yet supported
  677. ```
  678.  
  679. ```
  680. $ java org.xcsp.checker.SolutionChecker -cm MagicSequence-004-ca.xml solution.txt
  681. ```
  682.  
  683. ## MagicSequence-004-co
  684.  
  685. A satisfiable CSP
  686.  
  687. ```
  688. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MagicSequence-004-co.xml | tee solution.txt
  689. Exception at line 10
  690. s UNSUPPORTED
  691. c exactly Variable constraint is not yet supported
  692. ```
  693.  
  694. ```
  695. $ java org.xcsp.checker.SolutionChecker -cm MagicSequence-004-co.xml solution.txt
  696. ```
  697.  
  698. ## MagicSquare-3-mdd
  699.  
  700. A satisfiable CSP
  701.  
  702. ```
  703. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MagicSquare-3-mdd.xml | tee solution.txt
  704. Exception at line 15
  705. s UNSUPPORTED
  706. c MDD constraint is not yet supported
  707. ```
  708.  
  709. ```
  710. $ java org.xcsp.checker.SolutionChecker -cm MagicSquare-3-mdd.xml solution.txt
  711. ```
  712.  
  713. ## MagicSquare-3-sum
  714.  
  715. A satisfiable CSP
  716.  
  717. ```
  718. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MagicSquare-3-sum.xml | tee solution.txt
  719. s SATISFIABLE
  720. v <instantiation>
  721. v <list> x[0][0] x[0][1] x[0][2] x[1][0] x[1][1] x[1][2] x[2][0] x[2][1] x[2][2] </list>
  722. v <values> 2 7 6 9 5 1 4 3 8 </values>
  723. v </instantiation>
  724. ```
  725.  
  726. ```
  727. $ java org.xcsp.checker.SolutionChecker -cm MagicSquare-3-sum.xml solution.txt
  728. OK
  729. ```
  730.  
  731. ## MagicSquare-3-table
  732.  
  733. A satisfiable CSP
  734.  
  735. ```
  736. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MagicSquare-3-table.xml | tee solution.txt
  737. s SATISFIABLE
  738. v <instantiation>
  739. v <list> x[0][0] x[0][1] x[0][2] x[1][0] x[1][1] x[1][2] x[2][0] x[2][1] x[2][2] </list>
  740. v <values> 2 7 6 9 5 1 4 3 8 </values>
  741. v </instantiation>
  742. ```
  743.  
  744. ```
  745. $ java org.xcsp.checker.SolutionChecker -cm MagicSquare-3-table.xml solution.txt
  746. OK
  747. ```
  748.  
  749. ## MarketSplit-01
  750.  
  751. A satisfiable CSP
  752.  
  753. ```
  754. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MarketSplit-01.xml | tee solution.txt
  755. ```
  756.  
  757. ```
  758. $ java org.xcsp.checker.SolutionChecker -cm MarketSplit-01.xml solution.txt
  759. One s line expected
  760. ```
  761.  
  762. ## MultiKnapsack-1-01
  763.  
  764. A satisfiable CSP
  765.  
  766. ```
  767. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MultiKnapsack-1-01.xml | tee solution.txt
  768. s SATISFIABLE
  769. v <instantiation>
  770. v <list> x[0] x[1] x[2] x[3] x[4] x[5] </list>
  771. v <values> 0 1 1 0 0 1 </values>
  772. v </instantiation>
  773. ```
  774.  
  775. ```
  776. $ java org.xcsp.checker.SolutionChecker -cm MultiKnapsack-1-01.xml solution.txt
  777. OK
  778. ```
  779.  
  780. ## MultiKnapsack-1-0_X2
  781.  
  782. A satisfiable CSP
  783.  
  784. ```
  785. $ timeout --kill-after=1s 10s ./naxos-xcsp3 MultiKnapsack-1-0_X2.xml | tee solution.txt
  786. s SATISFIABLE
  787. v <instantiation>
  788. v <list> x[0] x[1] x[2] x[3] x[4] x[5] </list>
  789. v <values> 0 1 1 0 0 1 </values>
  790. v </instantiation>
  791. ```
  792.  
  793. ```
  794. $ java org.xcsp.checker.SolutionChecker -cm MultiKnapsack-1-0_X2.xml solution.txt
  795. OK
  796. ```
  797.  
  798. ## Nonogram-001-regular
  799.  
  800. A satisfiable CSP
  801.  
  802. ```
  803. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Nonogram-001-regular.xml | tee solution.txt
  804. Exception at line 12
  805. s UNSUPPORTED
  806. c regular constraint is not yet supported
  807. ```
  808.  
  809. ```
  810. $ java org.xcsp.checker.SolutionChecker -cm Nonogram-001-regular.xml solution.txt
  811. ```
  812.  
  813. ## Nonogram-001-table
  814.  
  815. A satisfiable CSP
  816.  
  817. ```
  818. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Nonogram-001-table.xml | tee solution.txt
  819. s SATISFIABLE
  820. v <instantiation>
  821. v <list> x[0][0] x[0][1] x[0][2] x[0][3] x[0][4] x[0][5] x[0][6] x[0][7] x[0][8] x[0][9] x[0][10] x[0][11] x[0][12] x[0][13] x[0][14] x[0][15] x[0][16] x[0][17] x[0][18] x[0][19] x[0][20] x[0][21] x[0][22] x[0][23] x[1][0] x[1][1] x[1][2] x[1][3] x[1][4] x[1][5] x[1][6] x[1][7] x[1][8] x[1][9] x[1][10] x[1][11] x[1][12] x[1][13] x[1][14] x[1][15] x[1][16] x[1][17] x[1][18] x[1][19] x[1][20] x[1][21] x[1][22] x[1][23] x[2][0] x[2][1] x[2][2] x[2][3] x[2][4] x[2][5] x[2][6] x[2][7] x[2][8] x[2][9] x[2][10] x[2][11] x[2][12] x[2][13] x[2][14] x[2][15] x[2][16] x[2][17] x[2][18] x[2][19] x[2][20] x[2][21] x[2][22] x[2][23] x[3][0] x[3][1] x[3][2] x[3][3] x[3][4] x[3][5] x[3][6] x[3][7] x[3][8] x[3][9] x[3][10] x[3][11] x[3][12] x[3][13] x[3][14] x[3][15] x[3][16] x[3][17] x[3][18] x[3][19] x[3][20] x[3][21] x[3][22] x[3][23] x[4][0] x[4][1] x[4][2] x[4][3] x[4][4] x[4][5] x[4][6] x[4][7] x[4][8] x[4][9] x[4][10] x[4][11] x[4][12] x[4][13] x[4][14] x[4][15] x[4][16] x[4][17] x[4][18] x[4][19] x[4][20] x[4][21] x[4][22] x[4][23] x[5][0] x[5][1] x[5][2] x[5][3] x[5][4] x[5][5] x[5][6] x[5][7] x[5][8] x[5][9] x[5][10] x[5][11] x[5][12] x[5][13] x[5][14] x[5][15] x[5][16] x[5][17] x[5][18] x[5][19] x[5][20] x[5][21] x[5][22] x[5][23] x[6][0] x[6][1] x[6][2] x[6][3] x[6][4] x[6][5] x[6][6] x[6][7] x[6][8] x[6][9] x[6][10] x[6][11] x[6][12] x[6][13] x[6][14] x[6][15] x[6][16] x[6][17] x[6][18] x[6][19] x[6][20] x[6][21] x[6][22] x[6][23] x[7][0] x[7][1] x[7][2] x[7][3] x[7][4] x[7][5] x[7][6] x[7][7] x[7][8] x[7][9] x[7][10] x[7][11] x[7][12] x[7][13] x[7][14] x[7][15] x[7][16] x[7][17] x[7][18] x[7][19] x[7][20] x[7][21] x[7][22] x[7][23] x[8][0] x[8][1] x[8][2] x[8][3] x[8][4] x[8][5] x[8][6] x[8][7] x[8][8] x[8][9] x[8][10] x[8][11] x[8][12] x[8][13] x[8][14] x[8][15] x[8][16] x[8][17] x[8][18] x[8][19] x[8][20] x[8][21] x[8][22] x[8][23] x[9][0] x[9][1] x[9][2] x[9][3] x[9][4] x[9][5] x[9][6] x[9][7] x[9][8] x[9][9] x[9][10] x[9][11] x[9][12] x[9][13] x[9][14] x[9][15] x[9][16] x[9][17] x[9][18] x[9][19] x[9][20] x[9][21] x[9][22] x[9][23] x[10][0] x[10][1] x[10][2] x[10][3] x[10][4] x[10][5] x[10][6] x[10][7] x[10][8] x[10][9] x[10][10] x[10][11] x[10][12] x[10][13] x[10][14] x[10][15] x[10][16] x[10][17] x[10][18] x[10][19] x[10][20] x[10][21] x[10][22] x[10][23] x[11][0] x[11][1] x[11][2] x[11][3] x[11][4] x[11][5] x[11][6] x[11][7] x[11][8] x[11][9] x[11][10] x[11][11] x[11][12] x[11][13] x[11][14] x[11][15] x[11][16] x[11][17] x[11][18] x[11][19] x[11][20] x[11][21] x[11][22] x[11][23] x[12][0] x[12][1] x[12][2] x[12][3] x[12][4] x[12][5] x[12][6] x[12][7] x[12][8] x[12][9] x[12][10] x[12][11] x[12][12] x[12][13] x[12][14] x[12][15] x[12][16] x[12][17] x[12][18] x[12][19] x[12][20] x[12][21] x[12][22] x[12][23] x[13][0] x[13][1] x[13][2] x[13][3] x[13][4] x[13][5] x[13][6] x[13][7] x[13][8] x[13][9] x[13][10] x[13][11] x[13][12] x[13][13] x[13][14] x[13][15] x[13][16] x[13][17] x[13][18] x[13][19] x[13][20] x[13][21] x[13][22] x[13][23] x[14][0] x[14][1] x[14][2] x[14][3] x[14][4] x[14][5] x[14][6] x[14][7] x[14][8] x[14][9] x[14][10] x[14][11] x[14][12] x[14][13] x[14][14] x[14][15] x[14][16] x[14][17] x[14][18] x[14][19] x[14][20] x[14][21] x[14][22] x[14][23] x[15][0] x[15][1] x[15][2] x[15][3] x[15][4] x[15][5] x[15][6] x[15][7] x[15][8] x[15][9] x[15][10] x[15][11] x[15][12] x[15][13] x[15][14] x[15][15] x[15][16] x[15][17] x[15][18] x[15][19] x[15][20] x[15][21] x[15][22] x[15][23] x[16][0] x[16][1] x[16][2] x[16][3] x[16][4] x[16][5] x[16][6] x[16][7] x[16][8] x[16][9] x[16][10] x[16][11] x[16][12] x[16][13] x[16][14] x[16][15] x[16][16] x[16][17] x[16][18] x[16][19] x[16][20] x[16][21] x[16][22] x[16][23] x[17][0] x[17][1] x[17][2] x[17][3] x[17][4] x[17][5] x[17][6] x[17][7] x[17][8] x[17][9] x[17][10] x[17][11] x[17][12] x[17][13] x[17][14] x[17][15] x[17][16] x[17][17] x[17][18] x[17][19] x[17][20] x[17][21] x[17][22] x[17][23] x[18][0] x[18][1] x[18][2] x[18][3] x[18][4] x[18][5] x[18][6] x[18][7] x[18][8] x[18][9] x[18][10] x[18][11] x[18][12] x[18][13] x[18][14] x[18][15] x[18][16] x[18][17] x[18][18] x[18][19] x[18][20] x[18][21] x[18][22] x[18][23] x[19][0] x[19][1] x[19][2] x[19][3] x[19][4] x[19][5] x[19][6] x[19][7] x[19][8] x[19][9] x[19][10] x[19][11] x[19][12] x[19][13] x[19][14] x[19][15] x[19][16] x[19][17] x[19][18] x[19][19] x[19][20] x[19][21] x[19][22] x[19][23] x[20][0] x[20][1] x[20][2] x[20][3] x[20][4] x[20][5] x[20][6] x[20][7] x[20][8] x[20][9] x[20][10] x[20][11] x[20][12] x[20][13] x[20][14] x[20][15] x[20][16] x[20][17] x[20][18] x[20][19] x[20][20] x[20][21] x[20][22] x[20][23] x[21][0] x[21][1] x[21][2] x[21][3] x[21][4] x[21][5] x[21][6] x[21][7] x[21][8] x[21][9] x[21][10] x[21][11] x[21][12] x[21][13] x[21][14] x[21][15] x[21][16] x[21][17] x[21][18] x[21][19] x[21][20] x[21][21] x[21][22] x[21][23] x[22][0] x[22][1] x[22][2] x[22][3] x[22][4] x[22][5] x[22][6] x[22][7] x[22][8] x[22][9] x[22][10] x[22][11] x[22][12] x[22][13] x[22][14] x[22][15] x[22][16] x[22][17] x[22][18] x[22][19] x[22][20] x[22][21] x[22][22] x[22][23] x[23][0] x[23][1] x[23][2] x[23][3] x[23][4] x[23][5] x[23][6] x[23][7] x[23][8] x[23][9] x[23][10] x[23][11] x[23][12] x[23][13] x[23][14] x[23][15] x[23][16] x[23][17] x[23][18] x[23][19] x[23][20] x[23][21] x[23][22] x[23][23] </list>
  822. v <values> 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 </values>
  823. v </instantiation>
  824. ```
  825.  
  826. ```
  827. $ java org.xcsp.checker.SolutionChecker -cm Nonogram-001-table.xml solution.txt
  828. OK
  829. ```
  830.  
  831. ## NumberPartitioning-004
  832.  
  833. An unsatisfiable CSP
  834.  
  835. ```
  836. $ timeout --kill-after=1s 10s ./naxos-xcsp3 NumberPartitioning-004.xml | tee solution.txt
  837. Exception at line 43
  838. s UNSUPPORTED
  839. c Ordered constraint is not yet supported
  840. ```
  841.  
  842. ```
  843. $ java org.xcsp.checker.SolutionChecker -cm NumberPartitioning-004.xml solution.txt
  844. ```
  845.  
  846. ## NumberPartitioning-008
  847.  
  848. A satisfiable CSP
  849.  
  850. ```
  851. $ timeout --kill-after=1s 10s ./naxos-xcsp3 NumberPartitioning-008.xml | tee solution.txt
  852. Exception at line 48
  853. s UNSUPPORTED
  854. c Ordered constraint is not yet supported
  855. ```
  856.  
  857. ```
  858. $ java org.xcsp.checker.SolutionChecker -cm NumberPartitioning-008.xml solution.txt
  859. ```
  860.  
  861. ## Ortholatin-002
  862.  
  863. An unsatisfiable CSP
  864.  
  865. ```
  866. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Ortholatin-002.xml | tee solution.txt
  867. Exception at line 10
  868. s UNSUPPORTED
  869. c AllDiff matrix constraint is not yet supported
  870. ```
  871.  
  872. ```
  873. $ java org.xcsp.checker.SolutionChecker -cm Ortholatin-002.xml solution.txt
  874. ```
  875.  
  876. ## Ortholatin-003
  877.  
  878. A satisfiable CSP
  879.  
  880. ```
  881. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Ortholatin-003.xml | tee solution.txt
  882. Exception at line 10
  883. s UNSUPPORTED
  884. c AllDiff matrix constraint is not yet supported
  885. ```
  886.  
  887. ```
  888. $ java org.xcsp.checker.SolutionChecker -cm Ortholatin-003.xml solution.txt
  889. ```
  890.  
  891. ## pigeonsPlus-06-03
  892.  
  893. An unsatisfiable CSP
  894.  
  895. ```
  896. $ timeout --kill-after=1s 10s ./naxos-xcsp3 pigeonsPlus-06-03.xml | tee solution.txt
  897. s UNSATISFIABLE
  898. ```
  899.  
  900. ```
  901. $ java org.xcsp.checker.SolutionChecker -cm pigeonsPlus-06-03.xml solution.txt
  902. ```
  903.  
  904. ## Primes-10-20-2-1
  905.  
  906. A satisfiable CSP
  907.  
  908. ```
  909. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Primes-10-20-2-1.xml | tee solution.txt
  910. s SATISFIABLE
  911. v <instantiation>
  912. v <list> x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] x[26] x[27] x[28] x[29] x[30] x[31] x[32] x[33] x[34] x[35] x[36] x[37] x[38] x[39] x[40] x[41] x[42] x[43] x[44] x[45] x[46] x[47] x[48] x[49] x[50] x[51] x[52] x[53] x[54] x[55] x[56] x[57] x[58] x[59] x[60] x[61] x[62] x[63] x[64] x[65] x[66] x[67] x[68] x[69] x[70] x[71] x[72] x[73] x[74] x[75] x[76] x[77] x[78] x[79] x[80] x[81] x[82] x[83] x[84] x[85] x[86] x[87] x[88] x[89] x[90] x[91] x[92] x[93] x[94] x[95] x[96] x[97] x[98] x[99] </list>
  913. v <values> 2 17 2 2 7 13 22 5 29 3 2 2 2 26 2 2 2 3 2 27 2 13 2 2 2 2 2 7 19 13 29 3 2 2 2 2 7 17 2 2 29 28 3 26 2 2 23 2 2 2 2 2 2 4 2 2 5 2 17 2 2 2 2 2 2 2 2 2 7 2 2 19 2 2 2 2 2 2 2 23 2 2 2 2 23 2 2 2 3 2 2 2 2 2 2 2 17 2 2 6 </values>
  914. v </instantiation>
  915. ```
  916.  
  917. ```
  918. $ java org.xcsp.checker.SolutionChecker -cm Primes-10-20-2-1.xml solution.txt
  919. OK
  920. ```
  921.  
  922. ## PropStress-0020
  923.  
  924. An unsatisfiable CSP
  925.  
  926. ```
  927. $ timeout --kill-after=1s 10s ./naxos-xcsp3 PropStress-0020.xml | tee solution.txt
  928. s UNSATISFIABLE
  929. ```
  930.  
  931. ```
  932. $ java org.xcsp.checker.SolutionChecker -cm PropStress-0020.xml solution.txt
  933. ```
  934.  
  935. ## QuasiGroup-3-04
  936.  
  937. A satisfiable CSP
  938.  
  939. ```
  940. $ timeout --kill-after=1s 10s ./naxos-xcsp3 QuasiGroup-3-04.xml | tee solution.txt
  941. Exception at line 9
  942. s UNSUPPORTED
  943. c AllDiff matrix constraint is not yet supported
  944. ```
  945.  
  946. ```
  947. $ java org.xcsp.checker.SolutionChecker -cm QuasiGroup-3-04.xml solution.txt
  948. ```
  949.  
  950. ## QuasiGroup-4-04
  951.  
  952. An unsatisfiable CSP
  953.  
  954. ```
  955. $ timeout --kill-after=1s 10s ./naxos-xcsp3 QuasiGroup-4-04.xml | tee solution.txt
  956. Exception at line 9
  957. s UNSUPPORTED
  958. c AllDiff matrix constraint is not yet supported
  959. ```
  960.  
  961. ```
  962. $ java org.xcsp.checker.SolutionChecker -cm QuasiGroup-4-04.xml solution.txt
  963. ```
  964.  
  965. ## QueenAttacking-04_X2
  966.  
  967. An unsatisfiable CSP
  968.  
  969. ```
  970. $ timeout --kill-after=1s 10s ./naxos-xcsp3 QueenAttacking-04_X2.xml | tee solution.txt
  971. s UNSUPPORTED
  972. c Invalid intension constraint 'or'
  973. ```
  974.  
  975. ```
  976. $ java org.xcsp.checker.SolutionChecker -cm QueenAttacking-04_X2.xml solution.txt
  977. ```
  978.  
  979. ## QueenAttacking-05_X2
  980.  
  981. A satisfiable CSP
  982.  
  983. ```
  984. $ timeout --kill-after=1s 10s ./naxos-xcsp3 QueenAttacking-05_X2.xml | tee solution.txt
  985. s UNSUPPORTED
  986. c Invalid intension constraint 'or'
  987. ```
  988.  
  989. ```
  990. $ java org.xcsp.checker.SolutionChecker -cm QueenAttacking-05_X2.xml solution.txt
  991. ```
  992.  
  993. ## Queens-0012-m1
  994.  
  995. A satisfiable CSP
  996.  
  997. ```
  998. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Queens-0012-m1.xml | tee solution.txt
  999. s SATISFIABLE
  1000. v <instantiation>
  1001. v <list> q[0] q[1] q[2] q[3] q[4] q[5] q[6] q[7] q[8] q[9] q[10] q[11] </list>
  1002. v <values> 0 2 8 6 3 9 11 4 10 7 5 1 </values>
  1003. v </instantiation>
  1004. ```
  1005.  
  1006. ```
  1007. $ java org.xcsp.checker.SolutionChecker -cm Queens-0012-m1.xml solution.txt
  1008. OK
  1009. ```
  1010.  
  1011. ## QueensKnights-008-05-add
  1012.  
  1013. An unsatisfiable CSP
  1014.  
  1015. ```
  1016. $ timeout --kill-after=1s 10s ./naxos-xcsp3 QueensKnights-008-05-add.xml | tee solution.txt
  1017. s UNSUPPORTED
  1018. c Invalid intension constraint 'and(ne(q[0],q[1]),ne(dist(q[0],q[1]),1))'
  1019. ```
  1020.  
  1021. ```
  1022. $ java org.xcsp.checker.SolutionChecker -cm QueensKnights-008-05-add.xml solution.txt
  1023. ```
  1024.  
  1025. ## QueensKnights-008-05-mul
  1026.  
  1027. An unsatisfiable CSP
  1028.  
  1029. ```
  1030. $ timeout --kill-after=1s 10s ./naxos-xcsp3 QueensKnights-008-05-mul.xml | tee solution.txt
  1031. s UNSUPPORTED
  1032. c Invalid intension constraint 'and(ne(q[0],q[1]),ne(dist(q[0],q[1]),1))'
  1033. ```
  1034.  
  1035. ```
  1036. $ java org.xcsp.checker.SolutionChecker -cm QueensKnights-008-05-mul.xml solution.txt
  1037. ```
  1038.  
  1039. ## qwh-10-57-0_X2
  1040.  
  1041. A satisfiable CSP
  1042.  
  1043. ```
  1044. $ timeout --kill-after=1s 10s ./naxos-xcsp3 qwh-10-57-0_X2.xml | tee solution.txt
  1045. s SATISFIABLE
  1046. v <instantiation>
  1047. v <list> x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 </list>
  1048. v <values> 8 6 5 7 4 2 3 1 9 0 1 5 3 2 9 4 0 6 8 7 7 1 9 6 3 0 2 5 4 8 9 0 4 3 1 5 8 7 6 2 2 9 6 4 0 8 7 3 1 5 4 7 2 1 8 3 6 0 5 9 5 3 8 0 7 6 1 9 2 4 3 8 1 9 2 7 5 4 0 6 0 2 7 5 6 9 4 8 3 1 6 4 0 8 5 1 9 2 7 3 </values>
  1049. v </instantiation>
  1050. ```
  1051.  
  1052. ```
  1053. $ java org.xcsp.checker.SolutionChecker -cm qwh-10-57-0_X2.xml solution.txt
  1054. OK
  1055. ```
  1056.  
  1057. ## qwh-o005-h10
  1058.  
  1059. A satisfiable CSP
  1060.  
  1061. ```
  1062. $ timeout --kill-after=1s 10s ./naxos-xcsp3 qwh-o005-h10.xml | tee solution.txt
  1063. Exception at line 8
  1064. s UNSUPPORTED
  1065. c AllDiff matrix constraint is not yet supported
  1066. ```
  1067.  
  1068. ```
  1069. $ java org.xcsp.checker.SolutionChecker -cm qwh-o005-h10.xml solution.txt
  1070. ```
  1071.  
  1072. ## RadarSurveillance-8-24-3-2-01
  1073.  
  1074. An unsatisfiable CSP
  1075.  
  1076. ```
  1077. $ timeout --kill-after=1s 10s ./naxos-xcsp3 RadarSurveillance-8-24-3-2-01.xml | tee solution.txt
  1078. s UNSUPPORTED
  1079. c Only one arithmetic operation is permitted in 'add(ge(x[0][4],1),ge(x[3][0],1),ge(x[6][5],2),ge(x[7][5],3)),3'
  1080. ```
  1081.  
  1082. ```
  1083. $ java org.xcsp.checker.SolutionChecker -cm RadarSurveillance-8-24-3-2-01.xml solution.txt
  1084. ```
  1085.  
  1086. ## RenaultMod-01
  1087.  
  1088. An unsatisfiable CSP
  1089.  
  1090. ```
  1091. $ timeout --kill-after=1s 10s ./naxos-xcsp3 RenaultMod-01.xml | tee solution.txt
  1092. s UNKNOWN
  1093. ```
  1094.  
  1095. ```
  1096. $ java org.xcsp.checker.SolutionChecker -cm RenaultMod-01.xml solution.txt
  1097. ```
  1098.  
  1099. ## Rlfap-scen-06
  1100.  
  1101. An unsatisfiable CSP
  1102.  
  1103. ```
  1104. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Rlfap-scen-06.xml | tee solution.txt
  1105. ```
  1106.  
  1107. ```
  1108. $ java org.xcsp.checker.SolutionChecker -cm Rlfap-scen-06.xml solution.txt
  1109. One s line expected
  1110. ```
  1111.  
  1112. ## RoomMate-magic-10-50-int
  1113.  
  1114. An unsatisfiable CSP
  1115.  
  1116. ```
  1117. $ timeout --kill-after=1s 10s ./naxos-xcsp3 RoomMate-magic-10-50-int.xml | tee solution.txt
  1118. s UNSUPPORTED
  1119. c Invalid intension constraint 'imp(gt(x[0],0),lt(x[2],6))'
  1120. ```
  1121.  
  1122. ```
  1123. $ java org.xcsp.checker.SolutionChecker -cm RoomMate-magic-10-50-int.xml solution.txt
  1124. ```
  1125.  
  1126. ## RoomMate-sr0006-int
  1127.  
  1128. A satisfiable CSP
  1129.  
  1130. ```
  1131. $ timeout --kill-after=1s 10s ./naxos-xcsp3 RoomMate-sr0006-int.xml | tee solution.txt
  1132. s UNSUPPORTED
  1133. c Invalid intension constraint 'imp(gt(x[0],0),lt(x[2],3))'
  1134. ```
  1135.  
  1136. ```
  1137. $ java org.xcsp.checker.SolutionChecker -cm RoomMate-sr0006-int.xml solution.txt
  1138. ```
  1139.  
  1140. ## SchurrLemma-012-9-mod
  1141.  
  1142. An unsatisfiable CSP
  1143.  
  1144. ```
  1145. $ timeout --kill-after=1s 10s ./naxos-xcsp3 SchurrLemma-012-9-mod.xml | tee solution.txt
  1146. s UNSATISFIABLE
  1147. ```
  1148.  
  1149. ```
  1150. $ java org.xcsp.checker.SolutionChecker -cm SchurrLemma-012-9-mod.xml solution.txt
  1151. ```
  1152.  
  1153. ## SchurrLemma-023-3
  1154.  
  1155. A satisfiable CSP
  1156.  
  1157. ```
  1158. $ timeout --kill-after=1s 10s ./naxos-xcsp3 SchurrLemma-023-3.xml | tee solution.txt
  1159. Exception at line 132
  1160. s UNSUPPORTED
  1161. c NotAllequal constraint is not yet supported
  1162. ```
  1163.  
  1164. ```
  1165. $ java org.xcsp.checker.SolutionChecker -cm SchurrLemma-023-3.xml solution.txt
  1166. ```
  1167.  
  1168. ## SocialGolfers-5-4-3-cp
  1169.  
  1170. A satisfiable CSP
  1171.  
  1172. ```
  1173. $ timeout --kill-after=1s 10s ./naxos-xcsp3 SocialGolfers-5-4-3-cp.xml | tee solution.txt
  1174. s UNSUPPORTED
  1175. c Invalid intension constraint 'or'
  1176. ```
  1177.  
  1178. ```
  1179. $ java org.xcsp.checker.SolutionChecker -cm SocialGolfers-5-4-3-cp.xml solution.txt
  1180. ```
  1181.  
  1182. ## SportsScheduling-04
  1183.  
  1184. An unsatisfiable CSP
  1185.  
  1186. ```
  1187. $ timeout --kill-after=1s 10s ./naxos-xcsp3 SportsScheduling-04.xml | tee solution.txt
  1188. Exception at line 37
  1189. s UNSUPPORTED
  1190. c cardinality with int values and int occurs constraint is not yet supported
  1191. ```
  1192.  
  1193. ```
  1194. $ java org.xcsp.checker.SolutionChecker -cm SportsScheduling-04.xml solution.txt
  1195. ```
  1196.  
  1197. ## SportsScheduling-06
  1198.  
  1199. A satisfiable CSP
  1200.  
  1201. ```
  1202. $ timeout --kill-after=1s 10s ./naxos-xcsp3 SportsScheduling-06.xml | tee solution.txt
  1203. Exception at line 49
  1204. s UNSUPPORTED
  1205. c cardinality with int values and int occurs constraint is not yet supported
  1206. ```
  1207.  
  1208. ```
  1209. $ java org.xcsp.checker.SolutionChecker -cm SportsScheduling-06.xml solution.txt
  1210. ```
  1211.  
  1212. ## Steiner3-05
  1213.  
  1214. An unsatisfiable CSP
  1215.  
  1216. ```
  1217. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Steiner3-05.xml | tee solution.txt
  1218. Exception at line 14
  1219. s UNSUPPORTED
  1220. c Ordered constraint is not yet supported
  1221. ```
  1222.  
  1223. ```
  1224. $ java org.xcsp.checker.SolutionChecker -cm Steiner3-05.xml solution.txt
  1225. ```
  1226.  
  1227. ## Steiner3-07
  1228.  
  1229. A satisfiable CSP
  1230.  
  1231. ```
  1232. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Steiner3-07.xml | tee solution.txt
  1233. Exception at line 18
  1234. s UNSUPPORTED
  1235. c Ordered constraint is not yet supported
  1236. ```
  1237.  
  1238. ```
  1239. $ java org.xcsp.checker.SolutionChecker -cm Steiner3-07.xml solution.txt
  1240. ```
  1241.  
  1242. ## Subisomorphism-A-01
  1243.  
  1244. A satisfiable CSP
  1245.  
  1246. ```
  1247. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Subisomorphism-A-01.xml | tee solution.txt
  1248. s SATISFIABLE
  1249. v <instantiation>
  1250. v <list> x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] x[26] x[27] x[28] x[29] x[30] x[31] x[32] x[33] x[34] x[35] x[36] x[37] x[38] x[39] x[40] x[41] x[42] x[43] x[44] x[45] x[46] x[47] x[48] x[49] x[50] x[51] x[52] x[53] x[54] x[55] x[56] x[57] x[58] x[59] x[60] x[61] x[62] x[63] x[64] x[65] x[66] x[67] x[68] x[69] x[70] x[71] x[72] x[73] x[74] x[75] x[76] x[77] x[78] x[79] x[80] x[81] x[82] x[83] x[84] x[85] x[86] x[87] x[88] x[89] x[90] x[91] x[92] x[93] x[94] x[95] x[96] x[97] x[98] x[99] x[100] x[101] x[102] x[103] x[104] x[105] x[106] x[107] x[108] x[109] x[110] x[111] x[112] x[113] x[114] x[115] x[116] x[117] x[118] x[119] x[120] x[121] x[122] x[123] x[124] x[125] x[126] x[127] x[128] x[129] x[130] x[131] x[132] x[133] x[134] x[135] x[136] x[137] x[138] x[139] x[140] x[141] x[142] x[143] x[144] x[145] x[146] x[147] x[148] x[149] x[150] x[151] x[152] x[153] x[154] x[155] x[156] x[157] x[158] x[159] x[160] x[161] x[162] x[163] x[164] x[165] x[166] x[167] x[168] x[169] x[170] x[171] x[172] x[173] x[174] x[175] x[176] x[177] x[178] x[179] </list>
  1251. v <values> 143 191 192 79 68 29 169 155 75 80 46 110 14 44 59 164 190 175 115 22 7 8 188 33 19 11 93 125 161 179 119 184 12 193 112 43 24 176 42 82 36 108 96 87 181 27 138 120 101 20 52 146 5 34 167 41 35 157 159 129 109 118 151 153 170 53 195 149 45 84 196 64 177 104 154 123 171 106 38 185 1 141 74 121 111 124 67 95 127 21 97 98 48 37 150 10 63 197 15 70 91 3 126 156 178 18 62 147 135 40 54 174 145 60 25 103 194 58 31 199 81 148 173 72 166 182 89 189 140 163 6 137 0 133 165 26 73 13 100 168 162 65 186 71 32 144 183 136 142 88 77 90 23 128 132 158 152 39 2 50 51 114 69 134 30 66 49 28 9 85 116 122 107 55 102 57 86 139 76 83 </values>
  1252. v </instantiation>
  1253. ```
  1254.  
  1255. ```
  1256. $ java org.xcsp.checker.SolutionChecker -cm Subisomorphism-A-01.xml solution.txt
  1257. OK
  1258. ```
  1259.  
  1260. ## Sudoku-s01a-alldiff
  1261.  
  1262. A satisfiable CSP
  1263.  
  1264. ```
  1265. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Sudoku-s01a-alldiff.xml | tee solution.txt
  1266. Exception at line 45
  1267. s UNSUPPORTED
  1268. c instantiation constraint not yet supported
  1269. ```
  1270.  
  1271. ```
  1272. $ java org.xcsp.checker.SolutionChecker -cm Sudoku-s01a-alldiff.xml solution.txt
  1273. ```
  1274.  
  1275. ## Sudoku-s01a-table
  1276.  
  1277. A satisfiable CSP
  1278.  
  1279. ```
  1280. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Sudoku-s01a-table.xml | tee solution.txt
  1281. ```
  1282.  
  1283. ```
  1284. $ java org.xcsp.checker.SolutionChecker -cm Sudoku-s01a-table.xml solution.txt
  1285. One s line expected
  1286. ```
  1287.  
  1288. ## SuperQueens-01
  1289.  
  1290. An unsatisfiable CSP
  1291.  
  1292. ```
  1293. $ timeout --kill-after=1s 10s ./naxos-xcsp3 SuperQueens-01.xml | tee solution.txt
  1294. s UNSUPPORTED
  1295. c Invalid intension constraint 'and(ne(x[0],x[2]),ne(abs(sub(x[0],x[2])),1))'
  1296. ```
  1297.  
  1298. ```
  1299. $ java org.xcsp.checker.SolutionChecker -cm SuperQueens-01.xml solution.txt
  1300. ```
  1301.  
  1302. ## TravellingSalesman-25-003_X2
  1303.  
  1304. A satisfiable CSP
  1305.  
  1306. ```
  1307. $ timeout --kill-after=1s 10s ./naxos-xcsp3 TravellingSalesman-25-003_X2.xml | tee solution.txt
  1308. s UNKNOWN
  1309. ```
  1310.  
  1311. ```
  1312. $ java org.xcsp.checker.SolutionChecker -cm TravellingSalesman-25-003_X2.xml solution.txt
  1313. ```
  1314.  
  1315. ## Wwtpp-jok-ex02000
  1316.  
  1317. An unsatisfiable CSP
  1318.  
  1319. ```
  1320. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Wwtpp-jok-ex02000.xml | tee solution.txt
  1321. s UNSUPPORTED
  1322. c Short tables, i.e. tables with tuples containing '*', are not accepted
  1323. ```
  1324.  
  1325. ```
  1326. $ java org.xcsp.checker.SolutionChecker -cm Wwtpp-jok-ex02000.xml solution.txt
  1327. ```
  1328.  
  1329. ## BusScheduling-cnt-c1
  1330.  
  1331. Optimum cost is 7
  1332.  
  1333. ```
  1334. $ timeout --kill-after=1s 10s ./naxos-xcsp3 BusScheduling-cnt-c1.xml | tee solution.txt
  1335. Exception at line 198
  1336. s UNSUPPORTED
  1337. c exactly K constraint is not yet supported
  1338. ```
  1339.  
  1340. ```
  1341. $ java org.xcsp.checker.SolutionChecker -cm BusScheduling-cnt-c1.xml solution.txt
  1342. ```
  1343.  
  1344. ## Change-82-100
  1345.  
  1346. Optimum cost is 5
  1347.  
  1348. ```
  1349. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Change-82-100.xml | tee solution.txt
  1350. o 18
  1351. o 14
  1352. o 10
  1353. o 6
  1354. o 5
  1355. s OPTIMUM FOUND
  1356. v <instantiation>
  1357. v <list> c1 c5 c10 c20 c50 e1 e2 </list>
  1358. v <values> 3 1 1 0 0 0 0 </values>
  1359. v </instantiation>
  1360. ```
  1361.  
  1362. ```
  1363. $ java org.xcsp.checker.SolutionChecker -cm Change-82-100.xml solution.txt
  1364. OK 5
  1365. ```
  1366.  
  1367. ## ChessboardColoration-03-05
  1368.  
  1369. Optimum cost is 1
  1370.  
  1371. ```
  1372. $ timeout --kill-after=1s 10s ./naxos-xcsp3 ChessboardColoration-03-05.xml | tee solution.txt
  1373. Exception at line 41
  1374. s UNSUPPORTED
  1375. c NotAllequal constraint is not yet supported
  1376. ```
  1377.  
  1378. ```
  1379. $ java org.xcsp.checker.SolutionChecker -cm ChessboardColoration-03-05.xml solution.txt
  1380. ```
  1381.  
  1382. ## ChessboardColoration-05-05
  1383.  
  1384. Optimum cost is 2
  1385.  
  1386. ```
  1387. $ timeout --kill-after=1s 10s ./naxos-xcsp3 ChessboardColoration-05-05.xml | tee solution.txt
  1388. Exception at line 111
  1389. s UNSUPPORTED
  1390. c NotAllequal constraint is not yet supported
  1391. ```
  1392.  
  1393. ```
  1394. $ java org.xcsp.checker.SolutionChecker -cm ChessboardColoration-05-05.xml solution.txt
  1395. ```
  1396.  
  1397. ## Cutstock-small
  1398.  
  1399. Optimum cost is 4
  1400.  
  1401. ```
  1402. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Cutstock-small.xml | tee solution.txt
  1403. Exception at line 42
  1404. s UNSUPPORTED
  1405. c Ordered constraint is not yet supported
  1406. ```
  1407.  
  1408. ```
  1409. $ java org.xcsp.checker.SolutionChecker -cm Cutstock-small.xml solution.txt
  1410. ```
  1411.  
  1412. ## Fastfood-ff01
  1413.  
  1414. Optimum cost is 3050
  1415.  
  1416. ```
  1417. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Fastfood-ff01.xml | tee solution.txt
  1418. Exception at line 520
  1419. s UNSUPPORTED
  1420. c minimum constraint is not yet supported
  1421. ```
  1422.  
  1423. ```
  1424. $ java org.xcsp.checker.SolutionChecker -cm Fastfood-ff01.xml solution.txt
  1425. ```
  1426.  
  1427. ## GolombRuler-07-a3
  1428.  
  1429. Optimum cost is 25
  1430.  
  1431. ```
  1432. $ timeout --kill-after=1s 10s ./naxos-xcsp3 GolombRuler-07-a3.xml | tee solution.txt
  1433. Exception at line 37
  1434. s UNSUPPORTED
  1435. c Ordered constraint is not yet supported
  1436. ```
  1437.  
  1438. ```
  1439. $ java org.xcsp.checker.SolutionChecker -cm GolombRuler-07-a3.xml solution.txt
  1440. ```
  1441.  
  1442. ## GolombRuler-07-a4
  1443.  
  1444. Optimum cost is 25
  1445.  
  1446. ```
  1447. $ timeout --kill-after=1s 10s ./naxos-xcsp3 GolombRuler-07-a4.xml | tee solution.txt
  1448. s UNSUPPORTED
  1449. c Only one arithmetic operation is permitted in 'dist(x[1],x[0]),dist(x[2],x[1])'
  1450. ```
  1451.  
  1452. ```
  1453. $ java org.xcsp.checker.SolutionChecker -cm GolombRuler-07-a4.xml solution.txt
  1454. ```
  1455.  
  1456. ## GraphColoring-1-fullins-3
  1457.  
  1458. Optimum cost is 3
  1459.  
  1460. ```
  1461. $ timeout --kill-after=1s 10s ./naxos-xcsp3 GraphColoring-1-fullins-3.xml | tee solution.txt
  1462. o 4
  1463. o 3
  1464. s OPTIMUM FOUND
  1465. v <instantiation>
  1466. v <list> x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] x[26] x[27] x[28] x[29] </list>
  1467. v <values> 0 1 0 1 2 2 1 2 3 0 1 0 1 0 2 0 2 0 0 3 0 3 3 3 3 3 3 1 3 2 </values>
  1468. v </instantiation>
  1469. ```
  1470.  
  1471. ```
  1472. $ java org.xcsp.checker.SolutionChecker -cm GraphColoring-1-fullins-3.xml solution.txt
  1473. OK 3
  1474. ```
  1475.  
  1476. ## GraphColoring-qwhdec-o18-h120-1
  1477.  
  1478. Optimum cost is 17
  1479.  
  1480. ```
  1481. $ timeout --kill-after=1s 10s ./naxos-xcsp3 GraphColoring-qwhdec-o18-h120-1.xml | tee solution.txt
  1482. Exception at line 5646
  1483. s UNSUPPORTED
  1484. c instantiation constraint not yet supported
  1485. ```
  1486.  
  1487. ```
  1488. $ java org.xcsp.checker.SolutionChecker -cm GraphColoring-qwhdec-o18-h120-1.xml solution.txt
  1489. ```
  1490.  
  1491. ## Knapsack-30-100-00
  1492.  
  1493. Optimum cost is 709
  1494.  
  1495. ```
  1496. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Knapsack-30-100-00.xml | tee solution.txt
  1497. o 0
  1498. o 48
  1499. o 92
  1500. o 130
  1501. o 139
  1502. o 147
  1503. o 156
  1504. o 164
  1505. o 177
  1506. o 186
  1507. o 194
  1508. o 203
  1509. o 211
  1510. o 217
  1511. o 225
  1512. o 234
  1513. o 242
  1514. o 255
  1515. o 264
  1516. o 272
  1517. o 280
  1518. o 288
  1519. o 297
  1520. o 301
  1521. o 309
  1522. o 317
  1523. o 325
  1524. o 333
  1525. o 338
  1526. o 346
  1527. o 355
  1528. o 367
  1529. o 383
  1530. o 392
  1531. o 394
  1532. o 399
  1533. o 402
  1534. o 407
  1535. o 412
  1536. o 421
  1537. o 431
  1538. o 436
  1539. o 444
  1540. o 451
  1541. o 454
  1542. o 467
  1543. o 472
  1544. o 480
  1545. o 482
  1546. o 491
  1547. o 495
  1548. o 503
  1549. o 512
  1550. o 519
  1551. o 521
  1552. o 529
  1553. o 539
  1554. o 548
  1555. o 558
  1556. o 564
  1557. o 571
  1558. o 582
  1559. o 600
  1560. o 604
  1561. o 607
  1562. o 609
  1563. o 618
  1564. o 623
  1565. o 627
  1566. o 646
  1567. o 654
  1568. o 658
  1569. o 661
  1570. o 664
  1571. o 672
  1572. o 673
  1573. o 682
  1574. o 688
  1575. o 693
  1576. o 702
  1577. o 709
  1578. s OPTIMUM FOUND
  1579. v <instantiation>
  1580. v <list> x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] x[26] x[27] x[28] x[29] </list>
  1581. v <values> 0 0 1 0 0 1 0 1 0 1 1 1 0 0 1 1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 </values>
  1582. v </instantiation>
  1583. ```
  1584.  
  1585. ```
  1586. $ java org.xcsp.checker.SolutionChecker -cm Knapsack-30-100-00.xml solution.txt
  1587. OK 709
  1588. ```
  1589.  
  1590. ## LowAutocorrelation-005
  1591.  
  1592. Optimum cost is 2
  1593.  
  1594. ```
  1595. $ timeout --kill-after=1s 10s ./naxos-xcsp3 LowAutocorrelation-005.xml | tee solution.txt
  1596. o 30
  1597. o 6
  1598. o 2
  1599. s OPTIMUM FOUND
  1600. v <instantiation>
  1601. v <list> x[0] x[1] x[2] x[3] x[4] y[0][0] y[0][1] y[0][2] y[0][3] y[1][0] y[1][1] y[1][2] y[1][3] y[2][0] y[2][1] y[2][2] y[2][3] y[3][0] y[3][1] y[3][2] y[3][3] c[0] c[1] c[2] c[3] s[0] s[1] s[2] s[3] </list>
  1602. v <values> -1 -1 -1 1 -1 1 1 -1 -1 1 -1 1 -1 -1 1 -1 -1 1 -1 -1 -1 0 1 0 1 0 1 0 1 </values>
  1603. v </instantiation>
  1604. ```
  1605.  
  1606. ```
  1607. $ java org.xcsp.checker.SolutionChecker -cm LowAutocorrelation-005.xml solution.txt
  1608. OK 2
  1609. ```
  1610.  
  1611. ## Opd-02-035-010
  1612.  
  1613. Optimum cost is 0
  1614.  
  1615. ```
  1616. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Opd-02-035-010.xml | tee solution.txt
  1617. Exception at line 23
  1618. s UNSUPPORTED
  1619. c Lex matrix constraint is not yet supported
  1620. ```
  1621.  
  1622. ```
  1623. $ java org.xcsp.checker.SolutionChecker -cm Opd-02-035-010.xml solution.txt
  1624. ```
  1625.  
  1626. ## Opd-07-007-003
  1627.  
  1628. Optimum cost is 1
  1629.  
  1630. ```
  1631. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Opd-07-007-003.xml | tee solution.txt
  1632. Exception at line 85
  1633. s UNSUPPORTED
  1634. c Lex matrix constraint is not yet supported
  1635. ```
  1636.  
  1637. ```
  1638. $ java org.xcsp.checker.SolutionChecker -cm Opd-07-007-003.xml solution.txt
  1639. ```
  1640.  
  1641. ## OpenStacks-m1-pb-10-10-1
  1642.  
  1643. Optimum cost is 5
  1644.  
  1645. ```
  1646. $ timeout --kill-after=1s 10s ./naxos-xcsp3 OpenStacks-m1-pb-10-10-1.xml | tee solution.txt
  1647. Exception at line 33
  1648. s UNSUPPORTED
  1649. c Element value (with list of integers) with index constraint is not yet supported
  1650. ```
  1651.  
  1652. ```
  1653. $ java org.xcsp.checker.SolutionChecker -cm OpenStacks-m1-pb-10-10-1.xml solution.txt
  1654. ```
  1655.  
  1656. ## OpenStacks-m2-pb-10-10-1
  1657.  
  1658. Optimum cost is 5
  1659.  
  1660. ```
  1661. $ timeout --kill-after=1s 10s ./naxos-xcsp3 OpenStacks-m2-pb-10-10-1.xml | tee solution.txt
  1662. Exception at line 15
  1663. s UNSUPPORTED
  1664. c minimum constraint is not yet supported
  1665. ```
  1666.  
  1667. ```
  1668. $ java org.xcsp.checker.SolutionChecker -cm OpenStacks-m2-pb-10-10-1.xml solution.txt
  1669. ```
  1670.  
  1671. ## OpenStacks-m2-tiny
  1672.  
  1673. Optimum cost is 3
  1674.  
  1675. ```
  1676. $ timeout --kill-after=1s 10s ./naxos-xcsp3 OpenStacks-m2-tiny.xml | tee solution.txt
  1677. Exception at line 15
  1678. s UNSUPPORTED
  1679. c minimum constraint is not yet supported
  1680. ```
  1681.  
  1682. ```
  1683. $ java org.xcsp.checker.SolutionChecker -cm OpenStacks-m2-tiny.xml solution.txt
  1684. ```
  1685.  
  1686. ## Pb-mps-v2-20-10-bm23
  1687.  
  1688. Optimum cost is 34
  1689.  
  1690. ```
  1691. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Pb-mps-v2-20-10-bm23.xml | tee solution.txt
  1692. o 53
  1693. o 49
  1694. o 45
  1695. o 42
  1696. o 41
  1697. o 34
  1698. s OPTIMUM FOUND
  1699. v <instantiation>
  1700. v <list> x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] x[26] </list>
  1701. v <values> 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 1 </values>
  1702. v </instantiation>
  1703. ```
  1704.  
  1705. ```
  1706. $ java org.xcsp.checker.SolutionChecker -cm Pb-mps-v2-20-10-bm23.xml solution.txt
  1707. OK 34
  1708. ```
  1709.  
  1710. ## PrizeCollecting-15-3-5-0
  1711.  
  1712. Optimum cost is 20
  1713.  
  1714. ```
  1715. $ timeout --kill-after=1s 10s ./naxos-xcsp3 PrizeCollecting-15-3-5-0.xml | tee solution.txt
  1716. s UNSUPPORTED
  1717. c Invalid intension constraint 'iff(gt(p[0],-1),gt(s[0],-1))'
  1718. ```
  1719.  
  1720. ```
  1721. $ java org.xcsp.checker.SolutionChecker -cm PrizeCollecting-15-3-5-0.xml solution.txt
  1722. ```
  1723.  
  1724. ## ProgressiveParty-rally-red05
  1725.  
  1726. Optimum cost is 4
  1727.  
  1728. ```
  1729. $ timeout --kill-after=1s 10s ./naxos-xcsp3 ProgressiveParty-rally-red05.xml | tee solution.txt
  1730. s UNSUPPORTED
  1731. c Invalid intension constraint 'iff(h[0],eq(s[0][0],0))'
  1732. ```
  1733.  
  1734. ```
  1735. $ java org.xcsp.checker.SolutionChecker -cm ProgressiveParty-rally-red05.xml solution.txt
  1736. ```
  1737.  
  1738. ## QuadraticAssignment-chr12a
  1739.  
  1740. Optimum cost is 4776
  1741.  
  1742. ```
  1743. $ timeout --kill-after=1s 10s ./naxos-xcsp3 QuadraticAssignment-chr12a.xml | tee solution.txt
  1744. o 20086
  1745. o 19320
  1746. o 18583
  1747. o 17805
  1748. o 17205
  1749. o 17201
  1750. o 16763
  1751. o 16411
  1752. o 16392
  1753. o 15752
  1754. o 15380
  1755. o 15356
  1756. o 15284
  1757. o 15125
  1758. o 13998
  1759. o 13926
  1760. o 13902
  1761. o 13830
  1762. o 13822
  1763. o 13645
  1764. o 13573
  1765. o 13372
  1766. o 13371
  1767. o 10715
  1768. o 10619
  1769. o 10515
  1770. o 10428
  1771. o 10381
  1772. o 10111
  1773. o 9908
  1774. o 9568
  1775. o 9508
  1776. o 9412
  1777. o 9399
  1778. o 9324
  1779. o 9259
  1780. o 9210
  1781. o 9205
  1782. o 8695
  1783. o 8681
  1784. o 8480
  1785. o 8474
  1786. o 8440
  1787. o 8434
  1788. o 8157
  1789. o 8151
  1790. o 8025
  1791. o 8019
  1792. o 7647
  1793. o 7641
  1794. o 7348
  1795. o 7344
  1796. o 6851
  1797. o 6838
  1798. o 6586
  1799. o 6246
  1800. o 6158
  1801. o 5775
  1802. o 5395
  1803. o 5238
  1804. o 5153
  1805. o 5147
  1806. o 5101
  1807. o 5096
  1808. o 5092
  1809. o 4974
  1810. o 4969
  1811. o 4781
  1812. o 4776
  1813. s OPTIMUM FOUND
  1814. v <instantiation>
  1815. v <list> x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] d[0][0] d[0][1] d[0][2] d[0][3] d[0][4] d[0][5] d[0][6] d[0][7] d[0][8] d[0][9] d[0][10] d[0][11] d[1][0] d[1][1] d[1][2] d[1][3] d[1][4] d[1][5] d[1][6] d[1][7] d[1][8] d[1][9] d[1][10] d[1][11] d[2][0] d[2][1] d[2][2] d[2][3] d[2][4] d[2][5] d[2][6] d[2][7] d[2][8] d[2][9] d[2][10] d[2][11] d[3][0] d[3][1] d[3][2] d[3][3] d[3][4] d[3][5] d[3][6] d[3][7] d[3][8] d[3][9] d[3][10] d[3][11] d[4][0] d[4][1] d[4][2] d[4][3] d[4][4] d[4][5] d[4][6] d[4][7] d[4][8] d[4][9] d[4][10] d[4][11] d[5][0] d[5][1] d[5][2] d[5][3] d[5][4] d[5][5] d[5][6] d[5][7] d[5][8] d[5][9] d[5][10] d[5][11] d[6][0] d[6][1] d[6][2] d[6][3] d[6][4] d[6][5] d[6][6] d[6][7] d[6][8] d[6][9] d[6][10] d[6][11] d[7][0] d[7][1] d[7][2] d[7][3] d[7][4] d[7][5] d[7][6] d[7][7] d[7][8] d[7][9] d[7][10] d[7][11] d[8][0] d[8][1] d[8][2] d[8][3] d[8][4] d[8][5] d[8][6] d[8][7] d[8][8] d[8][9] d[8][10] d[8][11] d[9][0] d[9][1] d[9][2] d[9][3] d[9][4] d[9][5] d[9][6] d[9][7] d[9][8] d[9][9] d[9][10] d[9][11] d[10][0] d[10][1] d[10][2] d[10][3] d[10][4] d[10][5] d[10][6] d[10][7] d[10][8] d[10][9] d[10][10] d[10][11] d[11][0] d[11][1] d[11][2] d[11][3] d[11][4] d[11][5] d[11][6] d[11][7] d[11][8] d[11][9] d[11][10] d[11][11] </list>
  1816. v <values> 6 4 11 1 0 2 8 10 9 5 7 3 0 5 37 30 9 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 33 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 </values>
  1817. v </instantiation>
  1818. ```
  1819.  
  1820. ```
  1821. $ java org.xcsp.checker.SolutionChecker -cm QuadraticAssignment-chr12a.xml solution.txt
  1822. OK 4776
  1823. ```
  1824.  
  1825. ## QueenAttacking-05
  1826.  
  1827. Optimum cost is 0
  1828.  
  1829. ```
  1830. $ timeout --kill-after=1s 10s ./naxos-xcsp3 QueenAttacking-05.xml | tee solution.txt
  1831. s UNSUPPORTED
  1832. c Invalid intension constraint 'or'
  1833. ```
  1834.  
  1835. ```
  1836. $ java org.xcsp.checker.SolutionChecker -cm QueenAttacking-05.xml solution.txt
  1837. ```
  1838.  
  1839. ## Rack-r1
  1840.  
  1841. Optimum cost is 550
  1842.  
  1843. ```
  1844. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Rack-r1.xml | tee solution.txt
  1845. Exception at line 119
  1846. s UNSUPPORTED
  1847. c Ordered constraint is not yet supported
  1848. ```
  1849.  
  1850. ```
  1851. $ java org.xcsp.checker.SolutionChecker -cm Rack-r1.xml solution.txt
  1852. ```
  1853.  
  1854. ## Ramsey-08
  1855.  
  1856. Optimum cost is 2
  1857.  
  1858. ```
  1859. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Ramsey-08.xml | tee solution.txt
  1860. Exception at line 67
  1861. s UNSUPPORTED
  1862. c NotAllequal constraint is not yet supported
  1863. ```
  1864.  
  1865. ```
  1866. $ java org.xcsp.checker.SolutionChecker -cm Ramsey-08.xml solution.txt
  1867. ```
  1868.  
  1869. ## Recipe
  1870.  
  1871. Optimum cost is 1700
  1872.  
  1873. ```
  1874. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Recipe.xml | tee solution.txt
  1875. s UNSUPPORTED
  1876. c Only one arithmetic operation is permitted in 'add(mul(250,b),mul(200,c)),4000'
  1877. ```
  1878.  
  1879. ```
  1880. $ java org.xcsp.checker.SolutionChecker -cm Recipe.xml solution.txt
  1881. ```
  1882.  
  1883. ## StillLife-03-03
  1884.  
  1885. Optimum cost is 6
  1886.  
  1887. ```
  1888. $ timeout --kill-after=1s 10s ./naxos-xcsp3 StillLife-03-03.xml | tee solution.txt
  1889. o 0
  1890. o 4
  1891. o 5
  1892. o 6
  1893. s OPTIMUM FOUND
  1894. v <instantiation>
  1895. v <list> x[0][0] x[0][1] x[0][2] x[1][0] x[1][1] x[1][2] x[2][0] x[2][1] x[2][2] s[0][0] s[0][1] s[0][2] s[1][0] s[1][1] s[1][2] s[2][0] s[2][1] s[2][2] </list>
  1896. v <values> 0 1 1 1 0 1 1 1 0 2 3 2 3 6 3 2 3 2 </values>
  1897. v </instantiation>
  1898. ```
  1899.  
  1900. ```
  1901. $ java org.xcsp.checker.SolutionChecker -cm StillLife-03-03.xml solution.txt
  1902. OK 6
  1903. ```
  1904.  
  1905. ## StillLife-wastage-03
  1906.  
  1907. Optimum cost is 6
  1908.  
  1909. ```
  1910. $ timeout --kill-after=1s 10s ./naxos-xcsp3 StillLife-wastage-03.xml | tee solution.txt
  1911. Exception at line 19
  1912. s UNSUPPORTED
  1913. c instantiation constraint not yet supported
  1914. ```
  1915.  
  1916. ```
  1917. $ java org.xcsp.checker.SolutionChecker -cm StillLife-wastage-03.xml solution.txt
  1918. ```
  1919.  
  1920. ## Taillard-os-04-04-0
  1921.  
  1922. Optimum cost is 193
  1923.  
  1924. ```
  1925. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Taillard-os-04-04-0.xml | tee solution.txt
  1926. Exception at line 167
  1927. s UNSUPPORTED
  1928. c nooverlap with int lengths constraint is not yet supported
  1929. ```
  1930.  
  1931. ```
  1932. $ java org.xcsp.checker.SolutionChecker -cm Taillard-os-04-04-0.xml solution.txt
  1933. ```
  1934.  
  1935. ## Warehouse-opl
  1936.  
  1937. Optimum cost is 383
  1938.  
  1939. ```
  1940. $ timeout --kill-after=1s 10s ./naxos-xcsp3 Warehouse-opl.xml | tee solution.txt
  1941. Exception at line 28
  1942. s UNSUPPORTED
  1943. c atmost constraint is not yet supported
  1944. ```
  1945.  
  1946. ```
  1947. $ java org.xcsp.checker.SolutionChecker -cm Warehouse-opl.xml solution.txt
  1948. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement