Browse Source

rm questionable assertion

tempestpy_adaptions
tomjanson 8 years ago
committed by Tom Janson
parent
commit
0c6574c740
  1. 2
      src/utility/shortestPaths.h

2
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<state_t, T> vectorToMap(std::vector<T> probVector) const {
assert(probVector.size() == numStates);
//assert(probVector.size() == numStates); // numStates may not yet be initialized! // still true?
std::unordered_map<state_t, T> stateProbMap;

Loading…
Cancel
Save