Browse Source

Fixed several issues regarding powers with negative exponents.

tempestpy_adaptions
Tim Quatmann 4 years ago
parent
commit
02695da9b7
  1. 4
      resources/3rdparty/sylvan/src/storm_wrapper.cpp
  2. 14
      src/storm/storage/expressions/ToRationalFunctionVisitor.cpp
  3. 18
      src/storm/storage/expressions/ToRationalNumberVisitor.cpp
  4. 41
      src/storm/utility/constants.cpp
  5. 2
      src/storm/utility/constants.h

4
resources/3rdparty/sylvan/src/storm_wrapper.cpp

@ -215,8 +215,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;
carl::uint exponentAsInteger = carl::toInt<carl::uint>(srn_b);
storm::RationalNumber* result_srn = new storm::RationalNumber(carl::pow(srn_a, exponentAsInteger));
carl::sint exponentAsInteger = carl::toInt<carl::sint>(srn_b);
storm::RationalNumber* result_srn = new storm::RationalNumber(storm::utility::pow(srn_a, exponentAsInteger));
return (storm_rational_number_ptr)result_srn;
}

14
src/storm/storage/expressions/ToRationalFunctionVisitor.cpp

@ -39,25 +39,21 @@ namespace storm {
boost::any ToRationalFunctionVisitor<RationalFunctionType>::visit(BinaryNumericalFunctionExpression const& expression, boost::any const& data) {
RationalFunctionType firstOperandAsRationalFunction = boost::any_cast<RationalFunctionType>(expression.getFirstOperand()->accept(*this, data));
RationalFunctionType secondOperandAsRationalFunction = boost::any_cast<RationalFunctionType>(expression.getSecondOperand()->accept(*this, data));
uint_fast64_t exponentAsInteger = 0;
switch(expression.getOperatorType()) {
case BinaryNumericalFunctionExpression::OperatorType::Plus:
return firstOperandAsRationalFunction + secondOperandAsRationalFunction;
break;
case BinaryNumericalFunctionExpression::OperatorType::Minus:
return firstOperandAsRationalFunction - secondOperandAsRationalFunction;
break;
case BinaryNumericalFunctionExpression::OperatorType::Times:
return firstOperandAsRationalFunction * secondOperandAsRationalFunction;
break;
case BinaryNumericalFunctionExpression::OperatorType::Divide:
return firstOperandAsRationalFunction / secondOperandAsRationalFunction;
break;
case BinaryNumericalFunctionExpression::OperatorType::Power:
STORM_LOG_THROW(storm::utility::isInteger(secondOperandAsRationalFunction), storm::exceptions::InvalidArgumentException, "Exponent of power operator must be a positive integer but is " << secondOperandAsRationalFunction << ".");
exponentAsInteger = storm::utility::convertNumber<uint_fast64_t>(secondOperandAsRationalFunction);
return storm::utility::pow(firstOperandAsRationalFunction, exponentAsInteger);
break;
{
STORM_LOG_THROW(storm::utility::isInteger(secondOperandAsRationalFunction), storm::exceptions::InvalidArgumentException, "Exponent of power operator must be an integer but is " << secondOperandAsRationalFunction << ".");
auto exponentAsInteger = storm::utility::convertNumber<carl::sint>(secondOperandAsRationalFunction);
return storm::utility::pow(firstOperandAsRationalFunction, exponentAsInteger);
}
default:
STORM_LOG_ASSERT(false, "Illegal operator type.");
}

18
src/storm/storage/expressions/ToRationalNumberVisitor.cpp

@ -48,38 +48,32 @@ namespace storm {
RationalNumberType firstOperandAsRationalNumber = boost::any_cast<RationalNumberType>(expression.getFirstOperand()->accept(*this, data));
RationalNumberType secondOperandAsRationalNumber = boost::any_cast<RationalNumberType>(expression.getSecondOperand()->accept(*this, data));
RationalNumberType result;
uint_fast64_t exponentAsInteger;
switch(expression.getOperatorType()) {
case BinaryNumericalFunctionExpression::OperatorType::Plus:
result = firstOperandAsRationalNumber + secondOperandAsRationalNumber;
return result;
break;
case BinaryNumericalFunctionExpression::OperatorType::Minus:
result = firstOperandAsRationalNumber - secondOperandAsRationalNumber;
return result;
break;
case BinaryNumericalFunctionExpression::OperatorType::Times:
result = firstOperandAsRationalNumber * secondOperandAsRationalNumber;
return result;
break;
case BinaryNumericalFunctionExpression::OperatorType::Divide:
result = firstOperandAsRationalNumber / secondOperandAsRationalNumber;
return result;
break;
case BinaryNumericalFunctionExpression::OperatorType::Min:
result = std::min(firstOperandAsRationalNumber, secondOperandAsRationalNumber);
return result;
break;
case BinaryNumericalFunctionExpression::OperatorType::Max:
result = std::max(firstOperandAsRationalNumber, secondOperandAsRationalNumber);
return result;
break;
case BinaryNumericalFunctionExpression::OperatorType::Power:
STORM_LOG_THROW(storm::utility::isInteger(secondOperandAsRationalNumber), storm::exceptions::InvalidArgumentException, "Exponent of power operator must be a positive integer.");
exponentAsInteger = storm::utility::convertNumber<carl::sint>(secondOperandAsRationalNumber);
result = storm::utility::pow(firstOperandAsRationalNumber, exponentAsInteger);
return result;
break;
{
STORM_LOG_THROW(storm::utility::isInteger(secondOperandAsRationalNumber), storm::exceptions::InvalidArgumentException, "Exponent of power operator must be an integer.");
auto exponentAsInteger = storm::utility::convertNumber<int_fast64_t>(secondOperandAsRationalNumber);
result = storm::utility::pow(firstOperandAsRationalNumber, exponentAsInteger);
return result;
}
default:
STORM_LOG_ASSERT(false, "Illegal operator type.");
}

41
src/storm/utility/constants.cpp

@ -224,7 +224,7 @@ namespace storm {
}
template<typename ValueType>
ValueType pow(ValueType const& value, uint_fast64_t exponent) {
ValueType pow(ValueType const& value, int_fast64_t exponent) {
return std::pow(value, exponent);
}
@ -458,13 +458,18 @@ namespace storm {
}
template<>
typename NumberTraits<ClnRationalNumber>::IntegerType pow(typename NumberTraits<ClnRationalNumber>::IntegerType const& value, uint_fast64_t exponent) {
typename NumberTraits<ClnRationalNumber>::IntegerType pow(typename NumberTraits<ClnRationalNumber>::IntegerType const& value, int_fast64_t exponent) {
STORM_LOG_THROW(exponent >= 0, storm::exceptions::InvalidArgumentException, "Tried to compute the power 'x^y' as an integer, but the exponent 'y' is negative.");
return carl::pow(value, exponent);
}
template<>
ClnRationalNumber pow(ClnRationalNumber const& value, uint_fast64_t exponent) {
return carl::pow(value, exponent);
ClnRationalNumber pow(ClnRationalNumber const& value, int_fast64_t exponent) {
if (exponent >= 0) {
return carl::pow(value, exponent);
} else {
return storm::utility::one<ClnRationalNumber>() / carl::pow(value, -exponent);
}
}
template<>
@ -655,13 +660,18 @@ namespace storm {
}
template<>
typename NumberTraits<GmpRationalNumber>::IntegerType pow(typename NumberTraits<GmpRationalNumber>::IntegerType const& value, uint_fast64_t exponent) {
typename NumberTraits<GmpRationalNumber>::IntegerType pow(typename NumberTraits<GmpRationalNumber>::IntegerType const& value, int_fast64_t exponent) {
STORM_LOG_THROW(exponent >= 0, storm::exceptions::InvalidArgumentException, "Tried to compute the power 'x^y' as an integer, but the exponent 'y' is negative.");
return carl::pow(value, exponent);
}
template<>
GmpRationalNumber pow(GmpRationalNumber const& value, uint_fast64_t exponent) {
return carl::pow(value, exponent);
GmpRationalNumber pow(GmpRationalNumber const& value, int_fast64_t exponent) {
if (exponent >= 0) {
return carl::pow(value, exponent);
} else {
return storm::utility::one<GmpRationalNumber>() / carl::pow(value, -exponent);
}
}
template<>
@ -776,6 +786,11 @@ namespace storm {
return carl::toInt<carl::uint>(convertNumber<RationalFunctionCoefficient>(func));
}
template<>
carl::sint convertNumber(RationalFunction const& func){
return carl::toInt<carl::sint>(convertNumber<RationalFunctionCoefficient>(func));
}
template<>
double convertNumber(RationalFunction const& func) {
return carl::toDouble(convertNumber<RationalFunctionCoefficient>(func));
@ -861,8 +876,12 @@ namespace storm {
}
template<>
RationalFunction pow(RationalFunction const& value, uint_fast64_t exponent) {
return carl::pow(value, exponent);
RationalFunction pow(RationalFunction const& value, int_fast64_t exponent) {
if (exponent >= 0) {
return carl::pow(value, exponent);
} else {
return storm::utility::one<RationalFunction>() / carl::pow(value, -exponent);
}
}
template<>
@ -912,7 +931,7 @@ namespace storm {
template std::pair<double, double> minmax(std::map<uint64_t, double> const&);
template double minimum(std::map<uint64_t, double> const&);
template double maximum(std::map<uint64_t, double> const&);
template double pow(double const& value, uint_fast64_t exponent);
template double pow(double const& value, int_fast64_t exponent);
template double max(double const& first, double const& second);
template double min(double const& first, double const& second);
template double sqrt(double const& number);
@ -945,7 +964,7 @@ namespace storm {
template std::pair<float, float> minmax(std::map<uint64_t, float> const&);
template float minimum(std::map<uint64_t, float> const&);
template float maximum(std::map<uint64_t, float> const&);
template float pow(float const& value, uint_fast64_t exponent);
template float pow(float const& value, int_fast64_t exponent);
template float max(float const& first, float const& second);
template float min(float const& first, float const& second);
template float sqrt(float const& number);

2
src/storm/utility/constants.h

@ -137,7 +137,7 @@ namespace storm {
ValueType maximum(std::map<K, ValueType> const& values);
template<typename ValueType>
ValueType pow(ValueType const& value, uint_fast64_t exponent);
ValueType pow(ValueType const& value, int_fast64_t exponent);
template<typename ValueType>
ValueType max(ValueType const& first, ValueType const& second);

Loading…
Cancel
Save