3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 18:36:41 +00:00

Merge branch 'lackr' of github.com:MikolasJanota/z3 into lackr

This commit is contained in:
Mikolas Janota 2016-01-28 11:48:20 +00:00
commit 53c187671f
3 changed files with 46 additions and 4 deletions

View file

@ -23,7 +23,7 @@ Revision History:
#include"max_bv_sharing_tactic.h" #include"max_bv_sharing_tactic.h"
#include"bv_size_reduction_tactic.h" #include"bv_size_reduction_tactic.h"
#include"ctx_simplify_tactic.h" #include"ctx_simplify_tactic.h"
#include"nnf_tactic.h" #include"smt_tactic.h"
/////////////// ///////////////
#include"model_smt2_pp.h" #include"model_smt2_pp.h"
#include"cooperate.h" #include"cooperate.h"
@ -111,7 +111,7 @@ tactic * mk_qfufbv_ackr_tactic(ast_manager & m, params_ref const & p) {
using_params(mk_simplify_tactic(m), simp2_p) using_params(mk_simplify_tactic(m), simp2_p)
); );
return and_then( tactic * const actual_tactic = alloc(qfufbv_ackr_tactic, m, p);
preamble_t, return and_then(preamble_t,
alloc(qfufbv_ackr_tactic, m, p)); cond(mk_is_qfufbv_probe(), actual_tactic, mk_smt_tactic()));
} }

View file

@ -301,6 +301,7 @@ public:
} }
}; };
class is_qfbv_probe : public probe { class is_qfbv_probe : public probe {
public: public:
virtual result operator()(goal const & g) { virtual result operator()(goal const & g) {
@ -356,6 +357,46 @@ probe * mk_is_qfaufbv_probe() {
return alloc(is_qfaufbv_probe); return alloc(is_qfaufbv_probe);
} }
struct is_non_qfufbv_predicate {
struct found {};
ast_manager & m;
bv_util m_bv_util;
is_non_qfufbv_predicate(ast_manager & _m) : m(_m), m_bv_util(_m) {}
void operator()(var *) { throw found(); }
void operator()(quantifier *) { throw found(); }
void operator()(app * n) {
if (!m.is_bool(n) && !m_bv_util.is_bv(n))
throw found();
family_id fid = n->get_family_id();
if (fid == m.get_basic_family_id())
return;
if (fid == m_bv_util.get_family_id())
return;
if (is_uninterp(n))
return;
throw found();
}
};
class is_qfufbv_probe : public probe {
public:
virtual result operator()(goal const & g) {
return !test<is_non_qfufbv_predicate>(g);
}
};
probe * mk_is_qfufbv_probe() {
return alloc(is_qfufbv_probe);
}
class num_consts_probe : public probe { class num_consts_probe : public probe {
bool m_bool; // If true, track only boolean constants. Otherwise, track only non boolean constants. bool m_bool; // If true, track only boolean constants. Otherwise, track only non boolean constants.
char const * m_family; // (Ignored if m_bool == true), if != 0 and m_bool == true, then track only constants of the given family. char const * m_family; // (Ignored if m_bool == true), if != 0 and m_bool == true, then track only constants of the given family.

View file

@ -112,6 +112,7 @@ probe * mk_div(probe * p1, probe * p2);
probe * mk_is_propositional_probe(); probe * mk_is_propositional_probe();
probe * mk_is_qfbv_probe(); probe * mk_is_qfbv_probe();
probe * mk_is_qfaufbv_probe(); probe * mk_is_qfaufbv_probe();
probe * mk_is_qfufbv_probe();
/* /*
ADD_PROBE("is-propositional", "true if the goal is in propositional logic.", "mk_is_propositional_probe()") ADD_PROBE("is-propositional", "true if the goal is in propositional logic.", "mk_is_propositional_probe()")