mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
accept term indices as columns in some lar_solver queries
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
f43f1629cf
commit
906d52ca1c
4 changed files with 14 additions and 3 deletions
|
@ -74,8 +74,7 @@ lp::lar_term core::subs_terms_to_columns(const lp::lar_term& t) const {
|
|||
}
|
||||
|
||||
bool core::ineq_holds(const ineq& n) const {
|
||||
lp::lar_term t = subs_terms_to_columns(n.term());
|
||||
return compare_holds(value(t), n.cmp(), n.rs());
|
||||
return compare_holds(value(n.term()), n.cmp(), n.rs());
|
||||
}
|
||||
|
||||
bool core::lemma_holds(const lemma& l) const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue