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.

28 lines
537 B

  1. from . import info
  2. from .info import *
  3. from . import _config
  4. def storm_version():
  5. """
  6. Get storm version.
  7. :return: Storm version
  8. """
  9. return _config.storm_version
  10. def storm_exact_use_cln():
  11. """
  12. Check if exact arithmetic in Storm uses CLN.
  13. :return: True if exact arithmetic uses CLN.
  14. """
  15. return _config.storm_cln_ea
  16. def storm_ratfunc_use_cln():
  17. """
  18. Check if rational functions in Storm use CLN.
  19. :return: True iff rational functions use CLN.
  20. """
  21. return _config.storm_cln_rf