@ -201,8 +201,8 @@ storm_rational_number_ptr storm_rational_number_pow(storm_rational_number_ptr a,
storm : : RationalNumber const & srn_a = * ( storm : : RationalNumber const * ) a ;
storm : : RationalNumber const & srn_b = * ( storm : : RationalNumber const * ) b ;
uint64_ t exponentAsInteger = carl : : toInt < unsigned long > ( srn_b ) ;
carl : : uin t exponentAsInteger = carl : : toInt < carl : : uint > ( srn_b ) ;
storm : : RationalNumber * result_srn = new storm : : RationalNumber ( carl : : pow ( srn_a , exponentAsInteger ) ) ;
return ( storm_rational_number_ptr ) result_srn ;
}
@ -515,7 +515,7 @@ storm_rational_function_ptr storm_rational_function_pow(storm_rational_function_
storm : : RationalFunction const & srf_a = * ( storm : : RationalFunction const * ) a ;
storm : : RationalFunction const & srf_b = * ( storm : : RationalFunction const * ) b ;
uint64_ t exponentAsInteger = carl : : toInt < unsigned long > ( srf_b . nominatorAsNumber ( ) ) ;
carl : : uin t exponentAsInteger = carl : : toInt < carl : : uint > ( srf_b . nominatorAsNumber ( ) ) ;
storm : : RationalFunction * result_srf = new storm : : RationalFunction ( carl : : pow ( srf_a , exponentAsInteger ) ) ;
return ( storm_rational_function_ptr ) result_srf ;
}