mirror of
https://github.com/Z3Prover/z3
synced 2025-06-28 00:48:45 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
57a7bef96b
commit
501dbd9475
3 changed files with 1 additions and 9 deletions
|
@ -162,8 +162,8 @@ namespace polysat {
|
||||||
|
|
||||||
auto const& row = m_rows[rid];
|
auto const& row = m_rows[rid];
|
||||||
make_basic(v, row);
|
make_basic(v, row);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -595,8 +595,4 @@ namespace polysat {
|
||||||
st.update("fixplex num infeasible", m_stats.m_num_infeasible);
|
st.update("fixplex num infeasible", m_stats.m_num_infeasible);
|
||||||
st.update("fixplex num checks", m_stats.m_num_checks);
|
st.update("fixplex num checks", m_stats.m_num_checks);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ Author:
|
||||||
|
|
||||||
#include "math/polysat/solver.h"
|
#include "math/polysat/solver.h"
|
||||||
#include "math/polysat/log.h"
|
#include "math/polysat/log.h"
|
||||||
#include "math/polysat/fixplex_def.h"
|
|
||||||
#include "math/polysat/forbidden_intervals.h"
|
#include "math/polysat/forbidden_intervals.h"
|
||||||
|
|
||||||
namespace polysat {
|
namespace polysat {
|
||||||
|
@ -71,7 +70,6 @@ namespace polysat {
|
||||||
solver::solver(reslimit& lim):
|
solver::solver(reslimit& lim):
|
||||||
m_lim(lim),
|
m_lim(lim),
|
||||||
m_bdd(1000),
|
m_bdd(1000),
|
||||||
m_fixplex(m_lim),
|
|
||||||
m_dm(m_value_manager, m_alloc),
|
m_dm(m_value_manager, m_alloc),
|
||||||
m_free_vars(m_activity) {
|
m_free_vars(m_activity) {
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,6 @@ Author:
|
||||||
#include "math/polysat/ule_constraint.h"
|
#include "math/polysat/ule_constraint.h"
|
||||||
#include "math/polysat/justification.h"
|
#include "math/polysat/justification.h"
|
||||||
#include "math/polysat/trail.h"
|
#include "math/polysat/trail.h"
|
||||||
#include "math/polysat/fixplex.h"
|
|
||||||
|
|
||||||
namespace polysat {
|
namespace polysat {
|
||||||
|
|
||||||
|
@ -50,7 +49,6 @@ namespace polysat {
|
||||||
scoped_ptr_vector<dd::pdd_manager> m_pdd;
|
scoped_ptr_vector<dd::pdd_manager> m_pdd;
|
||||||
scoped_ptr_vector<dd::fdd> m_bits;
|
scoped_ptr_vector<dd::fdd> m_bits;
|
||||||
dd::bdd_manager m_bdd;
|
dd::bdd_manager m_bdd;
|
||||||
fixplex<uint64_ext> m_fixplex;
|
|
||||||
dep_value_manager m_value_manager;
|
dep_value_manager m_value_manager;
|
||||||
small_object_allocator m_alloc;
|
small_object_allocator m_alloc;
|
||||||
poly_dep_manager m_dm;
|
poly_dep_manager m_dm;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue