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
533 B

  1. #include "common.h"
  2. #include "storage/bitvector.h"
  3. #include "storage/model.h"
  4. #include "storage/matrix.h"
  5. #include "storage/state.h"
  6. #include "storage/labeling.h"
  7. #include "storage/expressions.h"
  8. PYBIND11_MODULE(storage, m) {
  9. m.doc() = "Data structures in Storm";
  10. #ifdef STORMPY_DISABLE_SIGNATURE_DOC
  11. py::options options;
  12. options.disable_function_signatures();
  13. #endif
  14. define_bitvector(m);
  15. define_model(m);
  16. define_sparse_matrix(m);
  17. define_state(m);
  18. define_labeling(m);
  19. define_expressions(m);
  20. }