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.

9 lines
229 B

  1. #include "common.h"
  2. #include "utility/shortestPaths.h"
  3. PYBIND11_PLUGIN(utility) {
  4. py::module m("utility", "Dumping ground of stuff that really should be somewhere more reasonable");
  5. define_ksp(m);
  6. return m.ptr();
  7. }