3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-07-15 22:26:18 -07:00
parent 6bd2a39fb7
commit ae55d30961
4 changed files with 8 additions and 3 deletions

View file

@ -138,7 +138,7 @@ namespace bv {
public:
sls_eval(sls_terms& terms, sls::context& ctx);
void tighten_range() { m_fix.init(); }
void init() { m_fix.init(); }
void register_term(expr* e);

View file

@ -486,7 +486,6 @@ namespace sls {
typename arith_base<num_t>::var_t arith_base<num_t>::mk_op(arith_op_kind k, expr* e, expr* x, expr* y) {
auto v = mk_var(e);
auto w = mk_term(x);
// auto u = mk_term(y);
unsigned idx = m_ops.size();
num_t val;
switch (k) {

View file

@ -61,7 +61,7 @@ namespace sls {
void bv_plugin::initialize() {
if (!m_initialized) {
m_eval.tighten_range();
m_eval.init();
m_initialized = true;
}
}