File size: 262 Bytes
db26c81 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <pybind11/pybind11.h>
#include "task_group_split.h"
#include "task_group_priority.h"
namespace py = pybind11;
PYBIND11_MODULE(greedrl_c, m) {
m.def("task_group_split", &task_group_split);
m.def("task_group_priority", &task_group_priority);
}
|