3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-09-17 11:49:11 -04:00
parent 69abe1687e
commit 4b51fe466d
3 changed files with 98 additions and 29 deletions

View file

@ -2228,6 +2228,8 @@ bool theory_seq::is_solved() {
return false;
}
#if 0
// debug code
context& ctx = get_context();
for (enode* n : ctx.enodes()) {
expr* e = nullptr;
@ -2244,6 +2246,7 @@ bool theory_seq::is_solved() {
}
}
}
#endif
return true;
}