You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
385 B

  1. class TestCore:
  2. def test_init(self):
  3. import stormpy
  4. def test_pycarl(self):
  5. import stormpy
  6. import pycarl
  7. import pycarl.formula
  8. import pycarl.parse
  9. pol1 = pycarl.FactorizedPolynomial(32)
  10. pol2 = pycarl.FactorizedPolynomial(2)
  11. rat = pycarl.FactorizedRationalFunction(pol1, pol2)
  12. assert str(rat) == "16"