mirror of
https://github.com/Z3Prover/z3
synced 2025-07-21 11:52:05 +00:00
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
caa384f6c9
commit
52fdb4d291
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ void theory_arith<Ext>::mark_dependents(theory_var v, svector<theory_var> & vars
|
||||||
// If s is a base variable different from v and it is free, then this row can be ignored.
|
// If s is a base variable different from v and it is free, then this row can be ignored.
|
||||||
// It doesn't need to be part of the non linear cluster. For all purposes, this variable
|
// It doesn't need to be part of the non linear cluster. For all purposes, this variable
|
||||||
// was eliminated by substitution.
|
// was eliminated by substitution.
|
||||||
if (is_free(s) && s != v)
|
if (s != null_theory_var && is_free(s) && s != v)
|
||||||
continue;
|
continue;
|
||||||
typename vector<row_entry>::const_iterator it2 = r.begin_entries();
|
typename vector<row_entry>::const_iterator it2 = r.begin_entries();
|
||||||
typename vector<row_entry>::const_iterator end2 = r.end_entries();
|
typename vector<row_entry>::const_iterator end2 = r.end_entries();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue