mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
use tv for interfacing on get_term
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
296a97d0d3
commit
fddbac0f52
|
@ -42,6 +42,7 @@ Revision History:
|
||||||
#include "math/lp/int_solver.h"
|
#include "math/lp/int_solver.h"
|
||||||
#include "math/lp/nra_solver.h"
|
#include "math/lp/nra_solver.h"
|
||||||
#include "math/lp/lp_bound_propagator.h"
|
#include "math/lp/lp_bound_propagator.h"
|
||||||
|
#include "math/lp/lp_types.h"
|
||||||
|
|
||||||
namespace lp {
|
namespace lp {
|
||||||
|
|
||||||
|
@ -149,6 +150,9 @@ public:
|
||||||
bool column_is_free(unsigned j) const;
|
bool column_is_free(unsigned j) const;
|
||||||
|
|
||||||
bool well_formed(lar_term const& t) const;
|
bool well_formed(lar_term const& t) const;
|
||||||
|
|
||||||
|
const lar_term & get_term(unsigned j) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
// init region
|
// init region
|
||||||
|
@ -358,10 +362,10 @@ public:
|
||||||
// return true if found and false if unbounded
|
// return true if found and false if unbounded
|
||||||
lp_status maximize_term(unsigned j_or_term, impq &term_max);
|
lp_status maximize_term(unsigned j_or_term, impq &term_max);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const lar_term & get_term(unsigned j) const;
|
|
||||||
|
|
||||||
|
const lar_term & get_term(tv const& t) const { lp_assert(t.is_term()); return *m_terms[t.id()]; }
|
||||||
|
|
||||||
void pop_core_solver_params();
|
void pop_core_solver_params();
|
||||||
|
|
||||||
void pop_core_solver_params(unsigned k);
|
void pop_core_solver_params(unsigned k);
|
||||||
|
|
|
@ -18,6 +18,9 @@ Revision History:
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
namespace lp {
|
namespace lp {
|
||||||
typedef unsigned var_index;
|
typedef unsigned var_index;
|
||||||
typedef unsigned constraint_index;
|
typedef unsigned constraint_index;
|
||||||
|
@ -52,9 +55,15 @@ public:
|
||||||
// used by var_register. could we encapsulate even this?
|
// used by var_register. could we encapsulate even this?
|
||||||
static const unsigned left_most_bit = ~EF;
|
static const unsigned left_most_bit = ~EF;
|
||||||
|
|
||||||
|
std::string to_string() const {
|
||||||
|
std::ostringstream strm;
|
||||||
|
strm << (is_term() ? "t" : "j") << id();
|
||||||
|
return strm.str();
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
inline std::ostream& operator<<(lp::tv const& t, std::ostream& out) {
|
inline std::ostream& operator<<(std::ostream& out, lp::tv const& t) {
|
||||||
return out << (t.is_term() ? "t":"j") << t.id() << "\n";
|
return out << (t.is_term() ? "t":"j") << t.id() << "\n";
|
||||||
}
|
}
|
||||||
|
|
|
@ -1752,7 +1752,7 @@ std::unordered_set<lpvar> core::get_vars_of_expr_with_opening_terms(const nex *e
|
||||||
for (unsigned i = 0; i < added.size(); ++i) {
|
for (unsigned i = 0; i < added.size(); ++i) {
|
||||||
lpvar j = added[i];
|
lpvar j = added[i];
|
||||||
if (ls.column_corresponds_to_term(j)) {
|
if (ls.column_corresponds_to_term(j)) {
|
||||||
const auto& t = m_lar_solver.get_term(ls.local_to_external(j));
|
const auto& t = m_lar_solver.get_term(lp::tv::raw(ls.local_to_external(j)));
|
||||||
for (auto p : t) {
|
for (auto p : t) {
|
||||||
if (ret.find(p.var().index()) == ret.end()) {
|
if (ret.find(p.var().index()) == ret.end()) {
|
||||||
added.push_back(p.var().index());
|
added.push_back(p.var().index());
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#include "math/lp/lar_solver.h"
|
#include "math/lp/lar_solver.h"
|
||||||
#include "math/lp/nra_solver.h"
|
#include "math/lp/nra_solver.h"
|
||||||
#include "math/lp/nla_solver.h"
|
#include "math/lp/nla_solver.h"
|
||||||
|
#include "math/lp/lp_types.h"
|
||||||
#include "math/polynomial/algebraic_numbers.h"
|
#include "math/polynomial/algebraic_numbers.h"
|
||||||
#include "math/polynomial/polynomial.h"
|
#include "math/polynomial/polynomial.h"
|
||||||
#include "util/nat_set.h"
|
#include "util/nat_set.h"
|
||||||
|
@ -955,6 +956,10 @@ class theory_lra::imp {
|
||||||
lpvar get_lpvar(theory_var v) const {
|
lpvar get_lpvar(theory_var v) const {
|
||||||
return lp().external_to_local(v);
|
return lp().external_to_local(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
lp::tv get_tv(theory_var v) const {
|
||||||
|
return lp::tv::raw(get_lpvar(v));
|
||||||
|
}
|
||||||
|
|
||||||
theory_var internalize_linearized_def(app* term, scoped_internalize_state& st) {
|
theory_var internalize_linearized_def(app* term, scoped_internalize_state& st) {
|
||||||
theory_var v = mk_var(term);
|
theory_var v = mk_var(term);
|
||||||
|
@ -989,7 +994,7 @@ class theory_lra::imp {
|
||||||
TRACE("arith_verbose",
|
TRACE("arith_verbose",
|
||||||
tout << "v" << v << " := " << mk_pp(term, m)
|
tout << "v" << v << " := " << mk_pp(term, m)
|
||||||
<< " slack: " << vi << " scopes: " << m_scopes.size() << "\n";
|
<< " slack: " << vi << " scopes: " << m_scopes.size() << "\n";
|
||||||
lp().print_term(lp().get_term(vi), tout) << "\n";);
|
lp().print_term(lp().get_term(lp::tv::raw(vi)), tout) << "\n";);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1320,11 +1325,12 @@ public:
|
||||||
a.mk_mul(a.mk_numeral(r, true),
|
a.mk_mul(a.mk_numeral(r, true),
|
||||||
get_enode(w)->get_owner())));
|
get_enode(w)->get_owner())));
|
||||||
theory_var z = internalize_def(term);
|
theory_var z = internalize_def(term);
|
||||||
lpvar vi = register_theory_var_in_lar_solver(z);
|
lpvar zi = register_theory_var_in_lar_solver(z);
|
||||||
|
lpvar vi = register_theory_var_in_lar_solver(v);
|
||||||
|
add_def_constraint(lp().add_var_bound(zi, lp::GE, rational::zero()));
|
||||||
|
add_def_constraint(lp().add_var_bound(zi, lp::LE, rational::zero()));
|
||||||
add_def_constraint(lp().add_var_bound(vi, lp::GE, rational::zero()));
|
add_def_constraint(lp().add_var_bound(vi, lp::GE, rational::zero()));
|
||||||
add_def_constraint(lp().add_var_bound(vi, lp::LE, rational::zero()));
|
add_def_constraint(lp().add_var_bound(vi, lp::LT, abs(r)));
|
||||||
add_def_constraint(lp().add_var_bound(register_theory_var_in_lar_solver(v), lp::GE, rational::zero()));
|
|
||||||
add_def_constraint(lp().add_var_bound(register_theory_var_in_lar_solver(v), lp::LT, abs(r)));
|
|
||||||
SASSERT(!is_infeasible());
|
SASSERT(!is_infeasible());
|
||||||
TRACE("arith", tout << term << "\n" << lp().constraints(););
|
TRACE("arith", tout << term << "\n" << lp().constraints(););
|
||||||
}
|
}
|
||||||
|
@ -1501,27 +1507,27 @@ public:
|
||||||
return can_get_bound(v);
|
return can_get_bound(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
mutable vector<std::pair<lpvar, rational>> m_todo_terms;
|
mutable vector<std::pair<lp::tv, rational>> m_todo_terms;
|
||||||
|
|
||||||
lp::impq get_ivalue(theory_var v) const {
|
lp::impq get_ivalue(theory_var v) const {
|
||||||
SASSERT(can_get_ivalue(v));
|
SASSERT(can_get_ivalue(v));
|
||||||
lpvar vi = get_lpvar(v);
|
auto t = get_tv(v);
|
||||||
if (!lp::tv::is_term(vi))
|
if (!t.is_term())
|
||||||
return lp().get_column_value(vi);
|
return lp().get_column_value(t.id());
|
||||||
m_todo_terms.push_back(std::make_pair(vi, rational::one()));
|
m_todo_terms.push_back(std::make_pair(t, rational::one()));
|
||||||
lp::impq result(0);
|
lp::impq result(0);
|
||||||
while (!m_todo_terms.empty()) {
|
while (!m_todo_terms.empty()) {
|
||||||
vi = m_todo_terms.back().first;
|
t = m_todo_terms.back().first;
|
||||||
rational coeff = m_todo_terms.back().second;
|
rational coeff = m_todo_terms.back().second;
|
||||||
m_todo_terms.pop_back();
|
m_todo_terms.pop_back();
|
||||||
if (lp::tv::is_term(vi)) {
|
if (t.is_term()) {
|
||||||
const lp::lar_term& term = lp().get_term(vi);
|
const lp::lar_term& term = lp().get_term(t);
|
||||||
for (const auto & i: term) {
|
for (const auto & i: term) {
|
||||||
m_todo_terms.push_back(std::make_pair(i.var().index(), coeff * i.coeff()));
|
m_todo_terms.push_back(std::make_pair(i.var(), coeff * i.coeff()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
result += lp().get_column_value(vi) * coeff;
|
result += lp().get_column_value(t.id()) * coeff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
@ -1532,36 +1538,36 @@ public:
|
||||||
return rational::zero();
|
return rational::zero();
|
||||||
}
|
}
|
||||||
|
|
||||||
lpvar vi = get_lpvar(v);
|
auto t = get_tv(v);
|
||||||
if (m_variable_values.count(vi) > 0)
|
if (m_variable_values.count(t.index()) > 0)
|
||||||
return m_variable_values[vi];
|
return m_variable_values[t.index()];
|
||||||
|
|
||||||
if (!lp::tv::is_term(vi)) {
|
if (!t.is_term()) {
|
||||||
return rational::zero();
|
return rational::zero();
|
||||||
}
|
}
|
||||||
|
|
||||||
m_todo_terms.push_back(std::make_pair(vi, rational::one()));
|
m_todo_terms.push_back(std::make_pair(t, rational::one()));
|
||||||
rational result(0);
|
rational result(0);
|
||||||
while (!m_todo_terms.empty()) {
|
while (!m_todo_terms.empty()) {
|
||||||
lpvar wi = m_todo_terms.back().first;
|
auto t2 = m_todo_terms.back().first;
|
||||||
rational coeff = m_todo_terms.back().second;
|
rational coeff = m_todo_terms.back().second;
|
||||||
m_todo_terms.pop_back();
|
m_todo_terms.pop_back();
|
||||||
if (lp::tv::is_term(wi)) {
|
if (t2.is_term()) {
|
||||||
const lp::lar_term& term = lp().get_term(wi);
|
const lp::lar_term& term = lp().get_term(t2);
|
||||||
for (const auto & i : term) {
|
for (const auto & i : term) {
|
||||||
if (m_variable_values.count(i.var().index()) > 0) {
|
if (m_variable_values.count(i.var().index()) > 0) {
|
||||||
result += m_variable_values[i.var().index()] * coeff * i.coeff();
|
result += m_variable_values[i.var().index()] * coeff * i.coeff();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m_todo_terms.push_back(std::make_pair(i.var().index(), coeff * i.coeff()));
|
m_todo_terms.push_back(std::make_pair(i.var(), coeff * i.coeff()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
result += m_variable_values[wi] * coeff;
|
result += m_variable_values[t2.index()] * coeff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
m_variable_values[vi] = result;
|
m_variable_values[t.index()] = result;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1949,12 +1955,12 @@ public:
|
||||||
expr_ref t(m);
|
expr_ref t(m);
|
||||||
expr_ref_vector ts(m);
|
expr_ref_vector ts(m);
|
||||||
for (auto const& p : term) {
|
for (auto const& p : term) {
|
||||||
lpvar wi = p.var().index();
|
auto ti = p.var();
|
||||||
if (lp::tv::is_term(wi)) {
|
if (ti.is_term()) {
|
||||||
ts.push_back(multerm(p.coeff(), term2expr(lp().get_term(wi))));
|
ts.push_back(multerm(p.coeff(), term2expr(lp().get_term(ti))));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
ts.push_back(multerm(p.coeff(), var2expr(wi)));
|
ts.push_back(multerm(p.coeff(), var2expr(ti.id())));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ts.size() == 1) {
|
if (ts.size() == 1) {
|
||||||
|
@ -1991,13 +1997,13 @@ public:
|
||||||
lp().print_term(term, out << "bound: ");
|
lp().print_term(term, out << "bound: ");
|
||||||
out << (upper?" <= ":" >= ") << k << "\n";
|
out << (upper?" <= ":" >= ") << k << "\n";
|
||||||
for (auto const& p : term) {
|
for (auto const& p : term) {
|
||||||
lpvar wi = p.var().index();
|
auto ti = p.var();
|
||||||
out << p.coeff() << " * ";
|
out << p.coeff() << " * ";
|
||||||
if (lp::tv::is_term(wi)) {
|
if (ti.is_term()) {
|
||||||
lp().print_term(lp().get_term(wi), out) << "\n";
|
lp().print_term(lp().get_term(ti), out) << "\n";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
out << "v" << lp().local_to_external(wi) << "\n";
|
out << "v" << lp().local_to_external(ti.id()) << "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (auto const& ev : ex) {
|
for (auto const& ev : ex) {
|
||||||
|
@ -2777,7 +2783,7 @@ public:
|
||||||
++m_stats.m_bounds_propagations;
|
++m_stats.m_bounds_propagations;
|
||||||
}
|
}
|
||||||
|
|
||||||
svector<lpvar> m_todo_vars;
|
svector<lp::tv> m_todo_vars;
|
||||||
|
|
||||||
void add_use_lists(lp_api::bound* b) {
|
void add_use_lists(lp_api::bound* b) {
|
||||||
theory_var v = b->get_var();
|
theory_var v = b->get_var();
|
||||||
|
@ -2785,18 +2791,19 @@ public:
|
||||||
if (!lp::tv::is_term(vi)) {
|
if (!lp::tv::is_term(vi)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
m_todo_vars.push_back(vi);
|
m_todo_vars.push_back(lp::tv::raw(vi));
|
||||||
while (!m_todo_vars.empty()) {
|
while (!m_todo_vars.empty()) {
|
||||||
vi = m_todo_vars.back();
|
auto ti = m_todo_vars.back();
|
||||||
|
SASSERT(ti.is_term());
|
||||||
m_todo_vars.pop_back();
|
m_todo_vars.pop_back();
|
||||||
lp::lar_term const& term = lp().get_term(vi);
|
lp::lar_term const& term = lp().get_term(ti);
|
||||||
for (auto const& p : term) {
|
for (auto const& p : term) {
|
||||||
lpvar wi = p.var().index();
|
lp::tv wi = p.var();
|
||||||
if (lp::tv::is_term(wi)) {
|
if (wi.is_term()) {
|
||||||
m_todo_vars.push_back(wi);
|
m_todo_vars.push_back(wi);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
unsigned w = lp().local_to_external(wi);
|
unsigned w = lp().local_to_external(wi.id());
|
||||||
m_use_list.reserve(w + 1, ptr_vector<lp_api::bound>());
|
m_use_list.reserve(w + 1, ptr_vector<lp_api::bound>());
|
||||||
m_use_list[w].push_back(b);
|
m_use_list[w].push_back(b);
|
||||||
}
|
}
|
||||||
|
@ -2810,18 +2817,19 @@ public:
|
||||||
if (!lp::tv::is_term(vi)) {
|
if (!lp::tv::is_term(vi)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
m_todo_vars.push_back(vi);
|
m_todo_vars.push_back(lp::tv::raw(vi));
|
||||||
while (!m_todo_vars.empty()) {
|
while (!m_todo_vars.empty()) {
|
||||||
vi = m_todo_vars.back();
|
auto ti = m_todo_vars.back();
|
||||||
|
SASSERT(ti.is_term());
|
||||||
m_todo_vars.pop_back();
|
m_todo_vars.pop_back();
|
||||||
lp::lar_term const& term = lp().get_term(vi);
|
lp::lar_term const& term = lp().get_term(ti);
|
||||||
for (auto const& coeff : term) {
|
for (auto const& coeff : term) {
|
||||||
lpvar wi = coeff.var().index();
|
auto wi = coeff.var();
|
||||||
if (lp::tv::is_term(wi)) {
|
if (wi.is_term()) {
|
||||||
m_todo_vars.push_back(wi);
|
m_todo_vars.push_back(wi);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
unsigned w = lp().local_to_external(wi);
|
unsigned w = lp().local_to_external(wi.id());
|
||||||
SASSERT(m_use_list[w].back() == b);
|
SASSERT(m_use_list[w].back() == b);
|
||||||
m_use_list[w].pop_back();
|
m_use_list[w].pop_back();
|
||||||
}
|
}
|
||||||
|
@ -2902,20 +2910,20 @@ public:
|
||||||
reset_evidence();
|
reset_evidence();
|
||||||
r.reset();
|
r.reset();
|
||||||
theory_var v = b.get_var();
|
theory_var v = b.get_var();
|
||||||
lpvar vi = get_lpvar(v);
|
auto ti = get_tv(v);
|
||||||
SASSERT(lp::tv::is_term(vi));
|
SASSERT(ti.is_term());
|
||||||
lp::lar_term const& term = m_solver->get_term(vi);
|
lp::lar_term const& term = m_solver->get_term(ti);
|
||||||
for (auto const mono : term) {
|
for (auto const mono : term) {
|
||||||
lp::var_index wi = mono.var().index();
|
auto wi = mono.var();
|
||||||
lp::constraint_index ci;
|
lp::constraint_index ci;
|
||||||
rational value;
|
rational value;
|
||||||
bool is_strict;
|
bool is_strict;
|
||||||
if (lp::tv::is_term(wi)) {
|
if (wi.is_term()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (mono.coeff().is_neg() == is_lub) {
|
if (mono.coeff().is_neg() == is_lub) {
|
||||||
// -3*x ... <= lub based on lower bound for x.
|
// -3*x ... <= lub based on lower bound for x.
|
||||||
if (!lp().has_lower_bound(wi, ci, value, is_strict)) {
|
if (!lp().has_lower_bound(wi.id(), ci, value, is_strict)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (is_strict) {
|
if (is_strict) {
|
||||||
|
@ -2923,7 +2931,7 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (!lp().has_upper_bound(wi, ci, value, is_strict)) {
|
if (!lp().has_upper_bound(wi.id(), ci, value, is_strict)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (is_strict) {
|
if (is_strict) {
|
||||||
|
@ -3349,34 +3357,34 @@ public:
|
||||||
nlsat::anum const& nl_value(theory_var v, scoped_anum& r) {
|
nlsat::anum const& nl_value(theory_var v, scoped_anum& r) {
|
||||||
SASSERT(m_nra);
|
SASSERT(m_nra);
|
||||||
SASSERT(m_use_nra_model);
|
SASSERT(m_use_nra_model);
|
||||||
lpvar vi = get_lpvar(v);
|
auto t = get_tv(v);
|
||||||
if (lp::tv::is_term(vi)) {
|
if (t.is_term()) {
|
||||||
|
|
||||||
m_todo_terms.push_back(std::make_pair(vi, rational::one()));
|
m_todo_terms.push_back(std::make_pair(t, rational::one()));
|
||||||
|
|
||||||
TRACE("arith", tout << "v" << v << " := w" << vi << "\n";
|
TRACE("arith", tout << "v" << v << " := w" << t.to_string() << "\n";
|
||||||
lp().print_term(lp().get_term(vi), tout) << "\n";);
|
lp().print_term(lp().get_term(t), tout) << "\n";);
|
||||||
|
|
||||||
m_nra->am().set(r, 0);
|
m_nra->am().set(r, 0);
|
||||||
while (!m_todo_terms.empty()) {
|
while (!m_todo_terms.empty()) {
|
||||||
rational wcoeff = m_todo_terms.back().second;
|
rational wcoeff = m_todo_terms.back().second;
|
||||||
vi = m_todo_terms.back().first;
|
t = m_todo_terms.back().first;
|
||||||
m_todo_terms.pop_back();
|
m_todo_terms.pop_back();
|
||||||
lp::lar_term const& term = lp().get_term(vi);
|
lp::lar_term const& term = lp().get_term(t);
|
||||||
TRACE("arith", lp().print_term(term, tout) << "\n";);
|
TRACE("arith", lp().print_term(term, tout) << "\n";);
|
||||||
scoped_anum r1(m_nra->am());
|
scoped_anum r1(m_nra->am());
|
||||||
rational c1(0);
|
rational c1(0);
|
||||||
m_nra->am().set(r1, c1.to_mpq());
|
m_nra->am().set(r1, c1.to_mpq());
|
||||||
m_nra->am().add(r, r1, r);
|
m_nra->am().add(r, r1, r);
|
||||||
for (auto const & arg : term) {
|
for (auto const & arg : term) {
|
||||||
lpvar wi = arg.var().index();
|
auto wi = arg.var();
|
||||||
c1 = arg.coeff() * wcoeff;
|
c1 = arg.coeff() * wcoeff;
|
||||||
if (lp::tv::is_term(wi)) {
|
if (wi.is_term()) {
|
||||||
m_todo_terms.push_back(std::make_pair(wi, c1));
|
m_todo_terms.push_back(std::make_pair(wi, c1));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m_nra->am().set(r1, c1.to_mpq());
|
m_nra->am().set(r1, c1.to_mpq());
|
||||||
m_nra->am().mul(m_nra->value(wi), r1, r1);
|
m_nra->am().mul(m_nra->value(wi.id()), r1, r1);
|
||||||
m_nra->am().add(r1, r, r);
|
m_nra->am().add(r1, r, r);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3384,7 +3392,7 @@ public:
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return m_nra->value(vi);
|
return m_nra->value(t.id());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3651,14 +3659,14 @@ public:
|
||||||
for (const auto & ti : term) {
|
for (const auto & ti : term) {
|
||||||
theory_var w;
|
theory_var w;
|
||||||
if (ti.var().is_term()) {
|
if (ti.var().is_term()) {
|
||||||
lp::lar_term const& term1 = lp().get_term(ti.var().index());
|
lp::lar_term const& term1 = lp().get_term(ti.var());
|
||||||
rational coeff2 = coeff * ti.coeff();
|
rational coeff2 = coeff * ti.coeff();
|
||||||
term2coeffs(term1, coeffs, coeff2);
|
term2coeffs(term1, coeffs, coeff2);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else if (lp().column_corresponds_to_term(ti.var().index())) {
|
else if (lp().column_corresponds_to_term(ti.var().index())) {
|
||||||
lp::tv t = lp::tv::term(ti.var().index());
|
lp::tv t = lp::tv::term(ti.var().index());
|
||||||
lp::lar_term const& term1 = lp().get_term(t.index());
|
lp::lar_term const& term1 = lp().get_term(t);
|
||||||
rational coeff2 = coeff * ti.coeff();
|
rational coeff2 = coeff * ti.coeff();
|
||||||
term2coeffs(term1, coeffs, coeff2);
|
term2coeffs(term1, coeffs, coeff2);
|
||||||
continue;
|
continue;
|
||||||
|
@ -3724,10 +3732,10 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
app_ref mk_obj(theory_var v) {
|
app_ref mk_obj(theory_var v) {
|
||||||
lpvar vi = get_lpvar(v);
|
auto t = get_tv(v);
|
||||||
bool is_int = a.is_int(get_enode(v)->get_owner());
|
bool is_int = a.is_int(get_enode(v)->get_owner());
|
||||||
if (lp::tv::is_term(vi)) {
|
if (t.is_term()) {
|
||||||
return mk_term(lp().get_term(vi), is_int);
|
return mk_term(lp().get_term(t), is_int);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// theory_var w = lp().external_to_local(vi);
|
// theory_var w = lp().external_to_local(vi);
|
||||||
|
@ -3791,9 +3799,10 @@ public:
|
||||||
}
|
}
|
||||||
unsigned nv = th.get_num_vars();
|
unsigned nv = th.get_num_vars();
|
||||||
for (unsigned v = 0; v < nv; ++v) {
|
for (unsigned v = 0; v < nv; ++v) {
|
||||||
|
auto t = get_tv(v);
|
||||||
if (!ctx().is_relevant(get_enode(v))) out << "irr: ";
|
if (!ctx().is_relevant(get_enode(v))) out << "irr: ";
|
||||||
out << "v" << v;
|
out << "v" << v << " ";
|
||||||
out << " j" << get_lpvar(v);
|
out << (t.is_term() ? "t":"j") << t.id();
|
||||||
if (can_get_value(v)) out << " = " << get_value(v);
|
if (can_get_value(v)) out << " = " << get_value(v);
|
||||||
if (is_int(v)) out << ", int";
|
if (is_int(v)) out << ", int";
|
||||||
if (ctx().is_shared(get_enode(v))) out << ", shared";
|
if (ctx().is_shared(get_enode(v))) out << ", shared";
|
||||||
|
|
|
@ -800,7 +800,6 @@ namespace smt {
|
||||||
template<typename Ext>
|
template<typename Ext>
|
||||||
void theory_utvpi<Ext>::model_validate() {
|
void theory_utvpi<Ext>::model_validate() {
|
||||||
context& ctx = get_context();
|
context& ctx = get_context();
|
||||||
unsigned sz = m_atoms.size();
|
|
||||||
for (auto const& a : m_atoms) {
|
for (auto const& a : m_atoms) {
|
||||||
bool_var b = a.get_bool_var();
|
bool_var b = a.get_bool_var();
|
||||||
if (!ctx.is_relevant(b)) {
|
if (!ctx.is_relevant(b)) {
|
||||||
|
|
Loading…
Reference in a new issue