Skip to content

Commit

Permalink
Removed debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
tquatmann committed Sep 4, 2020
1 parent 2c4e4b2 commit 42ceed5
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,8 @@ namespace storm {
newCheckTask.setProduceSchedulers(false);
qualitativeResult = modelChecker.computeProbabilities(env, newCheckTask)->template asExplicitQuantitativeCheckResult<ConstantType>().getValueVector();
}
std::cout << storm::utility::vector::toString(qualitativeResult) << std::endl;
storm::storage::BitVector maybeStates = storm::utility::vector::filter<ConstantType>(qualitativeResult,
[] (ConstantType const& value) -> bool { return !(storm::utility::isZero<ConstantType>(value) || storm::utility::isOne<ConstantType>(value)); });
std::cout <<maybeStates << std::endl;
hint.setMaybeStates(std::move(maybeStates));
hint.setResultHint(std::move(qualitativeResult));
hint.setComputeOnlyMaybeStates(true);
Expand Down

0 comments on commit 42ceed5

Please sign in to comment.