3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-09-05 03:13:08 -07:00 committed by GitHub
parent 9f387f5738
commit ed200f4214
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 12 deletions

View file

@ -465,7 +465,7 @@ namespace polysat {
solver.assert_expr(m.mk_or(A, B));
}
lbool r1 = solver.check();
lbool r1 = l_undef; // solver.check();
lbool r2 = fp.make_feasible();
std::cout << r1 << " " << r2 << "\n";
@ -566,9 +566,9 @@ namespace polysat {
static void test_lps() {
random_gen r;
for (unsigned i = 0; i < 10000; ++i)
for (unsigned i = 0; i < 10000; ++i)
test_lps(r, 6, 3, 3, 3);
return;
return;
for (unsigned i = 0; i < 10000; ++i)
test_lps(r, 6, 3, 3, 0);
return;