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.

28 lines
888 B

4 weeks ago
  1. import stormpy
  2. import stormpy.core
  3. import stormpy.examples
  4. import stormpy.examples.files
  5. def example_getting_started_04():
  6. path = stormpy.examples.files.prism_dtmc_die
  7. prism_program = stormpy.parse_prism_program(path)
  8. formula_str = "P=? [F s=7 & d=2]"
  9. properties = stormpy.parse_properties(formula_str, prism_program)
  10. model = stormpy.build_model(prism_program, properties)
  11. print(model.model_type)
  12. for state in model.states:
  13. if state.id in model.initial_states:
  14. print(state)
  15. for action in state.actions:
  16. for transition in action.transitions:
  17. print("From state {}, with probability {}, go to state {}".format(state, transition.value(),
  18. transition.column))
  19. if __name__ == '__main__':
  20. example_getting_started_04()