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.

19 lines
383 B

  1. #include "common.h"
  2. #include "storage/bitvector.h"
  3. #include "storage/model.h"
  4. #include "storage/matrix.h"
  5. PYBIND11_PLUGIN(storage) {
  6. py::module m("storage");
  7. #ifdef STORMPY_DISABLE_SIGNATURE_DOC
  8. py::options options;
  9. options.disable_function_signatures();
  10. #endif
  11. define_bitvector(m);
  12. define_model(m);
  13. define_sparse_matrix(m);
  14. return m.ptr();
  15. }