Browse Source

expression AND with true is immediately simplified

tempestpy_adaptions
Sebastian Junges 8 years ago
parent
commit
d7aa7cc7c8
  1. 6
      src/storm/storage/expressions/Expression.cpp

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

@ -235,6 +235,12 @@ namespace storm {
Expression operator&&(Expression const& first, Expression const& second) {
assertSameManager(first.getBaseExpression(), second.getBaseExpression());
if (first.isTrue()) {
return second;
}
if (second.isTrue()) {
return first;
}
return Expression(std::shared_ptr<BaseExpression>(new BinaryBooleanFunctionExpression(first.getBaseExpression().getManager(), first.getType().logicalConnective(second.getType()), first.getBaseExpressionPointer(), second.getBaseExpressionPointer(), BinaryBooleanFunctionExpression::OperatorType::And)));
}

Loading…
Cancel
Save