3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00
This commit is contained in:
Lev Nachmanson 2023-09-16 13:54:14 -07:00
parent c240f62ca8
commit 77e56b0a69
5 changed files with 12 additions and 7 deletions

View file

@ -311,9 +311,9 @@ class lar_solver : public column_namer {
template <typename T>
void explain_implied_bound(const implied_bound& ib, lp_bound_propagator<T>& bp) {
u_dependency* dep = ib.explain((int*)&bp);
u_dependency* dep = ib.explain_implied((int*)&bp);
for (auto ci : flatten(dep))
bp.consume(mpq(1), ci); // TODO: flatten should provid the coefficients
bp.consume(mpq(1), ci); // TODO: flatten should provide the coefficients
/*
if (ib.m_is_monic) {
NOT_IMPLEMENTED_YET();