3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

try m_fixed_var_eh

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-01-14 07:11:53 -10:00
parent 8c5abdf818
commit 27cc928631

View file

@ -18,7 +18,7 @@ namespace nla {
common(c),
dep(c->m_intervals.get_dep_intervals()) {
std::function<void(lpvar v)> fixed_eh = [&](lpvar v) {
std::function<void(lpvar v)> fixed_eh = [c, this](lpvar v) {
c->trail().push(push_back_vector(m_fixed_var_trail));
m_fixed_var_trail.push_back(v);
};
@ -63,8 +63,8 @@ namespace nla {
lp::mpq coeff(1);
for (auto w : m) {
if (c().var_is_fixed(w)) {
d = lra.join_deps(d, lra.join_deps(lra.get_column_lower_bound_witness(w), lra.get_column_upper_bound_witness(w)));
coeff += lra.get_column_value(w).x;
d = lra.join_deps(d, lra.get_bound_constraint_witnesses_for_column(w));
coeff *= lra.get_lower_bound(w).x;
}
}
vector<std::pair<lp::mpq, lpvar>> coeffs;