3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

disable polysat inside of recursive solver

This commit is contained in:
Nikolaj Bjorner 2022-04-06 13:40:40 +02:00
parent 1cba5fd55e
commit 704a41ee36
5 changed files with 12 additions and 5 deletions

View file

@ -139,7 +139,7 @@ public:
else
l = logic;
tactic_params tp;
tactic_params tp(p);
tactic_ref t;
if (tp.default_tactic() != symbol::null &&
!tp.default_tactic().is_numerical() &&
@ -151,6 +151,7 @@ public:
sexpr_ref se = parse_sexpr(ctx, is, p, file_name);
if (se) {
t = sexpr2tactic(ctx, se.get());
t->updt_params(p);
}
}