mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 04:13:38 +00:00
fix a few warnings
This commit is contained in:
parent
466c35100d
commit
19830bcd33
3 changed files with 5 additions and 2 deletions
|
@ -139,10 +139,11 @@ static void get_interpolant(cmd_context & ctx, expr * t, params_ref &m_params) {
|
||||||
get_interpolant_and_maybe_check(ctx,t,m_params,false);
|
get_interpolant_and_maybe_check(ctx,t,m_params,false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
static void get_and_check_interpolant(cmd_context & ctx, params_ref &m_params, expr * t) {
|
static void get_and_check_interpolant(cmd_context & ctx, params_ref &m_params, expr * t) {
|
||||||
get_interpolant_and_maybe_check(ctx,t,m_params,true);
|
get_interpolant_and_maybe_check(ctx,t,m_params,true);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void compute_interpolant_and_maybe_check(cmd_context & ctx, expr * t, params_ref &m_params, bool check){
|
static void compute_interpolant_and_maybe_check(cmd_context & ctx, expr * t, params_ref &m_params, bool check){
|
||||||
|
|
||||||
|
|
|
@ -3661,7 +3661,7 @@ namespace Duality {
|
||||||
for(unsigned j = 0; j < outs.size(); j++)
|
for(unsigned j = 0; j < outs.size(); j++)
|
||||||
for(unsigned k = 0; k < outs[j]->Children.size(); k++)
|
for(unsigned k = 0; k < outs[j]->Children.size(); k++)
|
||||||
chs.push_back(outs[j]->Children[k]);
|
chs.push_back(outs[j]->Children[k]);
|
||||||
Edge *fedge = CreateEdge(node,tr,chs);
|
CreateEdge(node,tr,chs);
|
||||||
for(unsigned j = 0; j < outs.size(); j++)
|
for(unsigned j = 0; j < outs.size(); j++)
|
||||||
edges_to_delete.insert(outs[j]);
|
edges_to_delete.insert(outs[j]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,9 @@ namespace stl_ext {
|
||||||
|
|
||||||
|
|
||||||
static int lemma_count = 0;
|
static int lemma_count = 0;
|
||||||
|
#if 0
|
||||||
static int nll_lemma_count = 0;
|
static int nll_lemma_count = 0;
|
||||||
|
#endif
|
||||||
#define SHOW_LEMMA_COUNT -1
|
#define SHOW_LEMMA_COUNT -1
|
||||||
|
|
||||||
// One half of a resolution. We need this to distinguish
|
// One half of a resolution. We need this to distinguish
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue