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.

226 lines
11 KiB

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 pytest
  5. class TestSparseModel:
  6. def test_build_dtmc_from_prism_program(self):
  7. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  8. model = stormpy.build_model(program)
  9. assert model.nr_states == 13
  10. assert model.nr_transitions == 20
  11. assert model.model_type == stormpy.ModelType.DTMC
  12. assert not model.supports_parameters
  13. assert type(model) is stormpy.SparseDtmc
  14. def test_build_dtmc_from_prism_program_formulas(self):
  15. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  16. prop = "P=? [F \"one\"]"
  17. properties = stormpy.parse_properties_for_prism_program(prop, program, None)
  18. model = stormpy.build_model(program, properties)
  19. assert model.nr_states == 13
  20. assert model.nr_transitions == 20
  21. assert model.model_type == stormpy.ModelType.DTMC
  22. assert len(model.reward_models) == 0
  23. assert not model.supports_parameters
  24. assert type(model) is stormpy.SparseDtmc
  25. def test_build_dtmc_from_prism_program_reward_formulas(self):
  26. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  27. prop = "R=? [F \"done\"]"
  28. properties = stormpy.parse_properties_for_prism_program(prop, program, None)
  29. model = stormpy.build_model(program, properties)
  30. assert model.nr_states == 13
  31. assert model.nr_transitions == 20
  32. assert model.model_type == stormpy.ModelType.DTMC
  33. assert len(model.reward_models) == 1
  34. assert not model.reward_models["coin_flips"].has_state_rewards
  35. assert model.reward_models["coin_flips"].has_state_action_rewards
  36. for reward in model.reward_models["coin_flips"].state_action_rewards:
  37. assert reward == 1.0 or reward == 0.0
  38. assert not model.reward_models["coin_flips"].has_transition_rewards
  39. assert not model.supports_parameters
  40. assert type(model) is stormpy.SparseDtmc
  41. def test_reduce_to_state_based_rewards(self):
  42. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  43. prop = "R=? [F \"done\"]"
  44. properties = stormpy.parse_properties_for_prism_program(prop, program, None)
  45. model = stormpy.build_model(program, properties)
  46. model.reduce_to_state_based_rewards()
  47. assert len(model.reward_models) == 1
  48. assert model.reward_models["coin_flips"].has_state_rewards
  49. assert not model.reward_models["coin_flips"].has_state_action_rewards
  50. for reward in model.reward_models["coin_flips"].state_rewards:
  51. assert reward == 1.0 or reward == 0.0
  52. assert not model.reward_models["coin_flips"].has_transition_rewards
  53. def test_build_dtmc_from_jani_model(self):
  54. jani_model, properties = stormpy.parse_jani_model(get_example_path("dtmc", "die.jani"))
  55. model = stormpy.build_model(jani_model)
  56. assert model.nr_states == 13
  57. assert model.nr_transitions == 20
  58. assert model.model_type == stormpy.ModelType.DTMC
  59. assert not model.supports_parameters
  60. assert type(model) is stormpy.SparseDtmc
  61. def test_build_dtmc_with_undefined_constants(self):
  62. jani_model, properties = stormpy.parse_jani_model(get_example_path("dtmc", "brp.jani"))
  63. assert jani_model.has_undefined_constants
  64. assert not jani_model.undefined_constants_are_graph_preserving
  65. with pytest.raises(stormpy.StormError):
  66. model = stormpy.build_model(jani_model)
  67. def test_build_instantiated_dtmc(self):
  68. jani_model, properties = stormpy.parse_jani_model(get_example_path("dtmc", "brp.jani"))
  69. assert jani_model.has_undefined_constants
  70. assert not jani_model.undefined_constants_are_graph_preserving
  71. description = stormpy.SymbolicModelDescription(jani_model)
  72. constant_definitions = description.parse_constant_definitions("N=16, MAX=2")
  73. instantiated_jani_model = description.instantiate_constants(constant_definitions).as_jani_model()
  74. model = stormpy.build_model(instantiated_jani_model)
  75. assert model.nr_states == 677
  76. assert model.nr_transitions == 867
  77. assert model.model_type == stormpy.ModelType.DTMC
  78. assert not model.supports_parameters
  79. assert type(model) is stormpy.SparseDtmc
  80. def test_build_mdp(self):
  81. program = stormpy.parse_prism_program(get_example_path("mdp", "two_dice.nm"))
  82. formulas = stormpy.parse_properties_for_prism_program("P=? [ F \"two\" ]", program)
  83. model = stormpy.build_model(program, formulas)
  84. assert model.nr_states == 169
  85. assert model.nr_transitions == 435
  86. assert model.model_type == stormpy.ModelType.MDP
  87. assert not model.supports_parameters
  88. assert type(model) is stormpy.SparseMdp
  89. def test_build_ctmc(self):
  90. program = stormpy.parse_prism_program(get_example_path("ctmc", "polling2.sm"), True)
  91. formulas = stormpy.parse_properties_for_prism_program("P=? [ F<=3 \"target\" ]", program)
  92. model = stormpy.build_model(program)
  93. assert model.nr_states == 12
  94. assert model.nr_transitions == 22
  95. assert model.model_type == stormpy.ModelType.CTMC
  96. assert not model.supports_parameters
  97. assert type(model) is stormpy.SparseCtmc
  98. model_for_formula = stormpy.build_model(program, formulas)
  99. assert model_for_formula.nr_states == 1
  100. assert model_for_formula.nr_transitions == 1
  101. assert model_for_formula.model_type == stormpy.ModelType.CTMC
  102. assert not model_for_formula.supports_parameters
  103. assert type(model_for_formula) is stormpy.SparseCtmc
  104. def test_build_pomdp(self):
  105. program = stormpy.parse_prism_program(get_example_path("pomdp", "maze_2.prism"))
  106. formulas = stormpy.parse_properties_for_prism_program("P=? [F \"goal\"]", program)
  107. model = stormpy.build_model(program, formulas)
  108. assert model.nr_states == 16
  109. assert model.nr_observations == 8
  110. def test_build_ma(self):
  111. program = stormpy.parse_prism_program(get_example_path("ma", "simple.ma"), False, True)
  112. formulas = stormpy.parse_properties_for_prism_program("Pmax=? [ F<=2 s=2 ]", program)
  113. model = stormpy.build_model(program, formulas)
  114. assert model.nr_states == 4
  115. assert model.nr_transitions == 7
  116. assert model.model_type == stormpy.ModelType.MA
  117. assert not model.supports_parameters
  118. assert type(model) is stormpy.SparseMA
  119. def test_initial_states(self):
  120. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  121. formulas = stormpy.parse_properties_for_prism_program("P=? [ F \"one\" ]", program)
  122. model = stormpy.build_model(program, formulas)
  123. initial_states = model.initial_states
  124. assert len(initial_states) == 1
  125. assert 0 in initial_states
  126. class TestSymbolicSylvanModel:
  127. def test_build_dtmc_from_prism_program(self):
  128. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  129. model = stormpy.build_symbolic_model(program)
  130. assert model.nr_states == 13
  131. assert model.nr_transitions == 20
  132. assert model.model_type == stormpy.ModelType.DTMC
  133. assert not model.supports_parameters
  134. assert type(model) is stormpy.SymbolicSylvanDtmc
  135. def test_build_dtmc_from_prism_program_formulas(self):
  136. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  137. prop = "P=? [F \"one\"]"
  138. properties = stormpy.parse_properties_for_prism_program(prop, program, None)
  139. model = stormpy.build_symbolic_model(program, properties)
  140. assert model.nr_states == 13
  141. assert model.nr_transitions == 20
  142. assert model.model_type == stormpy.ModelType.DTMC
  143. assert len(model.reward_models) == 0
  144. assert not model.supports_parameters
  145. assert type(model) is stormpy.SymbolicSylvanDtmc
  146. def test_build_dtmc_from_prism_program_reward_formulas(self):
  147. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  148. prop = "R=? [F \"done\"]"
  149. properties = stormpy.parse_properties_for_prism_program(prop, program, None)
  150. model = stormpy.build_symbolic_model(program, properties)
  151. assert model.nr_states == 13
  152. assert model.nr_transitions == 20
  153. assert model.model_type == stormpy.ModelType.DTMC
  154. assert len(model.reward_models) == 1
  155. assert not model.reward_models["coin_flips"].has_state_rewards
  156. assert model.reward_models["coin_flips"].has_state_action_rewards
  157. assert not model.reward_models["coin_flips"].has_transition_rewards
  158. assert not model.supports_parameters
  159. assert type(model) is stormpy.SymbolicSylvanDtmc
  160. def test_reduce_to_state_based_rewards(self):
  161. program = stormpy.parse_prism_program(get_example_path("dtmc", "die.pm"))
  162. prop = "R=? [F \"done\"]"
  163. properties = stormpy.parse_properties_for_prism_program(prop, program, None)
  164. model = stormpy.build_symbolic_model(program, properties)
  165. model.reduce_to_state_based_rewards()
  166. assert len(model.reward_models) == 1
  167. assert model.reward_models["coin_flips"].has_state_rewards
  168. assert not model.reward_models["coin_flips"].has_state_action_rewards
  169. assert not model.reward_models["coin_flips"].has_transition_rewards
  170. def test_build_dtmc_from_jani_model(self):
  171. jani_model, properties = stormpy.parse_jani_model(get_example_path("dtmc", "brp.jani"))
  172. description = stormpy.SymbolicModelDescription(jani_model)
  173. constant_definitions = description.parse_constant_definitions("N=16, MAX=2")
  174. instantiated_jani_model = description.instantiate_constants(constant_definitions).as_jani_model()
  175. model = stormpy.build_symbolic_model(instantiated_jani_model)
  176. assert model.nr_states == 677
  177. assert model.nr_transitions == 867
  178. assert model.model_type == stormpy.ModelType.DTMC
  179. assert not model.supports_parameters
  180. assert type(model) is stormpy.SymbolicSylvanDtmc
  181. def test_build_mdp(self):
  182. program = stormpy.parse_prism_program(get_example_path("mdp", "two_dice.nm"))
  183. formulas = stormpy.parse_properties_for_prism_program("P=? [ F \"two\" ]", program)
  184. model = stormpy.build_symbolic_model(program, formulas)
  185. assert model.nr_states == 169
  186. assert model.nr_transitions == 435
  187. assert model.model_type == stormpy.ModelType.MDP
  188. assert not model.supports_parameters
  189. assert type(model) is stormpy.SymbolicSylvanMdp
  190. def test_build_ctmc(self):
  191. program = stormpy.parse_prism_program(get_example_path("ctmc", "polling2.sm"), True)
  192. formulas = stormpy.parse_properties_for_prism_program("P=? [ F<=3 \"target\" ]", program)
  193. model = stormpy.build_symbolic_model(program, formulas)
  194. assert model.nr_states == 12
  195. assert model.nr_transitions == 22
  196. assert model.model_type == stormpy.ModelType.CTMC
  197. assert not model.supports_parameters
  198. assert type(model) is stormpy.SymbolicSylvanCtmc
  199. def test_build_ma(self):
  200. program = stormpy.parse_prism_program(get_example_path("ma", "simple.ma"))
  201. formulas = stormpy.parse_properties_for_prism_program("P=? [ F<=2 s=2 ]", program)
  202. with pytest.raises(Exception):
  203. model = stormpy.build_symbolic_model(program, formulas)