Browse Source

prevent problematic code

refactoring
Sebastian Junges 4 years ago
parent
commit
02364bb262
  1. 3
      examples/pomdp/01-pomdps.py

3
examples/pomdp/01-pomdps.py

@ -68,6 +68,9 @@ def example_parametric_models_01():
# apply the memory onto the POMDP to get the cartesian product
pomdp = stormpy.pomdp.unfold_memory(pomdp, memory)
# apply the unknown FSC to obtain a pmc from the POMDP
if False:
# Currently, this command is known to cause problems in combination with running some other tests.
# While we are investigating, we do not run the code
pmc = stormpy.pomdp.apply_unknown_fsc(pomdp, stormpy.pomdp.PomdpFscApplicationMode.simple_linear)
export_pmc = False # Set to True to export the pMC as drn.

Loading…
Cancel
Save