Browse Source

Use heuristic probability

Former-commit-id: 747b34cfdc
tempestpy_adaptions
Mavo 8 years ago
parent
commit
6778a018ad
  1. 10
      src/builder/ExplicitDFTModelBuilderApprox.cpp
  2. 2
      src/builder/ExplicitDFTModelBuilderApprox.h
  3. 2
      src/storage/BucketPriorityQueue.h

10
src/builder/ExplicitDFTModelBuilderApprox.cpp

@ -33,12 +33,12 @@ namespace storm {
matrixBuilder(!generator.isDeterministicModel()),
stateStorage(((dft.stateVectorSize() / 64) + 1) * 64),
// TODO Matthias: make choosable
explorationQueue(dft.nrElements()+1, 0, 1)
//explorationQueue(1001, 0, 0.001)
//explorationQueue(dft.nrElements()+1, 0, 1)
explorationQueue(1001, 0, 0.001)
{
// Intentionally left empty.
// TODO Matthias: remove again
heuristic = storm::builder::ApproximationHeuristic::NONE;
heuristic = storm::builder::ApproximationHeuristic::PROBABILITY;
}
template<typename ValueType, typename StateType>
@ -267,8 +267,8 @@ namespace storm {
// Try to explore the next state
generator.load(currentState);
//if (nrExpandedStates > approximationThreshold && !currentExplorationHeuristic->isExpand()) {
if (currentExplorationHeuristic->isSkip(approximationThreshold)) {
if (nrExpandedStates > approximationThreshold && !currentExplorationHeuristic->isExpand()) {
//if (currentExplorationHeuristic->isSkip(approximationThreshold)) {
// Skip the current state
++nrSkippedStates;
STORM_LOG_TRACE("Skip expansion of state: " << dft.getStateString(currentState));

2
src/builder/ExplicitDFTModelBuilderApprox.h

@ -28,7 +28,7 @@ namespace storm {
using DFTStatePointer = std::shared_ptr<storm::storage::DFTState<ValueType>>;
// TODO Matthias: make choosable
using ExplorationHeuristic = DFTExplorationHeuristicNone<ValueType>;
using ExplorationHeuristic = DFTExplorationHeuristicProbability<ValueType>;
using ExplorationHeuristicPointer = std::shared_ptr<ExplorationHeuristic>;

2
src/storage/BucketPriorityQueue.h

@ -13,7 +13,7 @@ namespace storm {
template<typename ValueType>
class BucketPriorityQueue {
using HeuristicPointer = std::shared_ptr<storm::builder::DFTExplorationHeuristicNone<ValueType>>;
using HeuristicPointer = std::shared_ptr<storm::builder::DFTExplorationHeuristicProbability<ValueType>>;
public:
explicit BucketPriorityQueue(size_t nrBuckets, double lowerValue, double stepPerBucket);

Loading…
Cancel
Save