Browse Source

fixed bug in composition

Former-commit-id: 0efedc3ec1
tempestpy_adaptions
dehnert 9 years ago
parent
commit
4e97d294b3
  1. 2
      src/builder/DdPrismModelBuilder.cpp

2
src/builder/DdPrismModelBuilder.cpp

@ -286,7 +286,7 @@ namespace storm {
if (synchronizationActionIndices.find(action.first) != synchronizationActionIndices.end()) {
// If we are to synchronize over an action that does not exist in the second module, the result
// is that the synchronization is the empty action.
if (right.hasSynchronizingAction(action.first)) {
if (!right.hasSynchronizingAction(action.first)) {
action.second = emptyAction;
} else {
// Otherwise, the actions of the modules are synchronized.

Loading…
Cancel
Save