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.

14 lines
258 B

  1. #include "common.h"
  2. #include "logic/formulae.h"
  3. PYBIND11_MODULE(logic, m) {
  4. m.doc() = "Logic module for Storm";
  5. #ifdef STORMPY_DISABLE_SIGNATURE_DOC
  6. py::options options;
  7. options.disable_function_signatures();
  8. #endif
  9. define_formulae(m);
  10. }