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.
38 lines
1.2 KiB
38 lines
1.2 KiB
import os
|
|
|
|
import stormpy
|
|
from helpers.helper import get_example_path
|
|
|
|
from configurations import gspn
|
|
|
|
|
|
@gspn
|
|
class TestGSPNBuilder:
|
|
def test_build_gspn(self):
|
|
# assert True
|
|
# builder: ~/storm/src/storm-dft/transformations/DFTToGSPNTransformator.cpp
|
|
gspn_name = "gspn_test"
|
|
builder = stormpy.gspn.GSPNBuilder()
|
|
builder.set_name(gspn_name)
|
|
# todo place tests, set_place_layout_info (boost)
|
|
# p_id_0 = builder.add_place(capacity = 1, initialTokens=0, name="place_test")
|
|
|
|
ti_id_0 = builder.add_immediate_transition()
|
|
ti_id_1 = builder.add_immediate_transition(priority=0, weight=0.5, name="ti_1")
|
|
|
|
tt_id_0 = builder.add_timed_transition(priority=0, rate=0.5, name="tt_0")
|
|
# todo problems with sumServers (boost)
|
|
# tt_id_1 = builder.add_timed_transition(priority=0, rate=0.5, numServers=2, name="tt_1")
|
|
|
|
# todo tests for add_ (add_place needed)
|
|
# builder.add_input_arc(ti_id_0, ti_id_1, multiplicity = 2)
|
|
# todo test addNormalArc
|
|
# todo test setTransitionLayoutInfo ...
|
|
|
|
|
|
gspn = builder.build_gspn()
|
|
assert gspn.name() == gspn_name
|
|
|
|
|
|
|
|
|