3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-22 13:53:39 +00:00

bound the size of bit vectors

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-06-11 21:32:38 -07:00
parent 46b9273a79
commit 578e24d8c1
2 changed files with 11 additions and 11 deletions

View file

@ -118,12 +118,12 @@ tactic * mk_qfnia_tactic(ast_manager & m, params_ref const & p) {
return and_then(
mk_report_verbose_tactic("(qfnia-tactic)", 10),
mk_qfnia_premable(m, p),
// or_else(mk_qfnia_sat_solver(m, p),
// try_for(mk_qfnia_smt_solver(m, p), 2000),
// mk_qfnia_nlsat_solver(m, p),
or_else(mk_qfnia_sat_solver(m, p),
try_for(mk_qfnia_smt_solver(m, p), 2000),
mk_qfnia_nlsat_solver(m, p),
mk_qfnia_smt_solver(m, p))
// )
)
;
}

View file

@ -53,7 +53,7 @@
#include "math/lp/square_sparse_matrix_def.h"
#include "math/lp/lu_def.h"
#include "math/lp/general_matrix.h"
#include "math/lp/bound_propagator.h"
#include "math/lp/lp_bound_propagator.h"
#include "math/lp/nla_solver.h"
namespace nla {
void test_order_lemma();
@ -69,9 +69,9 @@ void test_basic_lemma_for_mon_neutral_from_factors_to_monomial();
namespace lp {
unsigned seed = 1;
class my_bound_propagator : public bound_propagator {
class my_bound_propagator : public lp_bound_propagator {
public:
my_bound_propagator(lar_solver & ls): bound_propagator(ls) {}
my_bound_propagator(lar_solver & ls): lp_bound_propagator(ls, nullptr) {}
void consume(mpq const& v, lp::constraint_index j) override {}
};