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.

17 lines
347 B

  1. #include "common.h"
  2. #include "core/core.h"
  3. #include "core/model.h"
  4. #include "core/modelchecking.h"
  5. #include "core/bisimulation.h"
  6. #include "core/prism.h"
  7. PYBIND11_PLUGIN(core) {
  8. py::module m("core");
  9. define_core(m);
  10. define_model(m);
  11. define_modelchecking(m);
  12. define_bisimulation(m);
  13. define_prism(m);
  14. return m.ptr();
  15. }