3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 13:28:47 +00:00

removing const qualifiers, perhaps this helps for #420 and adding assert to enable Clang analysis earlier for issue #440

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-02-09 22:23:37 +00:00
parent 60c0e73b2f
commit 5ce85aba40
8 changed files with 86 additions and 87 deletions

View file

@ -2794,9 +2794,9 @@ int main() {
Z3_open_log("z3.log"); Z3_open_log("z3.log");
#endif #endif
display_version(); display_version();
simple_example(); //simple_example();
demorgan(); //demorgan();
find_model_example1(); //find_model_example1();
find_model_example2(); find_model_example2();
prove_example1(); prove_example1();
prove_example2(); prove_example2();

View file

@ -1838,7 +1838,7 @@ namespace pdr {
} }
void context::get_level_property(unsigned lvl, expr_ref_vector& res, vector<relation_info>& rs) const { void context::get_level_property(unsigned lvl, expr_ref_vector& res, vector<relation_info>& rs) {
decl2rel::iterator it = m_rels.begin(), end = m_rels.end(); decl2rel::iterator it = m_rels.begin(), end = m_rels.end();
for (; it != end; ++it) { for (; it != end; ++it) {
pred_transformer* r = it->m_value; pred_transformer* r = it->m_value;
@ -1962,7 +1962,7 @@ namespace pdr {
return m_search.get_trace(*this); return m_search.get_trace(*this);
} }
expr_ref context::mk_unsat_answer() const { expr_ref context::mk_unsat_answer() {
expr_ref_vector refs(m); expr_ref_vector refs(m);
vector<relation_info> rs; vector<relation_info> rs;
get_level_property(m_inductive_lvl, refs, rs); get_level_property(m_inductive_lvl, refs, rs);
@ -2364,7 +2364,7 @@ namespace pdr {
return result == l_false; return result == l_false;
} }
void context::display_certificate(std::ostream& strm) const { void context::display_certificate(std::ostream& strm) {
switch(m_last_result) { switch(m_last_result) {
case l_false: { case l_false: {
expr_ref_vector refs(m); expr_ref_vector refs(m);

View file

@ -349,10 +349,10 @@ namespace pdr {
lbool expand_state(model_node& n, expr_ref_vector& cube, bool& uses_level); lbool expand_state(model_node& n, expr_ref_vector& cube, bool& uses_level);
void create_children(model_node& n); void create_children(model_node& n);
expr_ref mk_sat_answer() const; expr_ref mk_sat_answer() const;
expr_ref mk_unsat_answer() const; expr_ref mk_unsat_answer();
// Generate inductive property // Generate inductive property
void get_level_property(unsigned lvl, expr_ref_vector& res, vector<relation_info> & rs) const; void get_level_property(unsigned lvl, expr_ref_vector& res, vector<relation_info> & rs);
// Initialization // Initialization
@ -406,7 +406,7 @@ namespace pdr {
std::ostream& display(std::ostream& strm) const; std::ostream& display(std::ostream& strm) const;
void display_certificate(std::ostream& strm) const; void display_certificate(std::ostream& strm);
lbool solve(); lbool solve();

View file

@ -181,26 +181,26 @@ namespace pdr {
return m_mux.is_homogenous_formula(f, n_index()); return m_mux.is_homogenous_formula(f, n_index());
} }
func_decl * o2n(func_decl * p, unsigned o_idx) const { func_decl * o2n(func_decl * p, unsigned o_idx) {
return m_mux.conv(p, o_index(o_idx), n_index()); return m_mux.conv(p, o_index(o_idx), n_index());
} }
func_decl * o2o(func_decl * p, unsigned src_idx, unsigned tgt_idx) const { func_decl * o2o(func_decl * p, unsigned src_idx, unsigned tgt_idx) {
return m_mux.conv(p, o_index(src_idx), o_index(tgt_idx)); return m_mux.conv(p, o_index(src_idx), o_index(tgt_idx));
} }
func_decl * n2o(func_decl * p, unsigned o_idx) const { func_decl * n2o(func_decl * p, unsigned o_idx) {
return m_mux.conv(p, n_index(), o_index(o_idx)); return m_mux.conv(p, n_index(), o_index(o_idx));
} }
void formula_o2n(expr * f, expr_ref & result, unsigned o_idx, bool homogenous=true) const void formula_o2n(expr * f, expr_ref & result, unsigned o_idx, bool homogenous=true)
{ m_mux.conv_formula(f, o_index(o_idx), n_index(), result, homogenous); } { m_mux.conv_formula(f, o_index(o_idx), n_index(), result, homogenous); }
void formula_n2o(expr * f, expr_ref & result, unsigned o_idx, bool homogenous=true) const void formula_n2o(expr * f, expr_ref & result, unsigned o_idx, bool homogenous=true)
{ m_mux.conv_formula(f, n_index(), o_index(o_idx), result, homogenous); } { m_mux.conv_formula(f, n_index(), o_index(o_idx), result, homogenous); }
void formula_n2o(unsigned o_idx, bool homogenous, expr_ref & result) const void formula_n2o(unsigned o_idx, bool homogenous, expr_ref & result)
{ m_mux.conv_formula(result.get(), n_index(), o_index(o_idx), result, homogenous); } { m_mux.conv_formula(result.get(), n_index(), o_index(o_idx), result, homogenous); }
void formula_o2o(expr * src, expr_ref & tgt, unsigned src_idx, unsigned tgt_idx, bool homogenous=true) const void formula_o2o(expr * src, expr_ref & tgt, unsigned src_idx, unsigned tgt_idx, bool homogenous=true)
{ m_mux.conv_formula(src, o_index(src_idx), o_index(tgt_idx), tgt, homogenous); } { m_mux.conv_formula(src, o_index(src_idx), o_index(tgt_idx), tgt, homogenous); }
/** /**
@ -237,7 +237,7 @@ namespace pdr {
Increase indexes of state symbols in formula by dist. Increase indexes of state symbols in formula by dist.
The 'N' index becomes 'O' index with number dist-1. The 'N' index becomes 'O' index with number dist-1.
*/ */
void formula_shift(expr * src, expr_ref & tgt, unsigned dist) const { void formula_shift(expr * src, expr_ref & tgt, unsigned dist) {
SASSERT(n_index()==0); SASSERT(n_index()==0);
SASSERT(o_index(0)==1); SASSERT(o_index(0)==1);
m_mux.shift_formula(src, dist, tgt); m_mux.shift_formula(src, dist, tgt);

View file

@ -28,7 +28,7 @@ Revision History:
using namespace pdr; using namespace pdr;
sym_mux::sym_mux(ast_manager & m, const vector<std::string> & suffixes) sym_mux::sym_mux(ast_manager & m, vector<std::string> & suffixes)
: m(m), m_ref_holder(m), m_next_sym_suffix_idx(0), m_suffixes(suffixes) : m(m), m_ref_holder(m), m_next_sym_suffix_idx(0), m_suffixes(suffixes)
{ {
unsigned suf_sz = m_suffixes.size(); unsigned suf_sz = m_suffixes.size();
@ -38,7 +38,7 @@ sym_mux::sym_mux(ast_manager & m, const vector<std::string> & suffixes)
} }
} }
std::string sym_mux::get_suffix(unsigned i) const { std::string sym_mux::get_suffix(unsigned i) {
while(m_suffixes.size() <= i) { while(m_suffixes.size() <= i) {
std::string new_suffix; std::string new_suffix;
symbol new_syffix_sym; symbol new_syffix_sym;
@ -88,7 +88,7 @@ void sym_mux::create_tuple(func_decl* prefix, unsigned arity, sort * const * dom
m_ref_holder.push_back(prefix); m_ref_holder.push_back(prefix);
} }
void sym_mux::ensure_tuple_size(func_decl * prim, unsigned sz) const { void sym_mux::ensure_tuple_size(func_decl * prim, unsigned sz) {
SASSERT(m_prim2all.contains(prim)); SASSERT(m_prim2all.contains(prim));
decl_vector& tuple = m_prim2all.find_core(prim)->get_data().m_value; decl_vector& tuple = m_prim2all.find_core(prim)->get_data().m_value;
SASSERT(tuple[0]==prim); SASSERT(tuple[0]==prim);
@ -98,10 +98,10 @@ void sym_mux::ensure_tuple_size(func_decl * prim, unsigned sz) const {
func_decl * prefix; func_decl * prefix;
TRUSTME(m_prim2prefix.find(prim, prefix)); TRUSTME(m_prim2prefix.find(prim, prefix));
std::string prefix_name = prefix->get_name().bare_str(); std::string prefix_name = prefix->get_name().bare_str();
for(unsigned i=tuple.size(); i<sz; ++i) { for(unsigned i = tuple.size(); i < sz; ++i) {
std::string name = prefix_name+get_suffix(i); std::string name = prefix_name + get_suffix(i);
func_decl * new_sym = m.mk_func_decl(symbol(name.c_str()), prefix->get_arity(), func_decl * new_sym = m.mk_func_decl(symbol(name.c_str()), prefix->get_arity(),
prefix->get_domain(), prefix->get_range()); prefix->get_domain(), prefix->get_range());
tuple.push_back(new_sym); tuple.push_back(new_sym);
m_ref_holder.push_back(new_sym); m_ref_holder.push_back(new_sym);
@ -110,7 +110,7 @@ void sym_mux::ensure_tuple_size(func_decl * prim, unsigned sz) const {
} }
} }
func_decl * sym_mux::conv(func_decl * sym, unsigned src_idx, unsigned tgt_idx) const func_decl * sym_mux::conv(func_decl * sym, unsigned src_idx, unsigned tgt_idx)
{ {
if(src_idx==tgt_idx) { return sym; } if(src_idx==tgt_idx) { return sym; }
func_decl * prim = (src_idx==0) ? sym : get_primary(sym); func_decl * prim = (src_idx==0) ? sym : get_primary(sym);
@ -347,12 +347,12 @@ struct sym_mux::conv_rewriter_cfg : public default_rewriter_cfg
{ {
private: private:
ast_manager & m; ast_manager & m;
const sym_mux & m_parent; sym_mux & m_parent;
unsigned m_from_idx; unsigned m_from_idx;
unsigned m_to_idx; unsigned m_to_idx;
bool m_homogenous; bool m_homogenous;
public: public:
conv_rewriter_cfg(const sym_mux & parent, unsigned from_idx, unsigned to_idx, bool homogenous) conv_rewriter_cfg(sym_mux & parent, unsigned from_idx, unsigned to_idx, bool homogenous)
: m(parent.get_manager()), : m(parent.get_manager()),
m_parent(parent), m_parent(parent),
m_from_idx(from_idx), m_from_idx(from_idx),
@ -374,7 +374,7 @@ public:
} }
}; };
void sym_mux::conv_formula(expr * f, unsigned src_idx, unsigned tgt_idx, expr_ref & res, bool homogenous) const void sym_mux::conv_formula(expr * f, unsigned src_idx, unsigned tgt_idx, expr_ref & res, bool homogenous)
{ {
if(src_idx==tgt_idx) { if(src_idx==tgt_idx) {
res = f; res = f;
@ -389,10 +389,10 @@ struct sym_mux::shifting_rewriter_cfg : public default_rewriter_cfg
{ {
private: private:
ast_manager & m; ast_manager & m;
const sym_mux & m_parent; sym_mux & m_parent;
int m_shift; int m_shift;
public: public:
shifting_rewriter_cfg(const sym_mux & parent, int shift) shifting_rewriter_cfg(sym_mux & parent, int shift)
: m(parent.get_manager()), : m(parent.get_manager()),
m_parent(parent), m_parent(parent),
m_shift(shift) {} m_shift(shift) {}
@ -413,7 +413,7 @@ public:
} }
}; };
void sym_mux::shift_formula(expr * f, int dist, expr_ref & res) const void sym_mux::shift_formula(expr * f, int dist, expr_ref & res)
{ {
if(dist==0) { if(dist==0) {
res = f; res = f;
@ -425,7 +425,7 @@ void sym_mux::shift_formula(expr * f, int dist, expr_ref & res) const
} }
void sym_mux::conv_formula_vector(const expr_ref_vector & vect, unsigned src_idx, unsigned tgt_idx, void sym_mux::conv_formula_vector(const expr_ref_vector & vect, unsigned src_idx, unsigned tgt_idx,
expr_ref_vector & res) const expr_ref_vector & res)
{ {
res.reset(); res.reset();
expr * const * begin = vect.c_ptr(); expr * const * begin = vect.c_ptr();
@ -441,11 +441,11 @@ void sym_mux::filter_idx(expr_ref_vector & vect, unsigned idx) const {
unsigned i = 0; unsigned i = 0;
while (i < vect.size()) { while (i < vect.size()) {
expr* e = vect[i].get(); expr* e = vect[i].get();
if(contains(e, idx) && is_homogenous_formula(e, idx)) { if (contains(e, idx) && is_homogenous_formula(e, idx)) {
i++; i++;
} }
else { else {
//we don't allow mixing states inside vector elements // we don't allow mixing states inside vector elements
SASSERT(!contains(e, idx)); SASSERT(!contains(e, idx));
vect[i] = vect.back(); vect[i] = vect.back();
vect.pop_back(); vect.pop_back();
@ -476,12 +476,10 @@ class sym_mux::nonmodel_sym_checker {
bool m_found; bool m_found;
public: public:
nonmodel_sym_checker(const sym_mux & parent) : nonmodel_sym_checker(const sym_mux & parent) :
m_parent(parent), m_found(false) m_parent(parent), m_found(false) {
{
} }
void operator()(expr * e) void operator()(expr * e) {
{
if(m_found || !is_app(e)) { return; } if(m_found || !is_app(e)) { return; }
func_decl * sym = to_app(e)->get_decl(); func_decl * sym = to_app(e)->get_decl();
@ -491,8 +489,7 @@ public:
} }
} }
bool found() const bool found() const {
{
return m_found; return m_found;
} }
}; };
@ -504,14 +501,15 @@ bool sym_mux::has_nonmodel_symbol(expr * e) const {
} }
void sym_mux::filter_non_model_lits(expr_ref_vector & vect) const { void sym_mux::filter_non_model_lits(expr_ref_vector & vect) const {
unsigned i=0; unsigned i = 0;
while(i<vect.size()) { while (i < vect.size()) {
if(!has_nonmodel_symbol(vect[i].get())) { if (!has_nonmodel_symbol(vect[i].get())) {
i++; i++;
continue;
} }
vect[i] = vect.back(); else {
vect.pop_back(); vect[i] = vect.back();
vect.pop_back();
}
} }
} }
@ -526,10 +524,10 @@ public:
bool operator()(func_decl * sym1, func_decl * sym2) bool operator()(func_decl * sym1, func_decl * sym2)
{ {
unsigned idx1, idx2; unsigned idx1, idx2;
if(!m_parent.try_get_index(sym1, idx1)) { idx1 = UINT_MAX; } if (!m_parent.try_get_index(sym1, idx1)) { idx1 = UINT_MAX; }
if(!m_parent.try_get_index(sym2, idx2)) { idx2 = UINT_MAX; } if (!m_parent.try_get_index(sym2, idx2)) { idx2 = UINT_MAX; }
if(idx1!=idx2) { return idx1<idx2; } if (idx1 != idx2) { return idx1<idx2; }
return lt(sym1->get_name(), sym2->get_name()); return lt(sym1->get_name(), sym2->get_name());
} }
}; };
@ -547,7 +545,7 @@ std::string sym_mux::pp_model(const model_core & mdl) const {
std::stringstream res; std::stringstream res;
decl_vector::iterator end = consts.end(); decl_vector::iterator end = consts.end();
for(decl_vector::iterator it = consts.begin(); it!=end; it++) { for (decl_vector::iterator it = consts.begin(); it!=end; it++) {
func_decl * d = *it; func_decl * d = *it;
std::string name = d->get_name().str(); std::string name = d->get_name().str();
const char * arrow = " -> "; const char * arrow = " -> ";
@ -555,11 +553,11 @@ std::string sym_mux::pp_model(const model_core & mdl) const {
unsigned indent = static_cast<unsigned>(name.length() + strlen(arrow)); unsigned indent = static_cast<unsigned>(name.length() + strlen(arrow));
res << mk_pp(mdl.get_const_interp(d), m, indent) << "\n"; res << mk_pp(mdl.get_const_interp(d), m, indent) << "\n";
if(it+1!=end) { if (it+1 != end) {
unsigned idx1, idx2; unsigned idx1, idx2;
if(!try_get_index(*it, idx1)) { idx1 = UINT_MAX; } if (!try_get_index(*it, idx1)) { idx1 = UINT_MAX; }
if(!try_get_index(*(it+1), idx2)) { idx2 = UINT_MAX; } if (!try_get_index(*(it+1), idx2)) { idx2 = UINT_MAX; }
if(idx1!=idx2) { res << "\n"; } if (idx1 != idx2) { res << "\n"; }
} }
} }
return res.str(); return res.str();

View file

@ -46,7 +46,7 @@ private:
mutable unsigned m_next_sym_suffix_idx; mutable unsigned m_next_sym_suffix_idx;
mutable symbols m_used_suffixes; mutable symbols m_used_suffixes;
/** Here we have default suffixes for each of the variants */ /** Here we have default suffixes for each of the variants */
mutable vector<std::string> m_suffixes; vector<std::string> m_suffixes;
/** /**
@ -89,12 +89,12 @@ private:
class index_collector; class index_collector;
class variable_collector; class variable_collector;
std::string get_suffix(unsigned i) const; std::string get_suffix(unsigned i);
void ensure_tuple_size(func_decl * prim, unsigned sz) const; void ensure_tuple_size(func_decl * prim, unsigned sz);
expr_ref isolate_o_idx(expr* e, unsigned idx) const; expr_ref isolate_o_idx(expr* e, unsigned idx) const;
public: public:
sym_mux(ast_manager & m, const vector<std::string> & suffixes); sym_mux(ast_manager & m, vector<std::string> & suffixes);
ast_manager & get_manager() const { return m; } ast_manager & get_manager() const { return m; }
@ -130,7 +130,7 @@ public:
/** /**
Return symbol created from prefix, or 0 if the prefix was never used. Return symbol created from prefix, or 0 if the prefix was never used.
*/ */
func_decl * try_get_by_prefix(func_decl* prefix, unsigned idx) const { func_decl * try_get_by_prefix(func_decl* prefix, unsigned idx) {
func_decl * prim = try_get_primary_by_prefix(prefix); func_decl * prim = try_get_primary_by_prefix(prefix);
if(!prim) { if(!prim) {
return 0; return 0;
@ -199,22 +199,22 @@ public:
/** /**
Convert symbol sym which has to be of src_idx variant into variant tgt_idx. Convert symbol sym which has to be of src_idx variant into variant tgt_idx.
*/ */
func_decl * conv(func_decl * sym, unsigned src_idx, unsigned tgt_idx) const; func_decl * conv(func_decl * sym, unsigned src_idx, unsigned tgt_idx);
/** /**
Convert src_idx symbols in formula f variant into tgt_idx. Convert src_idx symbols in formula f variant into tgt_idx.
If homogenous is true, formula cannot contain symbols of other variants. If homogenous is true, formula cannot contain symbols of other variants.
*/ */
void conv_formula(expr * f, unsigned src_idx, unsigned tgt_idx, expr_ref & res, bool homogenous=true) const; void conv_formula(expr * f, unsigned src_idx, unsigned tgt_idx, expr_ref & res, bool homogenous=true);
void conv_formula_vector(const expr_ref_vector & vect, unsigned src_idx, unsigned tgt_idx, void conv_formula_vector(const expr_ref_vector & vect, unsigned src_idx, unsigned tgt_idx,
expr_ref_vector & res) const; expr_ref_vector & res);
/** /**
Shifts the muxed symbols in f by dist. Dist can be negative, but it should never shift Shifts the muxed symbols in f by dist. Dist can be negative, but it should never shift
symbol index to a negative value. symbol index to a negative value.
*/ */
void shift_formula(expr * f, int dist, expr_ref & res) const; void shift_formula(expr * f, int dist, expr_ref & res);
/** /**
Remove from vect literals (atoms or negations of atoms) of symbols Remove from vect literals (atoms or negations of atoms) of symbols

View file

@ -36,6 +36,7 @@ namespace sat {
memcpy(m_lits, lits, sizeof(literal) * sz); memcpy(m_lits, lits, sizeof(literal) * sz);
mark_strengthened(); mark_strengthened();
SASSERT(check_approx()); SASSERT(check_approx());
SASSERT(sz > 1);
} }
var_approx_set clause::approx(unsigned num, literal const * lits) { var_approx_set clause::approx(unsigned num, literal const * lits) {

View file

@ -32,8 +32,8 @@ protected:
void free_memory() { void free_memory() {
if (m_buffer != reinterpret_cast<T*>(m_initial_buffer)) { if (m_buffer != reinterpret_cast<T*>(m_initial_buffer)) {
memory::deallocate(m_buffer); dealloc_svect(m_buffer);
} }
} }
void expand() { void expand() {
@ -66,15 +66,15 @@ public:
typedef const T * const_iterator; typedef const T * const_iterator;
buffer(): buffer():
m_buffer(reinterpret_cast<T *>(m_initial_buffer)), m_buffer(reinterpret_cast<T *>(m_initial_buffer)),
m_pos(0), m_pos(0),
m_capacity(INITIAL_SIZE) { m_capacity(INITIAL_SIZE) {
} }
buffer(const buffer & source): buffer(const buffer & source):
m_buffer(reinterpret_cast<T *>(m_initial_buffer)), m_buffer(reinterpret_cast<T *>(m_initial_buffer)),
m_pos(0), m_pos(0),
m_capacity(INITIAL_SIZE) { m_capacity(INITIAL_SIZE) {
unsigned sz = source.size(); unsigned sz = source.size();
for(unsigned i = 0; i < sz; i++) { for(unsigned i = 0; i < sz; i++) {
push_back(source.m_buffer[i]); push_back(source.m_buffer[i]);
@ -82,9 +82,9 @@ public:
} }
buffer(unsigned sz, const T & elem): buffer(unsigned sz, const T & elem):
m_buffer(reinterpret_cast<T *>(m_initial_buffer)), m_buffer(reinterpret_cast<T *>(m_initial_buffer)),
m_pos(0), m_pos(0),
m_capacity(INITIAL_SIZE) { m_capacity(INITIAL_SIZE) {
for (unsigned i = 0; i < sz; i++) { for (unsigned i = 0; i < sz; i++) {
push_back(elem); push_back(elem);
} }
@ -130,7 +130,7 @@ public:
if (CallDestructors) { if (CallDestructors) {
iterator e = end(); iterator e = end();
for (; it != e; ++it) { for (; it != e; ++it) {
it->~T(); it->~T();
} }
} }
} }