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.

16 lines
292 B

  1. #include "common.h"
  2. #include "gspn/gspn.h"
  3. #include "gspn/gspn_io.h"
  4. PYBIND11_MODULE(gspn, m) {
  5. m.doc() = "Support for GSPNs";
  6. #ifdef STORMPY_DISABLE_SIGNATURE_DOC
  7. py::options options;
  8. options.disable_function_signatures();
  9. #endif
  10. define_gspn(m);
  11. define_gspn_io(m);
  12. }