mirror of
https://github.com/Z3Prover/z3
synced 2025-06-22 22:03:39 +00:00
umul 2
This commit is contained in:
parent
d4592f2abf
commit
48c6bea331
8 changed files with 48 additions and 50 deletions
|
@ -11,7 +11,6 @@ z3_add_component(polysat
|
||||||
justification.cpp
|
justification.cpp
|
||||||
linear_solver.cpp
|
linear_solver.cpp
|
||||||
log.cpp
|
log.cpp
|
||||||
mul_ovfl_constraint.cpp
|
|
||||||
op_constraint.cpp
|
op_constraint.cpp
|
||||||
restart.cpp
|
restart.cpp
|
||||||
saturation.cpp
|
saturation.cpp
|
||||||
|
@ -20,8 +19,9 @@ z3_add_component(polysat
|
||||||
smul_fl_constraint.cpp
|
smul_fl_constraint.cpp
|
||||||
solver.cpp
|
solver.cpp
|
||||||
ule_constraint.cpp
|
ule_constraint.cpp
|
||||||
viable.cpp
|
umul_ovfl_constraint.cpp
|
||||||
variable_elimination.cpp
|
variable_elimination.cpp
|
||||||
|
viable.cpp
|
||||||
COMPONENT_DEPENDENCIES
|
COMPONENT_DEPENDENCIES
|
||||||
util
|
util
|
||||||
dd
|
dd
|
||||||
|
|
|
@ -18,7 +18,7 @@ Author:
|
||||||
#include "math/polysat/log.h"
|
#include "math/polysat/log.h"
|
||||||
#include "math/polysat/log_helper.h"
|
#include "math/polysat/log_helper.h"
|
||||||
#include "math/polysat/ule_constraint.h"
|
#include "math/polysat/ule_constraint.h"
|
||||||
#include "math/polysat/mul_ovfl_constraint.h"
|
#include "math/polysat/umul_ovfl_constraint.h"
|
||||||
#include "math/polysat/smul_fl_constraint.h"
|
#include "math/polysat/smul_fl_constraint.h"
|
||||||
#include "math/polysat/op_constraint.h"
|
#include "math/polysat/op_constraint.h"
|
||||||
|
|
||||||
|
@ -236,8 +236,8 @@ namespace polysat {
|
||||||
return ule(p.manager().mk_val(msb), q);
|
return ule(p.manager().mk_val(msb), q);
|
||||||
}
|
}
|
||||||
|
|
||||||
signed_constraint constraint_manager::mul_ovfl(pdd const& a, pdd const& b) {
|
signed_constraint constraint_manager::umul_ovfl(pdd const& a, pdd const& b) {
|
||||||
return { dedup(alloc(mul_ovfl_constraint, *this, a, b)), true };
|
return { dedup(alloc(umul_ovfl_constraint, *this, a, b)), true };
|
||||||
}
|
}
|
||||||
|
|
||||||
signed_constraint constraint_manager::smul_ovfl(pdd const& a, pdd const& b) {
|
signed_constraint constraint_manager::smul_ovfl(pdd const& a, pdd const& b) {
|
||||||
|
@ -294,12 +294,12 @@ namespace polysat {
|
||||||
return *dynamic_cast<ule_constraint const*>(this);
|
return *dynamic_cast<ule_constraint const*>(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
mul_ovfl_constraint& constraint::to_mul_ovfl() {
|
umul_ovfl_constraint& constraint::to_umul_ovfl() {
|
||||||
return *dynamic_cast<mul_ovfl_constraint*>(this);
|
return *dynamic_cast<umul_ovfl_constraint*>(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
mul_ovfl_constraint const& constraint::to_mul_ovfl() const {
|
umul_ovfl_constraint const& constraint::to_umul_ovfl() const {
|
||||||
return *dynamic_cast<mul_ovfl_constraint const*>(this);
|
return *dynamic_cast<umul_ovfl_constraint const*>(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
smul_fl_constraint& constraint::to_smul_fl() {
|
smul_fl_constraint& constraint::to_smul_fl() {
|
||||||
|
|
|
@ -22,11 +22,11 @@ Author:
|
||||||
|
|
||||||
namespace polysat {
|
namespace polysat {
|
||||||
|
|
||||||
enum ckind_t { ule_t, mul_ovfl_t, smul_fl_t, op_t };
|
enum ckind_t { ule_t, umul_ovfl_t, smul_fl_t, op_t };
|
||||||
|
|
||||||
class constraint;
|
class constraint;
|
||||||
class ule_constraint;
|
class ule_constraint;
|
||||||
class mul_ovfl_constraint;
|
class umul_ovfl_constraint;
|
||||||
class smul_fl_constraint;
|
class smul_fl_constraint;
|
||||||
class op_constraint;
|
class op_constraint;
|
||||||
class signed_constraint;
|
class signed_constraint;
|
||||||
|
@ -99,7 +99,7 @@ namespace polysat {
|
||||||
signed_constraint ult(pdd const& a, pdd const& b);
|
signed_constraint ult(pdd const& a, pdd const& b);
|
||||||
signed_constraint sle(pdd const& a, pdd const& b);
|
signed_constraint sle(pdd const& a, pdd const& b);
|
||||||
signed_constraint slt(pdd const& a, pdd const& b);
|
signed_constraint slt(pdd const& a, pdd const& b);
|
||||||
signed_constraint mul_ovfl(pdd const& p, pdd const& q);
|
signed_constraint umul_ovfl(pdd const& p, pdd const& q);
|
||||||
signed_constraint smul_ovfl(pdd const& p, pdd const& q);
|
signed_constraint smul_ovfl(pdd const& p, pdd const& q);
|
||||||
signed_constraint smul_udfl(pdd const& p, pdd const& q);
|
signed_constraint smul_udfl(pdd const& p, pdd const& q);
|
||||||
signed_constraint bit(pdd const& p, unsigned i);
|
signed_constraint bit(pdd const& p, unsigned i);
|
||||||
|
@ -142,7 +142,7 @@ namespace polysat {
|
||||||
friend class constraint_manager;
|
friend class constraint_manager;
|
||||||
friend class clause;
|
friend class clause;
|
||||||
friend class ule_constraint;
|
friend class ule_constraint;
|
||||||
friend class mul_ovfl_constraint;
|
friend class umul_ovfl_constraint;
|
||||||
friend class smul_fl_constraint;
|
friend class smul_fl_constraint;
|
||||||
friend class op_constraint;
|
friend class op_constraint;
|
||||||
|
|
||||||
|
@ -169,7 +169,7 @@ namespace polysat {
|
||||||
virtual bool is_eq() const { return false; }
|
virtual bool is_eq() const { return false; }
|
||||||
virtual bool is_diseq() const { return false; }
|
virtual bool is_diseq() const { return false; }
|
||||||
bool is_ule() const { return m_kind == ckind_t::ule_t; }
|
bool is_ule() const { return m_kind == ckind_t::ule_t; }
|
||||||
bool is_mul_ovfl() const { return m_kind == ckind_t::mul_ovfl_t; }
|
bool is_umul_ovfl() const { return m_kind == ckind_t::umul_ovfl_t; }
|
||||||
bool is_smul_fl() const { return m_kind == ckind_t::smul_fl_t; }
|
bool is_smul_fl() const { return m_kind == ckind_t::smul_fl_t; }
|
||||||
bool is_op() const { return m_kind == ckind_t::op_t; }
|
bool is_op() const { return m_kind == ckind_t::op_t; }
|
||||||
ckind_t kind() const { return m_kind; }
|
ckind_t kind() const { return m_kind; }
|
||||||
|
@ -186,8 +186,8 @@ namespace polysat {
|
||||||
|
|
||||||
ule_constraint& to_ule();
|
ule_constraint& to_ule();
|
||||||
ule_constraint const& to_ule() const;
|
ule_constraint const& to_ule() const;
|
||||||
mul_ovfl_constraint& to_mul_ovfl();
|
umul_ovfl_constraint& to_umul_ovfl();
|
||||||
mul_ovfl_constraint const& to_mul_ovfl() const;
|
umul_ovfl_constraint const& to_umul_ovfl() const;
|
||||||
smul_fl_constraint& to_smul_fl();
|
smul_fl_constraint& to_smul_fl();
|
||||||
smul_fl_constraint const& to_smul_fl() const;
|
smul_fl_constraint const& to_smul_fl() const;
|
||||||
op_constraint& to_op();
|
op_constraint& to_op();
|
||||||
|
|
|
@ -17,7 +17,7 @@ Author:
|
||||||
#include "math/polysat/interval.h"
|
#include "math/polysat/interval.h"
|
||||||
#include "math/polysat/solver.h"
|
#include "math/polysat/solver.h"
|
||||||
#include "math/polysat/log.h"
|
#include "math/polysat/log.h"
|
||||||
#include "math/polysat/mul_ovfl_constraint.h"
|
#include "math/polysat/umul_ovfl_constraint.h"
|
||||||
|
|
||||||
namespace polysat {
|
namespace polysat {
|
||||||
|
|
||||||
|
@ -31,14 +31,12 @@ namespace polysat {
|
||||||
bool forbidden_intervals::get_interval(signed_constraint const& c, pvar v, fi_record& fi) {
|
bool forbidden_intervals::get_interval(signed_constraint const& c, pvar v, fi_record& fi) {
|
||||||
if (c->is_ule())
|
if (c->is_ule())
|
||||||
return get_interval_ule(c, v, fi);
|
return get_interval_ule(c, v, fi);
|
||||||
if (c->is_mul_ovfl())
|
if (c->is_umul_ovfl())
|
||||||
return get_interval_mul_ovfl(c, v, fi);
|
return get_interval_umul_ovfl(c, v, fi);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool forbidden_intervals::get_interval_umul_ovfl(signed_constraint const& c, pvar v, fi_record& fi) {
|
||||||
|
|
||||||
bool forbidden_intervals::get_interval_mul_ovfl(signed_constraint const& c, pvar v, fi_record& fi) {
|
|
||||||
|
|
||||||
backtrack _backtrack(fi.side_cond);
|
backtrack _backtrack(fi.side_cond);
|
||||||
|
|
||||||
|
@ -48,8 +46,8 @@ namespace polysat {
|
||||||
// eval(lhs) = a1*v + eval(e1) = a1*v + b1
|
// eval(lhs) = a1*v + eval(e1) = a1*v + b1
|
||||||
// eval(rhs) = a2*v + eval(e2) = a2*v + b2
|
// eval(rhs) = a2*v + eval(e2) = a2*v + b2
|
||||||
// We keep the e1, e2 around in case we need side conditions such as e1=b1, e2=b2.
|
// We keep the e1, e2 around in case we need side conditions such as e1=b1, e2=b2.
|
||||||
auto [ok1, a1, e1, b1] = linear_decompose(v, c->to_mul_ovfl().p(), fi.side_cond);
|
auto [ok1, a1, e1, b1] = linear_decompose(v, c->to_umul_ovfl().p(), fi.side_cond);
|
||||||
auto [ok2, a2, e2, b2] = linear_decompose(v, c->to_mul_ovfl().q(), fi.side_cond);
|
auto [ok2, a2, e2, b2] = linear_decompose(v, c->to_umul_ovfl().q(), fi.side_cond);
|
||||||
|
|
||||||
auto& m = e1.manager();
|
auto& m = e1.manager();
|
||||||
rational bound = m.max_value();
|
rational bound = m.max_value();
|
||||||
|
|
|
@ -71,8 +71,8 @@ namespace polysat {
|
||||||
fi_record& fi);
|
fi_record& fi);
|
||||||
|
|
||||||
bool get_interval_ule(signed_constraint const& c, pvar v, fi_record& fi);
|
bool get_interval_ule(signed_constraint const& c, pvar v, fi_record& fi);
|
||||||
|
|
||||||
bool get_interval_mul_ovfl(signed_constraint const& c, pvar v, fi_record& fi);
|
bool get_interval_umul_ovfl(signed_constraint const& c, pvar v, fi_record& fi);
|
||||||
|
|
||||||
struct backtrack {
|
struct backtrack {
|
||||||
bool released = false;
|
bool released = false;
|
||||||
|
|
|
@ -60,7 +60,7 @@ namespace polysat {
|
||||||
|
|
||||||
friend class constraint;
|
friend class constraint;
|
||||||
friend class ule_constraint;
|
friend class ule_constraint;
|
||||||
friend class mul_ovfl_constraint;
|
friend class umul_ovfl_constraint;
|
||||||
friend class smul_fl_constraint;
|
friend class smul_fl_constraint;
|
||||||
friend class op_constraint;
|
friend class op_constraint;
|
||||||
friend class signed_constraint;
|
friend class signed_constraint;
|
||||||
|
@ -344,7 +344,7 @@ namespace polysat {
|
||||||
signed_constraint sgt(pdd const& p, pdd const& q) { return slt(q, p); }
|
signed_constraint sgt(pdd const& p, pdd const& q) { return slt(q, p); }
|
||||||
signed_constraint sgt(pdd const& p, int n) { return slt(n, p); }
|
signed_constraint sgt(pdd const& p, int n) { return slt(n, p); }
|
||||||
signed_constraint sgt(int n, pdd const& p) { return slt(p, n); }
|
signed_constraint sgt(int n, pdd const& p) { return slt(p, n); }
|
||||||
signed_constraint umul_ovfl(pdd const& p, pdd const& q) { return m_constraints.mul_ovfl(p, q); }
|
signed_constraint umul_ovfl(pdd const& p, pdd const& q) { return m_constraints.umul_ovfl(p, q); }
|
||||||
signed_constraint umul_ovfl(rational const& p, pdd const& q) { return umul_ovfl(q.manager().mk_val(p), q); }
|
signed_constraint umul_ovfl(rational const& p, pdd const& q) { return umul_ovfl(q.manager().mk_val(p), q); }
|
||||||
signed_constraint smul_ovfl(pdd const& p, pdd const& q) { return m_constraints.smul_ovfl(p, q); }
|
signed_constraint smul_ovfl(pdd const& p, pdd const& q) { return m_constraints.smul_ovfl(p, q); }
|
||||||
signed_constraint smul_udfl(pdd const& p, pdd const& q) { return m_constraints.smul_udfl(p, q); }
|
signed_constraint smul_udfl(pdd const& p, pdd const& q) { return m_constraints.smul_udfl(p, q); }
|
||||||
|
|
|
@ -10,13 +10,13 @@ Author:
|
||||||
Jakob Rath, Nikolaj Bjorner (nbjorner) 2021-12-09
|
Jakob Rath, Nikolaj Bjorner (nbjorner) 2021-12-09
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
#include "math/polysat/mul_ovfl_constraint.h"
|
#include "math/polysat/umul_ovfl_constraint.h"
|
||||||
#include "math/polysat/solver.h"
|
#include "math/polysat/solver.h"
|
||||||
|
|
||||||
namespace polysat {
|
namespace polysat {
|
||||||
|
|
||||||
mul_ovfl_constraint::mul_ovfl_constraint(constraint_manager& m, pdd const& p, pdd const& q):
|
umul_ovfl_constraint::umul_ovfl_constraint(constraint_manager& m, pdd const& p, pdd const& q):
|
||||||
constraint(m, ckind_t::mul_ovfl_t), m_p(p), m_q(q) {
|
constraint(m, ckind_t::umul_ovfl_t), m_p(p), m_q(q) {
|
||||||
simplify();
|
simplify();
|
||||||
m_vars.append(m_p.free_vars());
|
m_vars.append(m_p.free_vars());
|
||||||
for (auto v : m_q.free_vars())
|
for (auto v : m_q.free_vars())
|
||||||
|
@ -24,7 +24,7 @@ namespace polysat {
|
||||||
m_vars.push_back(v);
|
m_vars.push_back(v);
|
||||||
|
|
||||||
}
|
}
|
||||||
void mul_ovfl_constraint::simplify() {
|
void umul_ovfl_constraint::simplify() {
|
||||||
if (m_p.is_zero() || m_q.is_zero() ||
|
if (m_p.is_zero() || m_q.is_zero() ||
|
||||||
m_p.is_one() || m_q.is_one()) {
|
m_p.is_one() || m_q.is_one()) {
|
||||||
m_q = 0;
|
m_q = 0;
|
||||||
|
@ -35,7 +35,7 @@ namespace polysat {
|
||||||
std::swap(m_p, m_q);
|
std::swap(m_p, m_q);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::ostream& mul_ovfl_constraint::display(std::ostream& out, lbool status) const {
|
std::ostream& umul_ovfl_constraint::display(std::ostream& out, lbool status) const {
|
||||||
switch (status) {
|
switch (status) {
|
||||||
case l_true: return display(out);
|
case l_true: return display(out);
|
||||||
case l_false: return display(out << "~");
|
case l_false: return display(out << "~");
|
||||||
|
@ -44,11 +44,11 @@ namespace polysat {
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::ostream& mul_ovfl_constraint::display(std::ostream& out) const {
|
std::ostream& umul_ovfl_constraint::display(std::ostream& out) const {
|
||||||
return out << "ovfl*(" << m_p << ", " << m_q << ")";
|
return out << "ovfl*(" << m_p << ", " << m_q << ")";
|
||||||
}
|
}
|
||||||
|
|
||||||
lbool mul_ovfl_constraint::eval(pdd const& p, pdd const& q) const {
|
lbool umul_ovfl_constraint::eval(pdd const& p, pdd const& q) const {
|
||||||
if (p.is_zero() || q.is_zero() || p.is_one() || q.is_one())
|
if (p.is_zero() || q.is_zero() || p.is_one() || q.is_one())
|
||||||
return l_false;
|
return l_false;
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ namespace polysat {
|
||||||
return l_undef;
|
return l_undef;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool mul_ovfl_constraint::is_always_false(bool is_positive, pdd const& p, pdd const& q) const {
|
bool umul_ovfl_constraint::is_always_false(bool is_positive, pdd const& p, pdd const& q) const {
|
||||||
switch (eval(p, q)) {
|
switch (eval(p, q)) {
|
||||||
case l_true: return !is_positive;
|
case l_true: return !is_positive;
|
||||||
case l_false: return is_positive;
|
case l_false: return is_positive;
|
||||||
|
@ -69,7 +69,7 @@ namespace polysat {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool mul_ovfl_constraint::is_always_true(bool is_positive, pdd const& p, pdd const& q) const {
|
bool umul_ovfl_constraint::is_always_true(bool is_positive, pdd const& p, pdd const& q) const {
|
||||||
switch (eval(p, q)) {
|
switch (eval(p, q)) {
|
||||||
case l_true: return is_positive;
|
case l_true: return is_positive;
|
||||||
case l_false: return !is_positive;
|
case l_false: return !is_positive;
|
||||||
|
@ -77,20 +77,20 @@ namespace polysat {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool mul_ovfl_constraint::is_always_false(bool is_positive) const {
|
bool umul_ovfl_constraint::is_always_false(bool is_positive) const {
|
||||||
return is_always_false(is_positive, m_p, m_q);
|
return is_always_false(is_positive, m_p, m_q);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool mul_ovfl_constraint::is_currently_false(solver& s, bool is_positive) const {
|
bool umul_ovfl_constraint::is_currently_false(solver& s, bool is_positive) const {
|
||||||
return is_always_false(is_positive, s.subst(p()), s.subst(q()));
|
return is_always_false(is_positive, s.subst(p()), s.subst(q()));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool mul_ovfl_constraint::is_currently_true(solver& s, bool is_positive) const {
|
bool umul_ovfl_constraint::is_currently_true(solver& s, bool is_positive) const {
|
||||||
return is_always_true(is_positive, s.subst(p()), s.subst(q()));
|
return is_always_true(is_positive, s.subst(p()), s.subst(q()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void mul_ovfl_constraint::narrow(solver& s, bool is_positive, bool first) {
|
void umul_ovfl_constraint::narrow(solver& s, bool is_positive, bool first) {
|
||||||
auto p1 = s.subst(p());
|
auto p1 = s.subst(p());
|
||||||
auto q1 = s.subst(q());
|
auto q1 = s.subst(q());
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ namespace polysat {
|
||||||
/**
|
/**
|
||||||
* if p constant, q, propagate inequality
|
* if p constant, q, propagate inequality
|
||||||
*/
|
*/
|
||||||
bool mul_ovfl_constraint::narrow_bound(solver& s, bool is_positive,
|
bool umul_ovfl_constraint::narrow_bound(solver& s, bool is_positive,
|
||||||
pdd const& p0, pdd const& q0, pdd const& p, pdd const& q) {
|
pdd const& p0, pdd const& q0, pdd const& p, pdd const& q) {
|
||||||
|
|
||||||
if (!p.is_val())
|
if (!p.is_val())
|
||||||
|
@ -151,7 +151,7 @@ namespace polysat {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool mul_ovfl_constraint::try_viable(
|
bool umul_ovfl_constraint::try_viable(
|
||||||
solver& s, bool is_positive,
|
solver& s, bool is_positive,
|
||||||
pdd const& p0, pdd const& q0, pdd const& p, pdd const& q) {
|
pdd const& p0, pdd const& q0, pdd const& p, pdd const& q) {
|
||||||
signed_constraint sc(this, is_positive);
|
signed_constraint sc(this, is_positive);
|
||||||
|
@ -159,15 +159,15 @@ namespace polysat {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
unsigned mul_ovfl_constraint::hash() const {
|
unsigned umul_ovfl_constraint::hash() const {
|
||||||
return mk_mix(p().hash(), q().hash(), kind());
|
return mk_mix(p().hash(), q().hash(), kind());
|
||||||
}
|
}
|
||||||
|
|
||||||
bool mul_ovfl_constraint::operator==(constraint const& other) const {
|
bool umul_ovfl_constraint::operator==(constraint const& other) const {
|
||||||
return other.is_mul_ovfl() && p() == other.to_mul_ovfl().p() && q() == other.to_mul_ovfl().q();
|
return other.is_umul_ovfl() && p() == other.to_umul_ovfl().p() && q() == other.to_umul_ovfl().q();
|
||||||
}
|
}
|
||||||
|
|
||||||
void mul_ovfl_constraint::add_to_univariate_solver(solver& s, univariate_solver& us, unsigned dep, bool is_positive) const {
|
void umul_ovfl_constraint::add_to_univariate_solver(solver& s, univariate_solver& us, unsigned dep, bool is_positive) const {
|
||||||
auto p_coeff = s.subst(p()).get_univariate_coefficients();
|
auto p_coeff = s.subst(p()).get_univariate_coefficients();
|
||||||
auto q_coeff = s.subst(q()).get_univariate_coefficients();
|
auto q_coeff = s.subst(q()).get_univariate_coefficients();
|
||||||
us.add_umul_ovfl(p_coeff, q_coeff, !is_positive, dep);
|
us.add_umul_ovfl(p_coeff, q_coeff, !is_positive, dep);
|
|
@ -17,13 +17,13 @@ namespace polysat {
|
||||||
|
|
||||||
class solver;
|
class solver;
|
||||||
|
|
||||||
class mul_ovfl_constraint final : public constraint {
|
class umul_ovfl_constraint final : public constraint {
|
||||||
friend class constraint_manager;
|
friend class constraint_manager;
|
||||||
|
|
||||||
pdd m_p;
|
pdd m_p;
|
||||||
pdd m_q;
|
pdd m_q;
|
||||||
|
|
||||||
mul_ovfl_constraint(constraint_manager& m, pdd const& p, pdd const& q);
|
umul_ovfl_constraint(constraint_manager& m, pdd const& p, pdd const& q);
|
||||||
void simplify();
|
void simplify();
|
||||||
bool is_always_false(bool is_positive, pdd const& p, pdd const& q) const;
|
bool is_always_false(bool is_positive, pdd const& p, pdd const& q) const;
|
||||||
bool is_always_true(bool is_positive, pdd const& p, pdd const& q) const;
|
bool is_always_true(bool is_positive, pdd const& p, pdd const& q) const;
|
||||||
|
@ -32,7 +32,7 @@ namespace polysat {
|
||||||
lbool eval(pdd const& p, pdd const& q) const;
|
lbool eval(pdd const& p, pdd const& q) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
~mul_ovfl_constraint() override {}
|
~umul_ovfl_constraint() override {}
|
||||||
pdd const& p() const { return m_p; }
|
pdd const& p() const { return m_p; }
|
||||||
pdd const& q() const { return m_q; }
|
pdd const& q() const { return m_q; }
|
||||||
std::ostream& display(std::ostream& out, lbool status) const override;
|
std::ostream& display(std::ostream& out, lbool status) const override;
|
Loading…
Add table
Add a link
Reference in a new issue