diff --git a/src/storm/builder/DftExplorationHeuristic.h b/src/storm/builder/DftExplorationHeuristic.h index 44931dfbf..af8aef4a1 100644 --- a/src/storm/builder/DftExplorationHeuristic.h +++ b/src/storm/builder/DftExplorationHeuristic.h @@ -80,7 +80,7 @@ namespace storm { // Intentionally left empty } - bool updateHeuristicValues(DFTExplorationHeuristic const& predecessor, ValueType rate, ValueType exitRate) override { + bool updateHeuristicValues(DFTExplorationHeuristic const&, ValueType, ValueType) override { return false; } @@ -88,7 +88,7 @@ namespace storm { return 0; } - bool isSkip(double approximationThreshold) const override { + bool isSkip(double) const override { return false; } @@ -108,7 +108,7 @@ namespace storm { // Intentionally left empty } - bool updateHeuristicValues(DFTExplorationHeuristic const& predecessor, ValueType rate, ValueType exitRate) override { + bool updateHeuristicValues(DFTExplorationHeuristic const& predecessor, ValueType, ValueType) override { if (predecessor.getDepth() < this->depth) { this->depth = predecessor.getDepth(); return true;