Matthias Volk
4 years ago
No known key found for this signature in database
GPG Key ID: 83A57678F739FCD3
1 changed files with
5 additions and
6 deletions
-
src/storm-dft/builder/DFTBuilder.cpp
|
|
@ -27,14 +27,13 @@ namespace storm { |
|
|
|
if (itFind != mElements.end()) { |
|
|
|
// Child found
|
|
|
|
DFTElementPointer childElement = itFind->second; |
|
|
|
STORM_LOG_THROW(!childElement->isRestriction(), storm::exceptions::WrongFormatException, |
|
|
|
"Restictor " << childElement->name() << " is not allowed as child of gate " |
|
|
|
<< gate->name()); |
|
|
|
if(!childElement->isDependency()) { |
|
|
|
if (childElement->isRestriction()) { |
|
|
|
STORM_LOG_WARN("Restriction '" << child << "' is not used as input for gate '" << gate->name() << "', because restrictions have no output."); |
|
|
|
} else if (childElement->isDependency()) { |
|
|
|
STORM_LOG_WARN("Dependency '" << child << "' is not used as input for gate '" << gate->name() << "', because dependencies have no output."); |
|
|
|
} else { |
|
|
|
gate->pushBackChild(childElement); |
|
|
|
childElement->addParent(gate); |
|
|
|
} else { |
|
|
|
STORM_LOG_TRACE("Ignore functional dependency " << child << " in gate " << gate->name()); |
|
|
|
} |
|
|
|
} else { |
|
|
|
// Child not found -> find first dependent event to assure that child is dependency
|
|
|
|