mirror of
https://github.com/Z3Prover/z3
synced 2025-08-16 07:45:27 +00:00
warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d465938496
commit
f67077b7ff
6 changed files with 6 additions and 6 deletions
|
@ -33,8 +33,8 @@ namespace smt {
|
|||
m(m),
|
||||
m_plugin(*reinterpret_cast<recfun::decl::plugin*>(m.get_plugin(get_family_id()))),
|
||||
m_util(m_plugin.u()),
|
||||
m_preds(m),
|
||||
m_disabled_guards(m),
|
||||
m_preds(m),
|
||||
m_enabled_guards(m),
|
||||
m_num_rounds(0),
|
||||
m_q_case_expand(),
|
||||
|
|
|
@ -4442,7 +4442,6 @@ model_value_proc * theory_seq::mk_value(enode * n, model_generator & mg) {
|
|||
|
||||
app* theory_seq::mk_value(app* e) {
|
||||
expr_ref result(m);
|
||||
expr* e0 = e;
|
||||
e = get_ite_value(e);
|
||||
result = m_rep.find(e);
|
||||
|
||||
|
|
|
@ -507,6 +507,7 @@ namespace smt {
|
|||
while (consistent && can_propagate()) {
|
||||
unsigned idx = m_asserted_atoms[m_asserted_qhead];
|
||||
m_asserted_qhead++;
|
||||
std::cout << "propagate atom " << idx << "\n";
|
||||
consistent = propagate_atom(m_atoms[idx]);
|
||||
}
|
||||
}
|
||||
|
@ -656,7 +657,9 @@ namespace smt {
|
|||
SASSERT(v2 != null_theory_var);
|
||||
SASSERT(pos2 || terms[1].second.is_minus_one());
|
||||
}
|
||||
TRACE("utvpi", tout << (pos1?"$":"-$") << v1 << (pos2?" + $":" - $") << v2 << " + " << weight << " <= 0\n";);
|
||||
TRACE("utvpi", tout << (pos1?"$":"-$") << v1;
|
||||
if (terms.size() == 2) tout << (pos2?" + $":" - $") << v2;
|
||||
tout << " + " << weight << " <= 0\n";);
|
||||
edge_id id = m_graph.get_num_edges();
|
||||
th_var w1 = to_var(v1), w2 = to_var(v2);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue