Browse Source

Silence warning by not giving an argument name

tempestpy_adaptions
Matthias Volk 8 years ago
parent
commit
865db61018
  1. 6
      src/storm/builder/DftExplorationHeuristic.h

6
src/storm/builder/DftExplorationHeuristic.h

@ -80,7 +80,7 @@ namespace storm {
// Intentionally left empty
}
bool updateHeuristicValues(DFTExplorationHeuristic<ValueType> const& predecessor, ValueType rate, ValueType exitRate) override {
bool updateHeuristicValues(DFTExplorationHeuristic<ValueType> 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<ValueType> const& predecessor, ValueType rate, ValueType exitRate) override {
bool updateHeuristicValues(DFTExplorationHeuristic<ValueType> const& predecessor, ValueType, ValueType) override {
if (predecessor.getDepth() < this->depth) {
this->depth = predecessor.getDepth();
return true;

Loading…
Cancel
Save