mirror of
https://github.com/Z3Prover/z3
synced 2025-09-05 17:47:41 +00:00
Less allocation during lookup, remove unused argument
This commit is contained in:
parent
b5af2164f4
commit
be20c0d54e
11 changed files with 45 additions and 25 deletions
|
@ -135,8 +135,8 @@ namespace {
|
|||
|
||||
namespace polysat {
|
||||
|
||||
ule_constraint::ule_constraint(constraint_manager& m, pdd const& l, pdd const& r) :
|
||||
constraint(m, ckind_t::ule_t), m_lhs(l), m_rhs(r) {
|
||||
ule_constraint::ule_constraint(pdd const& l, pdd const& r) :
|
||||
constraint(ckind_t::ule_t), m_lhs(l), m_rhs(r) {
|
||||
|
||||
m_vars.append(m_lhs.free_vars());
|
||||
for (auto v : m_rhs.free_vars())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue