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.

21 lines
660 B

  1. import stormpy
  2. import stormpy.core
  3. import stormpy.examples
  4. import stormpy.examples.files
  5. def example_analysis_02():
  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_symbolic_model(prism_program, properties)
  11. result = stormpy.model_checking(model, properties[0])
  12. filter = stormpy.create_filter_initial_states_symbolic(model)
  13. result.filter(filter)
  14. assert result.min == result.max
  15. print(result.min)
  16. if __name__ == '__main__':
  17. example_analysis_02()