1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
#include "../../src/cadical.hpp"
#ifdef NDEBUG
#undef NDEBUG
#endif
#include <cassert>
#include <cstdlib>
#include <iostream>
#include <string>
using namespace std;
using namespace CaDiCaL;
static string path (const char *suffix) {
const char *prefix = getenv ("CADICALBUILD");
string res = prefix ? prefix : ".";
res += "/test-api-traverse.";
res += suffix;
return res;
}
struct WitnessChecker : WitnessIterator {
bool match (int a, int b) {
if (a == -3 && b == 1)
return true;
if (a == 1 && b == -3)
return true;
if (a == -3 && b == 2)
return true;
if (a == 2 && b == -3)
return true;
return false;
}
bool match (int a, int b, int c) {
if (a == 3 && b == -1 && c == -2)
return true;
if (a == 3 && b == -2 && c == -1)
return true;
if (a == -1 && b == 3 && c == -2)
return true;
if (a == -2 && b == 3 && c == -1)
return true;
if (a == -1 && b == -2 && c == 3)
return true;
if (a == -2 && b == -1 && c == 3)
return true;
return false;
}
public:
bool witness (const vector<int> &c, const vector<int> &w, uint64_t) {
for (const auto &lit : w)
cout << lit << ' ';
cout << "0 ";
for (const auto &lit : c)
cout << lit << ' ';
cout << '0' << endl;
if (c.size () == 1) {
assert (c[0] == 5);
assert (w.size () == 1);
assert (w[0] == 5);
} else {
assert (w.size () == 1);
assert (w[0] != -3);
assert (w[0] != 3);
assert (abs (w[0]) == 1 || abs (w[0]) == 2);
if (c.size () == 2)
assert (match (c[0], c[1]));
else
assert (c.size () == 3), assert (match (c[0], c[1], c[2]));
}
return true;
}
};
struct ClauseChecker : ClauseIterator {
bool clause (const vector<int> &c) {
for (const auto &lit : c)
cout << lit << ' ';
cout << '0' << endl;
assert (c.size () == 1);
assert (c[0] == 4);
return true;
}
};
int main () {
Solver cadical;
// And gate 3 = 1 & 2>
cadical.add (-3);
cadical.add (1);
cadical.add (0);
cadical.add (-3);
cadical.add (2);
cadical.add (0);
cadical.add (3);
cadical.add (-1);
cadical.add (-2);
cadical.add (0);
// Force 4 to true.
cadical.add (4);
cadical.add (1);
cadical.add (2);
cadical.add (0);
cadical.add (4);
cadical.add (-1);
cadical.add (2);
cadical.add (0);
cadical.add (4);
cadical.add (1);
cadical.add (-2);
cadical.add (0);
cadical.add (4);
cadical.add (-1);
cadical.add (-2);
cadical.add (0);
// Force 5 to true too.
cadical.add (5);
cadical.add (1);
cadical.add (0);
cadical.add (5);
cadical.add (-1);
cadical.add (0);
cadical.freeze (3);
cadical.freeze (4);
cadical.simplify (1);
// Now we expect '5' to be part of the witness, but '3' and '4' to be part
// the traversed clauses and check this too. See the long comment on
// 'frozen' versus 'non-frozen' unit traversal in 'external.cpp'.
cadical.write_dimacs (path ("clauses").c_str (), 5);
cadical.write_extension (path ("extensions").c_str ());
cout << "clauses" << endl;
ClauseChecker clause_checker;
cadical.traverse_clauses (clause_checker);
cout << "witnesses" << endl;
WitnessChecker witness_checker;
cadical.traverse_witnesses_backward (witness_checker);
return 0;
}
|