Browse Source

Property threshold is RationalNumber now

Former-commit-id: e8a3afbaeb
tempestpy_adaptions
Mavo 8 years ago
committed by Matthias Volk
parent
commit
c883efc372
  1. 9
      stormpy/tests/logic/test_formulas.py

9
stormpy/tests/logic/test_formulas.py

@ -1,3 +1,4 @@
import pycarl
import stormpy
import stormpy.logic
@ -37,14 +38,14 @@ class TestFormulas:
prop = "P<0.4 [F \"one\"]"
formula = stormpy.parse_formulas(prop)[0]
assert formula.has_bound()
assert formula.threshold == 0.4
assert formula.threshold == pycarl.Rational("0.4")
assert formula.comparison_type == stormpy.logic.ComparisonType.LESS
def test_set_bounds(self):
prop = "P<0.4 [F \"one\"]"
formula = stormpy.parse_formulas(prop)[0]
formula.threshold = 0.2
formula.threshold = pycarl.Rational("0.2")
formula.comparison_type = stormpy.logic.ComparisonType.GEQ
assert formula.threshold == 0.2
assert formula.threshold == pycarl.Rational("0.2")
assert formula.comparison_type == stormpy.logic.ComparisonType.GEQ
assert str(formula) == "P>=0.2 [F \"one\"]"
assert str(formula) == "P>=1/5 [F \"one\"]"
Loading…
Cancel
Save