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
420 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.cln
  8. import pycarl.gmp
  9. import pycarl.formula
  10. pol1 = pycarl.gmp.FactorizedPolynomial(32)
  11. pol2 = pycarl.gmp.FactorizedPolynomial(2)
  12. rat = pycarl.gmp.FactorizedRationalFunction(pol1, pol2)
  13. assert str(rat) == "16"