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.

41 lines
1.4 KiB

  1. import os
  2. testfile_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "files")
  3. def _path(folder, file):
  4. """
  5. Internal method for simpler listing of examples.
  6. :param folder: Folder.
  7. :param file: Example file.
  8. :return: Complete path to example file.
  9. """
  10. return os.path.join(testfile_dir, folder, file)
  11. prism_dtmc_die = _path("dtmc", "die.pm")
  12. """Knuth Yao Die Example"""
  13. prism_pdtmc_die = _path("pdtmc", "parametric_die.pm")
  14. """Knuth Yao Die -- 2 unfair coins Example"""
  15. prism_dtmc_brp = _path("dtmc", "brp-16-2.pm")
  16. """Bounded Retransmission Protocol"""
  17. prism_ma_simple = _path("ma", "simple.ma")
  18. """Prism file for a simple Markov automaton"""
  19. drn_ctmc_dft = _path("ctmc", "dft.drn")
  20. """DRN format for a CTMC from a DFT"""
  21. drn_pdtmc_die = _path("pdtmc", "die.drn")
  22. """DRN format for a pDTMC for the KY-Die"""
  23. jani_dtmc_die = _path("dtmc", "die.jani")
  24. """Jani Version of Knuth Yao Die Example"""
  25. prism_mdp_coin_2_2 = _path("mdp", "coin2-2.nm")
  26. """Prism example for coin MDP"""
  27. prism_pmdp_coin_two_dice = _path("pmdp", "two_dice.nm")
  28. """Prism example for parametric two dice"""
  29. prism_mdp_maze = _path("mdp", "maze_2.nm")
  30. """Prism example for the maze MDP"""
  31. prism_pomdp_maze = _path("pomdp", "maze_2.prism")
  32. """Prism example for the maze POMDP"""
  33. dft_galileo_hecs = _path("dft", "hecs.dft")
  34. """DFT example for HECS (Galileo format)"""
  35. dft_json_and = _path("dft", "and.json")
  36. """DFT example for AND gate (JSON format)"""