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
14 lines
420 B
class TestCore:
|
|
def test_init(self):
|
|
import stormpy
|
|
|
|
def test_pycarl(self):
|
|
import stormpy
|
|
import pycarl
|
|
import pycarl.cln
|
|
import pycarl.gmp
|
|
import pycarl.formula
|
|
pol1 = pycarl.gmp.FactorizedPolynomial(32)
|
|
pol2 = pycarl.gmp.FactorizedPolynomial(2)
|
|
rat = pycarl.gmp.FactorizedRationalFunction(pol1, pol2)
|
|
assert str(rat) == "16"
|