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.
 
 
 
 
 
 

21 lines
675 B

import stormpy
import stormpy.gspn
import stormpy.examples
import stormpy.examples.files
def example_gspns_01():
# Load a GSPN from file (PNML format)
import_path = stormpy.examples.files.gspn_pnml_simple
gspn_parser = stormpy.gspn.GSPNParser()
gspn = gspn_parser.parse(import_path)
print("Name of GSPN: {}.".format(gspn.get_name()))
print("Number of places: {}.".format(gspn.get_number_of_places()))
print("Number of immediate transitions: {}.".format(gspn.get_number_of_immediate_transitions()))
print("Number of timed transitions: {}.".format(gspn.get_number_of_timed_transitions()))
if __name__ == '__main__':
example_gspns_01()