|
|
@ -202,7 +202,7 @@ namespace storm { |
|
|
|
* Helper to the independent subtree computation |
|
|
|
* @see independentSubDft |
|
|
|
*/ |
|
|
|
virtual void extendSubDft(std::set<size_t> elemsInSubtree, std::vector<size_t> const& parentsOfSubRoot) const; |
|
|
|
virtual void extendSubDft(std::set<size_t>& elemsInSubtree, std::vector<size_t> const& parentsOfSubRoot) const; |
|
|
|
|
|
|
|
virtual bool isTypeEqualTo(DFTElement<ValueType> const& other) const { |
|
|
|
return type() == other.type(); |
|
|
@ -291,6 +291,11 @@ namespace storm { |
|
|
|
std::vector<size_t> pids = this->parentIds(); |
|
|
|
for(auto const& child : mChildren) { |
|
|
|
child->extendSubDft(unit, pids); |
|
|
|
std::cout << "int sub "; |
|
|
|
for(auto const& i : unit) { |
|
|
|
std::cout << i << " "; |
|
|
|
} |
|
|
|
std::cout << std::endl; |
|
|
|
if(unit.empty()) { |
|
|
|
// Parent in the subdft, ie it is *not* a subdft |
|
|
|
break; |
|
|
@ -299,9 +304,10 @@ namespace storm { |
|
|
|
return std::vector<size_t>(unit.begin(), unit.end()); |
|
|
|
} |
|
|
|
|
|
|
|
virtual void extendSubDft(std::set<size_t> elemsInSubtree, std::vector<size_t> const& parentsOfSubRoot) const override { |
|
|
|
virtual void extendSubDft(std::set<size_t>& elemsInSubtree, std::vector<size_t> const& parentsOfSubRoot) const override { |
|
|
|
if(elemsInSubtree.count(this->id()) > 0) return; |
|
|
|
DFTElement<ValueType>::extendSubDft(elemsInSubtree, parentsOfSubRoot); |
|
|
|
if(!elemsInSubtree.empty()) { |
|
|
|
if(elemsInSubtree.empty()) { |
|
|
|
// Parent in the subdft, ie it is *not* a subdft |
|
|
|
return; |
|
|
|
} |
|
|
@ -309,7 +315,7 @@ namespace storm { |
|
|
|
child->extendSubDft(elemsInSubtree, parentsOfSubRoot); |
|
|
|
if(elemsInSubtree.empty()) { |
|
|
|
// Parent in the subdft, ie it is *not* a subdft |
|
|
|
break; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -437,7 +443,7 @@ namespace storm { |
|
|
|
return mIngoingDependencies.size(); |
|
|
|
} |
|
|
|
|
|
|
|
DFTDependencyVector const& getIngoingDependencies() const { |
|
|
|
DFTDependencyVector const& ingoingDependencies() const { |
|
|
|
return mIngoingDependencies; |
|
|
|
} |
|
|
|
|
|
|
@ -455,6 +461,22 @@ namespace storm { |
|
|
|
return storm::utility::isZero(mPassiveFailureRate); |
|
|
|
} |
|
|
|
|
|
|
|
virtual void extendSubDft(std::set<size_t>& elemsInSubtree, std::vector<size_t> const& parentsOfSubRoot) const override { |
|
|
|
if(elemsInSubtree.count(this->id())) return; |
|
|
|
DFTElement<ValueType>::extendSubDft(elemsInSubtree, parentsOfSubRoot); |
|
|
|
if(elemsInSubtree.empty()) { |
|
|
|
// Parent in the subdft, ie it is *not* a subdft |
|
|
|
return; |
|
|
|
} |
|
|
|
for(auto const& incDep : mIngoingDependencies) { |
|
|
|
incDep->extendSubDft(elemsInSubtree, parentsOfSubRoot); |
|
|
|
if(elemsInSubtree.empty()) { |
|
|
|
// Parent in the subdft, ie it is *not* a subdft |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
bool isTypeEqualTo(DFTElement<ValueType> const& other) const override { |
|
|
|
if(!DFTElement<ValueType>::isTypeEqualTo(other)) return false; |
|
|
|
DFTBE<ValueType> const& otherBE = static_cast<DFTBE<ValueType> const&>(other); |
|
|
@ -502,6 +524,8 @@ namespace storm { |
|
|
|
return 0; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool isTypeEqualTo(DFTElement<ValueType> const& other) const override { |
|
|
|
if(!DFTElement<ValueType>::isTypeEqualTo(other)) return false; |
|
|
|
DFTConst<ValueType> const& otherCNST = static_cast<DFTConst<ValueType> const&>(other); |
|
|
@ -589,6 +613,23 @@ namespace storm { |
|
|
|
return std::vector<size_t>(unit.begin(), unit.end()); |
|
|
|
} |
|
|
|
|
|
|
|
virtual void extendSubDft(std::set<size_t>& elemsInSubtree, std::vector<size_t> const& parentsOfSubRoot) const override { |
|
|
|
if(elemsInSubtree.count(this->id())) return; |
|
|
|
DFTElement<ValueType>::extendSubDft(elemsInSubtree, parentsOfSubRoot); |
|
|
|
if(elemsInSubtree.empty()) { |
|
|
|
// Parent in the subdft, ie it is *not* a subdft |
|
|
|
return; |
|
|
|
} |
|
|
|
mDependentEvent->extendSubDft(elemsInSubtree, parentsOfSubRoot); |
|
|
|
if(elemsInSubtree.empty()) { |
|
|
|
// Parent in the subdft, ie it is *not* a subdft |
|
|
|
return; |
|
|
|
} |
|
|
|
mTriggerEvent->extendSubDft(elemsInSubtree, parentsOfSubRoot); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
virtual std::string toString() const override { |
|
|
|
std::stringstream stream; |
|
|
|
bool fdep = storm::utility::isOne(mProbability); |
|
|
|