3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

add seq_rewriter to model_evaluator, remove th_rewriter additional step in validator

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-01-15 04:02:48 +05:30
parent 7cbd59bf06
commit a295dd48dc
2 changed files with 8 additions and 5 deletions

View file

@ -1623,10 +1623,6 @@ void cmd_context::validate_model() {
r = 0;
evaluator(a, r);
TRACE("model_validate", tout << "checking\n" << mk_ismt2_pp(a, m()) << "\nresult:\n" << mk_ismt2_pp(r, m()) << "\n";);
if (m().is_true(r))
continue;
th_rewriter thr(m());
thr(r);
if (m().is_true(r))
continue;