From 0c6574c740284aff812a7a9d538126202299190a Mon Sep 17 00:00:00 2001 From: tomjanson Date: Fri, 18 Nov 2016 16:58:18 +0100 Subject: [PATCH] rm questionable assertion --- src/utility/shortestPaths.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utility/shortestPaths.h b/src/utility/shortestPaths.h index fb1e0303c..2ffdcc13a 100644 --- a/src/utility/shortestPaths.h +++ b/src/utility/shortestPaths.h @@ -216,7 +216,7 @@ namespace storm { * probability of state `i`, returns an equivalent map of only the non-zero entries. */ inline std::unordered_map vectorToMap(std::vector probVector) const { - assert(probVector.size() == numStates); + //assert(probVector.size() == numStates); // numStates may not yet be initialized! // still true? std::unordered_map stateProbMap;