|
|
@ -68,6 +68,7 @@ namespace storm { |
|
|
|
rpatl.setUntilFormulasAllowed(true); |
|
|
|
rpatl.setGloballyFormulasAllowed(true); |
|
|
|
rpatl.setNextFormulasAllowed(true); |
|
|
|
rpatl.setBoundedGloballyFormulasAllowed(true); |
|
|
|
|
|
|
|
return rpatl; |
|
|
|
} |
|
|
@ -316,6 +317,15 @@ namespace storm { |
|
|
|
return *this; |
|
|
|
} |
|
|
|
|
|
|
|
bool FragmentSpecification::areBoundedGloballyFormulasAllowed() const { |
|
|
|
return boundedGloballyFormula; |
|
|
|
} |
|
|
|
|
|
|
|
FragmentSpecification& FragmentSpecification::setBoundedGloballyFormulasAllowed(bool newValue) { |
|
|
|
this->boundedGloballyFormula = newValue; |
|
|
|
return *this; |
|
|
|
} |
|
|
|
|
|
|
|
bool FragmentSpecification::areAtomicExpressionFormulasAllowed() const { |
|
|
|
return atomicExpressionFormula; |
|
|
|
} |
|
|
|