mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Treat eval'd literals as propagations (not as decisions)
This commit is contained in:
parent
8765dc16a5
commit
c4c9c84aeb
7 changed files with 92 additions and 45 deletions
|
@ -1310,9 +1310,6 @@ void tst_polysat() {
|
|||
test_fi::randomized();
|
||||
return;
|
||||
|
||||
test_polysat::test_ineq_axiom1(32, 2); // crashes
|
||||
return;
|
||||
|
||||
// looks like a fishy conflict lemma?
|
||||
test_polysat::test_monot_bounds();
|
||||
return;
|
||||
|
@ -1433,6 +1430,7 @@ void tst_polysat_argv(char** argv, int argc, int& i) {
|
|||
VERIFY(parse_smt2_commands(ctx, is));
|
||||
ptr_vector<expr> fmls = ctx.assertions();
|
||||
polysat::scoped_solver s("polysat");
|
||||
s.set_max_conflicts(1000);
|
||||
g_solver = &s;
|
||||
polysat::internalize(m, s, fmls);
|
||||
std::cout << "checking\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue