Browse Source

fixed another more memory leak. One still missing...

tempestpy_adaptions
gereon 12 years ago
parent
commit
34ca097eb3
  1. 3
      src/adapters/ExplicitModelAdapter.h

3
src/adapters/ExplicitModelAdapter.h

@ -489,6 +489,9 @@ private:
}
void clearReachableStateSpace() {
for (auto it : allStates) {
delete it;
}
allStates.clear();
stateToIndexMap.clear();
}

Loading…
Cancel
Save