|
|
@ -115,6 +115,16 @@ namespace storm { |
|
|
|
return this->actionIndicesToCommandIndexMap.find(actionIndex) != this->actionIndicesToCommandIndexMap.end(); |
|
|
|
} |
|
|
|
|
|
|
|
uint64_t Module::getNumberOfUnlabeledCommands() const { |
|
|
|
uint64_t result = 0; |
|
|
|
for (auto const& cmd : commands) { |
|
|
|
if(!cmd.isLabeled()) { |
|
|
|
result++; |
|
|
|
} |
|
|
|
} |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
bool Module::isRenamedFromModule() const { |
|
|
|
return this->renamedFromModule != ""; |
|
|
|
} |
|
|
|