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.

116 lines
5.8 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. import stormpy
  2. import stormpy.logic
  3. from helpers.helper import get_example_path
  4. import math
  5. class TestModelChecking:
  6. def test_model_checking_prism_dtmc(self):
  7. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  8. formulas = stormpy.parse_properties_for_prism_program("P=? [ F \"one\" ]", program)
  9. model = stormpy.build_model(program, formulas)
  10. assert model.nr_states == 13
  11. assert model.nr_transitions == 20
  12. assert len(model.initial_states) == 1
  13. initial_state = model.initial_states[0]
  14. assert initial_state == 0
  15. result = stormpy.model_checking(model, formulas[0])
  16. assert math.isclose(result.at(initial_state), 0.16666666666666663)
  17. def test_model_checking_jani_dtmc(self):
  18. jani_model, properties = stormpy.parse_jani_model(get_example_path("dtmc", "die.jani"))
  19. formula = properties["Probability to throw a six"]
  20. model = stormpy.build_model(jani_model, [formula])
  21. assert model.nr_states == 13
  22. assert model.nr_transitions == 20
  23. assert len(model.initial_states) == 1
  24. initial_state = model.initial_states[0]
  25. assert initial_state == 0
  26. result = stormpy.model_checking(model, formula)
  27. assert math.isclose(result.at(initial_state), 0.16666666666666663)
  28. def test_model_checking_jani_dtmc(self):
  29. jani_model, properties = stormpy.parse_jani_model(get_example_path("dtmc", "die.jani"))
  30. formula = properties["Expected number of coin flips"]
  31. model = stormpy.build_model(jani_model, [formula])
  32. assert model.nr_states == 13
  33. assert model.nr_transitions == 20
  34. assert len(model.initial_states) == 1
  35. initial_state = model.initial_states[0]
  36. assert initial_state == 0
  37. # Unsupported formula yields None result
  38. result = stormpy.model_checking(model, formula)
  39. assert result is None
  40. def test_model_checking_dtmc_all_labels(self):
  41. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  42. formulas = stormpy.parse_properties_for_prism_program("P=? [ F \"one\" ]", program)
  43. model = stormpy.build_model(program)
  44. assert model.nr_states == 13
  45. assert model.nr_transitions == 20
  46. assert len(model.initial_states) == 1
  47. initial_state = model.initial_states[0]
  48. assert initial_state == 0
  49. result = stormpy.model_checking(model, formulas[0])
  50. assert math.isclose(result.at(initial_state), 0.16666666666666663)
  51. formulas = stormpy.parse_properties_for_prism_program("P=? [ F \"two\" ]", program)
  52. result = stormpy.model_checking(model, formulas[0])
  53. assert math.isclose(result.at(initial_state), 0.16666666666666663)
  54. def test_model_checking_all_dtmc(self):
  55. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  56. formulas = stormpy.parse_properties_for_prism_program("P=? [ F \"one\" ]", program)
  57. model = stormpy.build_model(program, formulas)
  58. assert model.nr_states == 13
  59. assert model.nr_transitions == 20
  60. result = stormpy.model_checking(model, formulas[0])
  61. assert result.result_for_all_states
  62. reference = [0.16666666666666663, 0.3333333333333333, 0, 0.6666666666666666, 0, 0, 0, 1, 0, 0, 0, 0, 0]
  63. assert all(map(math.isclose, result.get_values(), reference))
  64. def test_model_checking_only_initial(self):
  65. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  66. formulas = stormpy.parse_properties_for_prism_program("Pmax=? [F{\"coin_flips\"}<=3 \"one\"]", program)
  67. model = stormpy.build_model(program, formulas)
  68. assert len(model.initial_states) == 1
  69. initial_state = model.initial_states[0]
  70. assert initial_state == 0
  71. result = stormpy.model_checking(model, formulas[0], only_initial_states=True)
  72. assert not result.result_for_all_states
  73. assert math.isclose(result.at(initial_state), 0.125)
  74. def test_model_checking_prob01(self):
  75. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  76. formulaPhi = stormpy.parse_properties("true")[0]
  77. formulaPsi = stormpy.parse_properties("\"six\"")[0]
  78. model = stormpy.build_model(program, [formulaPsi])
  79. phiResult = stormpy.model_checking(model, formulaPhi)
  80. phiStates = phiResult.get_truth_values()
  81. assert phiStates.number_of_set_bits() == model.nr_states
  82. psiResult = stormpy.model_checking(model, formulaPsi)
  83. psiStates = psiResult.get_truth_values()
  84. assert psiStates.number_of_set_bits() == 1
  85. (prob0, prob1) = stormpy.compute_prob01_states(model, phiStates, psiStates)
  86. assert prob0.number_of_set_bits() == 9
  87. assert prob1.number_of_set_bits() == 1
  88. (prob0, prob1) = stormpy.compute_prob01min_states(model, phiStates, psiStates)
  89. assert prob0.number_of_set_bits() == 9
  90. assert prob1.number_of_set_bits() == 1
  91. (prob0, prob1) = stormpy.compute_prob01max_states(model, phiStates, psiStates)
  92. assert prob0.number_of_set_bits() == 9
  93. assert prob1.number_of_set_bits() == 1
  94. labelprop = stormpy.core.Property("cora", formulaPsi.raw_formula)
  95. result = stormpy.model_checking(model, labelprop)
  96. assert result.get_truth_values().number_of_set_bits() == 1
  97. def test_model_checking_ctmc(self):
  98. model = stormpy.build_model_from_drn(get_example_path("ctmc", "dft.drn"))
  99. formulas = stormpy.parse_properties("T=? [ F \"failed\" ]")
  100. assert model.nr_states == 16
  101. assert model.nr_transitions == 33
  102. assert len(model.initial_states) == 1
  103. initial_state = model.initial_states[0]
  104. assert initial_state == 0
  105. result = stormpy.model_checking(model, formulas[0])
  106. assert math.isclose(result.at(initial_state), 4.166666667)