mirror of
https://github.com/Z3Prover/z3
synced 2025-05-05 23:05:46 +00:00
add placeholder for simplification
This commit is contained in:
parent
d80b375ac3
commit
30a2c32c3b
7 changed files with 96 additions and 20 deletions
|
@ -149,8 +149,8 @@ namespace polysat {
|
|||
LOG("try-reduce: " << c << " " << c.is_currently_false(s));
|
||||
if (!c->is_ule())
|
||||
continue;
|
||||
auto lhs = c->to_ule().lhs();
|
||||
auto rhs = c->to_ule().rhs();
|
||||
auto const& lhs = c->to_ule().lhs();
|
||||
auto const& rhs = c->to_ule().rhs();
|
||||
auto a = lhs.reduce(v, p);
|
||||
auto b = rhs.reduce(v, p);
|
||||
LOG("try-reduce: " << c << " " << a << " " << b << " vs " << lhs << " " << rhs);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue