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.

24 lines
471 B

  1. #include "common.h"
  2. #include "core/core.h"
  3. #include "core/modelchecking.h"
  4. #include "core/bisimulation.h"
  5. #include "core/input.h"
  6. PYBIND11_PLUGIN(core) {
  7. py::module m("core");
  8. #ifdef STORMPY_DISABLE_SIGNATURE_DOC
  9. py::options options;
  10. options.disable_function_signatures();
  11. #endif
  12. define_core(m);
  13. define_parse(m);
  14. define_build(m);
  15. define_modelchecking(m);
  16. define_bisimulation(m);
  17. define_input(m);
  18. return m.ptr();
  19. }