mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 11:37:54 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a1ded7f1ec
commit
b5d1b0336a
3 changed files with 32 additions and 10 deletions
|
@ -54,10 +54,23 @@ namespace polysat {
|
|||
fp.run();
|
||||
}
|
||||
|
||||
static void test4() {
|
||||
scoped_fp fp;
|
||||
var_t x = 0, y = 1, z = 2;
|
||||
var_t ys[3] = { x, y, z };
|
||||
numeral coeffs[3] = { 1, 1, 1 };
|
||||
fp.add_row(x, 3, ys, coeffs);
|
||||
fp.set_bounds(x, 3, 4);
|
||||
fp.set_bounds(y, 3, 6);
|
||||
fp.run();
|
||||
fp.propagate_bounds();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void tst_fixplex() {
|
||||
polysat::test1();
|
||||
polysat::test2();
|
||||
polysat::test3();
|
||||
polysat::test4();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue