@ -34,6 +34,7 @@ namespace storm {
boost : : any ToRationalFunctionVisitor < RationalFunctionType > : : visit ( BinaryNumericalFunctionExpression const & expression ) {
boost : : any ToRationalFunctionVisitor < RationalFunctionType > : : visit ( BinaryNumericalFunctionExpression const & expression ) {
RationalFunctionType firstOperandAsRationalFunction = boost : : any_cast < RationalFunctionType > ( expression . getFirstOperand ( ) - > accept ( * this ) ) ;
RationalFunctionType firstOperandAsRationalFunction = boost : : any_cast < RationalFunctionType > ( expression . getFirstOperand ( ) - > accept ( * this ) ) ;
RationalFunctionType secondOperandAsRationalFunction = boost : : any_cast < RationalFunctionType > ( expression . getSecondOperand ( ) - > accept ( * this ) ) ;
RationalFunctionType secondOperandAsRationalFunction = boost : : any_cast < RationalFunctionType > ( expression . getSecondOperand ( ) - > accept ( * this ) ) ;
uint_fast64_t exponentAsInteger = 0 ;
switch ( expression . getOperatorType ( ) ) {
switch ( expression . getOperatorType ( ) ) {
case BinaryNumericalFunctionExpression : : OperatorType : : Plus :
case BinaryNumericalFunctionExpression : : OperatorType : : Plus :
return firstOperandAsRationalFunction + secondOperandAsRationalFunction ;
return firstOperandAsRationalFunction + secondOperandAsRationalFunction ;
@ -47,6 +48,11 @@ namespace storm {
case BinaryNumericalFunctionExpression : : OperatorType : : Divide :
case BinaryNumericalFunctionExpression : : OperatorType : : Divide :
return firstOperandAsRationalFunction / secondOperandAsRationalFunction ;
return firstOperandAsRationalFunction / secondOperandAsRationalFunction ;
break ;
break ;
case BinaryNumericalFunctionExpression : : OperatorType : : Power :
STORM_LOG_THROW ( storm : : utility : : isInteger ( secondOperandAsRationalFunction ) , storm : : exceptions : : InvalidArgumentException , " Exponent of power operator must be a positive integer. " ) ;
exponentAsInteger = storm : : utility : : convertNumber < uint_fast64_t > ( secondOperandAsRationalFunction ) ;
return storm : : utility : : pow ( firstOperandAsRationalFunction , exponentAsInteger ) ;
break ;
default :
default :
STORM_LOG_ASSERT ( false , " Illegal operator type. " ) ;
STORM_LOG_ASSERT ( false , " Illegal operator type. " ) ;
}
}