Browse Source

Fix assert in Lattice

tempestpy_adaptions
Jip Spel 6 years ago
parent
commit
ce231fd927
  1. 2
      src/storm-pars/analysis/Lattice.cpp

2
src/storm-pars/analysis/Lattice.cpp

@ -108,7 +108,7 @@ namespace storm {
} }
void Lattice::addRelationNodes(storm::analysis::Lattice::Node *above, storm::analysis::Lattice::Node * below) { void Lattice::addRelationNodes(storm::analysis::Lattice::Node *above, storm::analysis::Lattice::Node * below) {
assert(compare(above, below) == UNKNOWN);
assert(compare(above, below) == UNKNOWN || compare(above, below) == ABOVE);
above->below.insert(below); above->below.insert(below);
below->above.insert(above); below->above.insert(above);
} }

Loading…
Cancel
Save