Skip to content
Snippets Groups Projects
Commit a228dfe2 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Added missing binding

parent c154cbd6
No related branches found
No related tags found
2 merge requests!152Update Aidge export to take a graph view has an argument instead of a...,!139Multiple fixes
...@@ -30,6 +30,8 @@ void init_GraphView(py::module& m) { ...@@ -30,6 +30,8 @@ void init_GraphView(py::module& m) {
:param path: save location :param path: save location
:type path: str :type path: str
)mydelimiter") )mydelimiter")
.def("root_node", &GraphView::rootNode)
.def("set_root_node", &GraphView::setRootNode, py::arg("node"))
.def("log_outputs", &GraphView::logOutputs, py::arg("path")) .def("log_outputs", &GraphView::logOutputs, py::arg("path"))
.def("get_ordered_inputs", &GraphView::getOrderedInputs) .def("get_ordered_inputs", &GraphView::getOrderedInputs)
.def("get_ordered_outputs", &GraphView::getOrderedOutputs) .def("get_ordered_outputs", &GraphView::getOrderedOutputs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment