3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-27 19:08:49 +00:00

Added feature (?) to SAT core to prefer the Nielsen assumptions during splitting

This commit is contained in:
CEisenhofer 2026-05-21 19:06:45 +02:00
parent ca12eae670
commit dafa3cf5bd
4 changed files with 33 additions and 9 deletions

View file

@ -501,9 +501,9 @@ namespace seq {
dep_tracker dep; // tracks which input constraints contributed
static expr_ref simplify(expr* f, ast_manager& m) {
//th_rewriter th(m);
th_rewriter th(m);
expr_ref fml(f, m);
//th(fml);
th(fml);
return fml;
}