3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 19:02:02 +00:00

more efficient patching

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-05-29 17:06:34 -07:00
parent c355ee025a
commit c967b4aead
3 changed files with 47 additions and 42 deletions

View file

@ -367,7 +367,7 @@ public:
impq ival(val);
if (is_blocked(j, ival))
return false;
TRACE("nla_solver", tout << "not blocked\n";);
TRACE("nla_solver", tout << "j" << j << " not blocked\n";);
impq delta = get_column_value(j) - ival;
for (const auto &c : A_r().column(j)) {
unsigned row_index = c.var();