mirror of
https://github.com/Z3Prover/z3
synced 2025-12-17 01:38:31 +00:00
Pseudo-inverse op_constraint
This commit is contained in:
parent
84a5ec221f
commit
79e7380ffc
10 changed files with 144 additions and 47 deletions
|
|
@ -132,7 +132,7 @@ namespace polysat {
|
|||
auto const eq_it = std::find(cl.begin(), cl.end(), eq.blit());
|
||||
if (eq_it == cl.end())
|
||||
continue;
|
||||
unsigned const eq_idx = std::distance(cl.begin(), eq_it);
|
||||
unsigned eq_idx = (unsigned)std::distance(cl.begin(), eq_it);
|
||||
any_removed = true;
|
||||
should_remove[eq_idx] = true;
|
||||
if (c.is_positive()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue