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.

20 lines
391 B

  1. #include "common.h"
  2. #include "dft/dft.h"
  3. #include "dft/io.h"
  4. #include "dft/analysis.h"
  5. PYBIND11_MODULE(dft, m) {
  6. m.doc() = "Functionality for DFT analysis";
  7. #ifdef STORMPY_DISABLE_SIGNATURE_DOC
  8. py::options options;
  9. options.disable_function_signatures();
  10. #endif
  11. define_dft(m);
  12. define_symmetries(m);
  13. define_input(m);
  14. define_output(m);
  15. define_analysis(m);
  16. }