3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-23 11:37:54 +00:00

eliminate basic variables from new rows

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-05-12 15:58:35 -07:00
parent 62b7719d5a
commit 0d776ecf88
4 changed files with 191 additions and 94 deletions

View file

@ -110,7 +110,9 @@ namespace polysat {
fp.set_bounds(u, 1, 2);
fp.run();
fp.propagate_eqs();
for (auto e : fp.var_eqs())
std::cout << e.x << " == " << e.y << "\n";
}