summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2014-11-07 20:43:53 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2014-11-07 20:43:53 -0500
commitd997064088a8dfed20940cfce53dbefac4c0be77 (patch)
tree1ca3c6abd64c122e490824b86d260ddc70de1044 /src
parente5de3b175640a5592b668dd18496be5a29405c5b (diff)
Remove some unused variables.
Diffstat (limited to 'src')
-rw-r--r--src/theory/bv/bv_quick_check.cpp6
-rw-r--r--src/theory/bv/bv_quick_check.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/theory/bv/bv_quick_check.cpp b/src/theory/bv/bv_quick_check.cpp
index 5c67bb3cb..9d22a3edf 100644
--- a/src/theory/bv/bv_quick_check.cpp
+++ b/src/theory/bv/bv_quick_check.cpp
@@ -150,9 +150,9 @@ QuickXPlain::QuickXPlain(const std::string& name, BVQuickCheck* solver, unsigned
, d_numCalled(0)
, d_minRatioSum(0)
, d_numConflicts(0)
- , d_period(20)
- , d_thresh(0.7)
- , d_hardThresh(0.9)
+ // , d_period(20)
+ // , d_thresh(0.7)
+ // , d_hardThresh(0.9)
, d_statistics(name)
{}
QuickXPlain::~QuickXPlain() {}
diff --git a/src/theory/bv/bv_quick_check.h b/src/theory/bv/bv_quick_check.h
index 61d6baf83..8a36e6b34 100644
--- a/src/theory/bv/bv_quick_check.h
+++ b/src/theory/bv/bv_quick_check.h
@@ -127,10 +127,10 @@ class QuickXPlain {
unsigned d_numCalled; // number of times called
double d_minRatioSum; // sum of minimization ratio for computing average min ratio
unsigned d_numConflicts; // number of conflicts (including when minimization not applied)
- unsigned d_period; // after how many conflicts to try minimizing again
+ // unsigned d_period; // after how many conflicts to try minimizing again
- double d_thresh; // if minimization ratio is less, increase period
- double d_hardThresh; // decrease period if minimization ratio is greater than this
+ // double d_thresh; // if minimization ratio is less, increase period
+ // double d_hardThresh; // decrease period if minimization ratio is greater than this
Statistics d_statistics;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback