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.

13 lines
299 B

  1. #include "common.h"
  2. #include "pomdp/transformations.h"
  3. PYBIND11_MODULE(pomdp, m) {
  4. m.doc() = "Functionality for POMDP analysis";
  5. #ifdef STORMPY_DISABLE_SIGNATURE_DOC
  6. py::options options;
  7. options.disable_function_signatures();
  8. #endif
  9. define_transformations<double>(m, "Double");
  10. }