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.

15 lines
483 B

  1. import os
  2. testfile_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "files")
  3. def _path(folder, file):
  4. """Internal method for simpler listing of examples"""
  5. return os.path.join(testfile_dir, folder, file)
  6. prism_dtmc_die = _path("dtmc", "die.pm")
  7. """Knuth Yao Die Example"""
  8. prism_pdtmc_die = _path("pdtmc", "parametric_die.pm")
  9. """Knuth Yao Die -- 2 unfair coins Example"""
  10. prism_dtmc_brp = _path("dtmc", "brp-16-2.pm")
  11. """Bounded Retransmission Protocol"""