Browse Source

Depth heuristic did not skip

tempestpy_adaptions
Matthias Volk 8 years ago
parent
commit
affa7db555
  1. 2
      src/storm-dft/builder/ExplicitDFTModelBuilderApprox.cpp

2
src/storm-dft/builder/ExplicitDFTModelBuilderApprox.cpp

@ -177,7 +177,7 @@ namespace storm {
approximationThreshold = dft.nrElements()+10;
break;
case storm::builder::ApproximationHeuristic::DEPTH:
approximationThreshold = iteration;
approximationThreshold = iteration + 1;
break;
case storm::builder::ApproximationHeuristic::PROBABILITY:
case storm::builder::ApproximationHeuristic::BOUNDDIFFERENCE:

Loading…
Cancel
Save