The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
import stormpy import stormpy.logic from helpers.helper import get_example_path import pytest
class TestJani:
def test_information_collection(self): model, properties = stormpy.parse_jani_model(get_example_path("dtmc", "brp.jani")) information = stormpy.collect_information(model) assert information.nr_automata == 5 assert information.nr_edges == 31 assert information.nr_variables == 18
|