Browse Source

fix sign to be as in jani, add truncate

Former-commit-id: 9bdfa8f9fa [formerly 48e15d5070]
Former-commit-id: 298d46b5cc
main
sjunges 9 years ago
parent
commit
6966f2fffe
  1. 7
      src/storage/expressions/Expression.cpp

7
src/storage/expressions/Expression.cpp

@ -316,18 +316,17 @@ namespace storm {
Expression abs(Expression const& first) {
STORM_LOG_THROW(first.hasNumericalType(), storm::exceptions::InvalidTypeException, "Abs is only defined for numerical operands");
return ite(first < first.getManager().integer(0), -first, first);
return ite(first < 0, -first, first);
}
Expression sign(Expression const& first) {
STORM_LOG_THROW(first.hasNumericalType(), storm::exceptions::InvalidTypeException, "Sign is only defined for numerical operands");
return ite(first < 0, -first, first);
return ite(first > 0, first.getManager().integer(1), ite(first < 0, first.getManager().integer(0), first.getManager().integer(0)));
}
Expression truncate(Expression const& first) {
STORM_LOG_THROW(first.hasNumericalType(), storm::exceptions::InvalidTypeException, "Truncate is only defined for numerical operands");
// TODO implement (via Ite?)
STORM_LOG_ERROR("Not yet implemented");
return ite(first < 0, floor(first), ceil(first));
}
Expression disjunction(std::vector<storm::expressions::Expression> const& expressions) {

Loading…
Cancel
Save