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.

12 lines
382 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_dtmc_brp = _path("dtmc", "brp-16-2.pm")
  9. """Bounded Retransmission Protocol"""