From: Kshitij Bansal Date: Fri, 4 Jul 2014 19:34:40 +0000 (-0400) Subject: initialize variables X-Git-Tag: cvc5-1.0.0~6700^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d4f76fdfaed04bf63bb609a5fd26b0d45a9e94f4;p=cvc5.git initialize variables --- diff --git a/src/main/portfolio_util.cpp b/src/main/portfolio_util.cpp index cfaa76aa8..af8d463cb 100644 --- a/src/main/portfolio_util.cpp +++ b/src/main/portfolio_util.cpp @@ -80,7 +80,7 @@ vector parseThreadSpecificOptions(Options opts) } } free(targv[0]); - delete targv; + delete [] targv; free(tbuf); } } diff --git a/src/prop/bvminisat/core/Solver.cc b/src/prop/bvminisat/core/Solver.cc index e54c8d174..b6238460b 100644 --- a/src/prop/bvminisat/core/Solver.cc +++ b/src/prop/bvminisat/core/Solver.cc @@ -135,6 +135,15 @@ Solver::Solver(CVC4::context::Context* c) : , progress_estimate (0) , remove_satisfied (true) + , ca () + + // even though these are temporaries and technically should be set + // before calling, lets intialize them. this will reduces chances of + // non-determinism in portfolio (parallel) solver if variables are + // being (incorrectly) used without initialization. + , seen(), analyze_stack(), analyze_toclear(), add_tmp() + , max_learnts(0.0), learntsize_adjust_confl(0.0), learntsize_adjust_cnt(0) + // Resource constraints: // , conflict_budget (-1) diff --git a/src/theory/bv/bv_subtheory_algebraic.cpp b/src/theory/bv/bv_subtheory_algebraic.cpp index 750e67a2d..9dd86b5ea 100644 --- a/src/theory/bv/bv_subtheory_algebraic.cpp +++ b/src/theory/bv/bv_subtheory_algebraic.cpp @@ -193,6 +193,10 @@ AlgebraicSolver::AlgebraicSolver(context::Context* c, TheoryBV* bv) , d_isDifficult(c, false) , d_budget(options::bitvectorAlgebraicBudget()) , d_explanations() + , d_inputAssertions() + , d_ids() + , d_numSolved(0) + , d_numCalls(0) , d_ctx(new context::Context()) , d_quickXplain(options::bitvectorQuickXplain() ? new QuickXPlain("alg", d_quickSolver) : NULL) , d_statistics() @@ -641,7 +645,7 @@ bool AlgebraicSolver::useHeuristic() { if (d_numCalls == 0) return true; - double success_rate = d_numSolved/d_numCalls; + double success_rate = double(d_numSolved)/double(d_numCalls); d_statistics.d_useHeuristic.setData(success_rate); return success_rate > 0.8; } diff --git a/src/theory/bv/bv_subtheory_algebraic.h b/src/theory/bv/bv_subtheory_algebraic.h index a39631696..fbc8c3ff0 100644 --- a/src/theory/bv/bv_subtheory_algebraic.h +++ b/src/theory/bv/bv_subtheory_algebraic.h @@ -174,8 +174,8 @@ class AlgebraicSolver : public SubtheorySolver { std::vector d_explanations; /**< explanations for assertions indexed by assertion id */ TNodeSet d_inputAssertions; /**< assertions in current context (for debugging purposes only) */ NodeIdMap d_ids; /**< map from assertions to ids */ - double d_numSolved; - double d_numCalls; + uint64_t d_numSolved; + uint64_t d_numCalls; context::Context* d_ctx; QuickXPlain* d_quickXplain; /**< separate quickXplain module as it can reuse the current SAT solver */