summaryrefslogtreecommitdiff
path: root/src/decision
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2018-03-05 15:36:50 -0800
committerGitHub <noreply@github.com>2018-03-05 15:36:50 -0800
commit3d31caa30e094d337a4919b3d1e6ba9259e461b8 (patch)
treee99bc99c2ce450f7d0c4fa8c0938b24e886af996 /src/decision
parenta2e78ec8dd5e935b6ef166154be7ee35bffc6d32 (diff)
Enable -Wsuggest-override by default. (#1643)
Adds missing override keywords.
Diffstat (limited to 'src/decision')
-rw-r--r--src/decision/decision_strategy.h3
-rw-r--r--src/decision/justification_heuristic.h6
2 files changed, 4 insertions, 5 deletions
diff --git a/src/decision/decision_strategy.h b/src/decision/decision_strategy.h
index 25334b777..9b1033c86 100644
--- a/src/decision/decision_strategy.h
+++ b/src/decision/decision_strategy.h
@@ -55,8 +55,7 @@ public:
DecisionStrategy(de, c) {
}
-
- bool needIteSkolemMap() { return true; }
+ bool needIteSkolemMap() override { return true; }
virtual void addAssertions(const std::vector<Node> &assertions,
unsigned assertionsEnd,
diff --git a/src/decision/justification_heuristic.h b/src/decision/justification_heuristic.h
index 210ab4d5c..47cccfbe5 100644
--- a/src/decision/justification_heuristic.h
+++ b/src/decision/justification_heuristic.h
@@ -117,13 +117,13 @@ public:
~JustificationHeuristic();
- prop::SatLiteral getNext(bool &stopSearch);
+ prop::SatLiteral getNext(bool &stopSearch) override;
void addAssertions(const std::vector<Node> &assertions,
unsigned assertionsEnd,
- IteSkolemMap iteSkolemMap);
+ IteSkolemMap iteSkolemMap) override;
-private:
+ private:
/* getNext with an option to specify threshold */
prop::SatLiteral getNextThresh(bool &stopSearch, DecisionWeight threshold);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback