3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

pre-merge

Signed-off-by: Miguel Angelo Da Terra Neves <t-mineve@microsoft.com>
This commit is contained in:
Miguel Angelo Da Terra Neves 2017-12-13 16:55:16 -08:00
parent 51fc54fdd1
commit 42499eac1c
2 changed files with 3 additions and 2 deletions

View file

@ -155,6 +155,7 @@ namespace sat {
}
bool integrity_checker::check_watches(literal l, watch_list const& wlist) const {
return true; // TODO: remove
for (watched const& w : wlist) {
switch (w.get_kind()) {
case watched::BINARY:

View file

@ -1550,8 +1550,8 @@ namespace sat {
if (!check_clauses(m_model)) {
IF_VERBOSE(0, verbose_stream() << "failure checking clauses on transformed model\n";);
UNREACHABLE();
throw solver_exception("check model failed");
//UNREACHABLE(); // TODO: uncomment
//throw solver_exception("check model failed"); // TODO: uncomment
}
TRACE("sat", for (bool_var v = 0; v < num; v++) tout << v << ": " << m_model[v] << "\n";);