mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
fix build warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7da58b9e84
commit
2c94a3a1b3
|
@ -2942,7 +2942,6 @@ namespace smt {
|
||||||
|
|
||||||
if (!e_internalized(var))
|
if (!e_internalized(var))
|
||||||
return;
|
return;
|
||||||
enode* n = get_enode(var);
|
|
||||||
theory* th = m_theories.get_plugin(s->get_family_id());
|
theory* th = m_theories.get_plugin(s->get_family_id());
|
||||||
if (!th) {
|
if (!th) {
|
||||||
IF_VERBOSE(5, verbose_stream() << "No theory is attached to variable " << mk_pp(var, m) << " := " << mk_pp(value, m) << "\n");
|
IF_VERBOSE(5, verbose_stream() << "No theory is attached to variable " << mk_pp(var, m) << " := " << mk_pp(value, m) << "\n");
|
||||||
|
|
|
@ -79,7 +79,7 @@ namespace smt {
|
||||||
compare comp(ctx);
|
compare comp(ctx);
|
||||||
std::sort(vars.begin(), vars.end(), comp);
|
std::sort(vars.begin(), vars.end(), comp);
|
||||||
|
|
||||||
unsigned nf = 0, nc = 0, ns = 0, n = 0;
|
unsigned ns = 0, n = 0;
|
||||||
for (bool_var v : vars) {
|
for (bool_var v : vars) {
|
||||||
if (!ctx.bool_var2expr(v))
|
if (!ctx.bool_var2expr(v))
|
||||||
continue;
|
continue;
|
||||||
|
@ -98,7 +98,6 @@ namespace smt {
|
||||||
if (inconsistent) {
|
if (inconsistent) {
|
||||||
ctx.assign(~lit, b_justification::mk_axiom(), false);
|
ctx.assign(~lit, b_justification::mk_axiom(), false);
|
||||||
ctx.propagate();
|
ctx.propagate();
|
||||||
++nf;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,7 +113,6 @@ namespace smt {
|
||||||
if (inconsistent) {
|
if (inconsistent) {
|
||||||
ctx.assign(lit, b_justification::mk_axiom(), false);
|
ctx.assign(lit, b_justification::mk_axiom(), false);
|
||||||
ctx.propagate();
|
ctx.propagate();
|
||||||
++nf;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
double score = score1 + score2 + 1024*score1*score2;
|
double score = score1 + score2 + 1024*score1*score2;
|
||||||
|
@ -132,7 +130,6 @@ namespace smt {
|
||||||
best_v = v;
|
best_v = v;
|
||||||
ns = 0;
|
ns = 0;
|
||||||
}
|
}
|
||||||
++nc;
|
|
||||||
++ns;
|
++ns;
|
||||||
if (ns > budget) {
|
if (ns > budget) {
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -86,7 +86,6 @@ static void track_clauses(sat::solver const& src,
|
||||||
dst.mk_var(false, true);
|
dst.mk_var(false, true);
|
||||||
}
|
}
|
||||||
sat::literal_vector lits;
|
sat::literal_vector lits;
|
||||||
sat::literal lit;
|
|
||||||
sat::clause * const * it = src.begin_clauses();
|
sat::clause * const * it = src.begin_clauses();
|
||||||
sat::clause * const * end = src.end_clauses();
|
sat::clause * const * end = src.end_clauses();
|
||||||
svector<sat::solver::bin_clause> bin_clauses;
|
svector<sat::solver::bin_clause> bin_clauses;
|
||||||
|
|
Loading…
Reference in a new issue