Browse Source

Merge pull request #123 from johannesalehmann/master

Fixed incorrect type of modulo expression with integer inputs
tempestpy_adaptions
Tim Quatmann 3 years ago
committed by GitHub
parent
commit
72a387960d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/storm/storage/expressions/Expression.cpp
  2. 5
      src/storm/storage/expressions/Type.cpp
  3. 1
      src/storm/storage/expressions/Type.h
  4. 21
      src/test/storm/storage/ExpressionTest.cpp

4
src/storm/storage/expressions/Expression.cpp

@ -285,7 +285,7 @@ namespace storm {
Expression operator%(Expression const& first, Expression const& second) {
assertSameManager(first.getBaseExpression(), second.getBaseExpression());
return Expression(std::shared_ptr<BaseExpression>(new BinaryNumericalFunctionExpression(first.getBaseExpression().getManager(), first.getType().power(second.getType()), first.getBaseExpressionPointer(), second.getBaseExpressionPointer(), BinaryNumericalFunctionExpression::OperatorType::Modulo)));
return Expression(std::shared_ptr<BaseExpression>(new BinaryNumericalFunctionExpression(first.getBaseExpression().getManager(), first.getType().modulo(second.getType()), first.getBaseExpressionPointer(), second.getBaseExpressionPointer(), BinaryNumericalFunctionExpression::OperatorType::Modulo)));
}
Expression operator&&(Expression const& first, Expression const& second) {
@ -452,7 +452,7 @@ namespace storm {
}
Expression modulo(Expression const& first, Expression const& second) {
return Expression(std::shared_ptr<BaseExpression>(new BinaryNumericalFunctionExpression(first.getBaseExpression().getManager(), first.getType().minimumMaximum(second.getType()), first.getBaseExpressionPointer(), second.getBaseExpressionPointer(), BinaryNumericalFunctionExpression::OperatorType::Modulo)));
return Expression(std::shared_ptr<BaseExpression>(new BinaryNumericalFunctionExpression(first.getBaseExpression().getManager(), first.getType().modulo(second.getType()), first.getBaseExpressionPointer(), second.getBaseExpressionPointer(), BinaryNumericalFunctionExpression::OperatorType::Modulo)));
}
Expression apply(std::vector<storm::expressions::Expression> const& expressions, std::function<Expression (Expression const&, Expression const&)> const& function) {

5
src/storm/storage/expressions/Type.cpp

@ -215,6 +215,11 @@ namespace storm {
return std::max(*this, other);
}
Type Type::modulo(Type const& other) const {
STORM_LOG_THROW(this->isNumericalType() && other.isNumericalType(), storm::exceptions::InvalidTypeException, "Operator requires numerical operands.");
return std::max(*this, other);
}
Type Type::power(Type const& other, bool allowIntegerType) const {
STORM_LOG_THROW(this->isNumericalType() && other.isNumericalType(), storm::exceptions::InvalidTypeException, "Operator requires numerical operands.");
STORM_LOG_THROW(!this->isBitVectorType() && !other.isBitVectorType(), storm::exceptions::InvalidTypeException, "Operator requires non-bitvector operands.");

1
src/storm/storage/expressions/Type.h

@ -115,6 +115,7 @@ namespace storm {
Type plusMinusTimes(Type const& other) const;
Type minus() const;
Type divide(Type const& other) const;
Type modulo(Type const& other) const;
Type power(Type const& other, bool allowIntegerType = false) const;
Type logicalConnective(Type const& other) const;
Type logicalConnective() const;

21
src/test/storm/storage/ExpressionTest.cpp

@ -210,6 +210,26 @@ TEST(Expression, OperatorTest) {
ASSERT_NO_THROW(tempExpression = intVarExpression <= rationalVarExpression);
EXPECT_TRUE(tempExpression.hasBooleanType());
STORM_SILENT_ASSERT_THROW(tempExpression = trueExpression % piExpression, storm::exceptions::InvalidTypeException);
ASSERT_NO_THROW(tempExpression = threeExpression % threeExpression);
EXPECT_TRUE(tempExpression.hasIntegerType());
ASSERT_NO_THROW(tempExpression = threeExpression % piExpression);
EXPECT_TRUE(tempExpression.hasRationalType());
ASSERT_NO_THROW(tempExpression = piExpression % threeExpression);
EXPECT_TRUE(tempExpression.hasRationalType());
ASSERT_NO_THROW(tempExpression = piExpression % piExpression);
EXPECT_TRUE(tempExpression.hasRationalType());
STORM_SILENT_ASSERT_THROW(tempExpression = storm::expressions::modulo(trueExpression, piExpression), storm::exceptions::InvalidTypeException);
ASSERT_NO_THROW(tempExpression = storm::expressions::modulo(threeExpression, threeExpression));
EXPECT_TRUE(tempExpression.hasIntegerType());
ASSERT_NO_THROW(tempExpression = storm::expressions::modulo(threeExpression, piExpression));
EXPECT_TRUE(tempExpression.hasRationalType());
ASSERT_NO_THROW(tempExpression = storm::expressions::modulo(piExpression, threeExpression));
EXPECT_TRUE(tempExpression.hasRationalType());
ASSERT_NO_THROW(tempExpression = storm::expressions::modulo(piExpression, piExpression));
EXPECT_TRUE(tempExpression.hasRationalType());
STORM_SILENT_ASSERT_THROW(tempExpression = storm::expressions::minimum(trueExpression, piExpression), storm::exceptions::InvalidTypeException);
ASSERT_NO_THROW(tempExpression = storm::expressions::minimum(threeExpression, threeExpression));
EXPECT_TRUE(tempExpression.hasIntegerType());
@ -260,7 +280,6 @@ TEST(Expression, OperatorTest) {
ASSERT_NO_THROW(tempExpression = storm::expressions::pow(intVarExpression, rationalVarExpression));
EXPECT_TRUE(tempExpression.hasRationalType());
STORM_SILENT_ASSERT_THROW(tempExpression = storm::expressions::modulo(trueExpression, piExpression), storm::exceptions::InvalidTypeException);
ASSERT_NO_THROW(tempExpression = storm::expressions::maximum(threeExpression, threeExpression));
EXPECT_TRUE(tempExpression.hasIntegerType());
}

Loading…
Cancel
Save