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

Fixed bug in Node::getChildren()

parent 5503030c
No related branches found
No related tags found
2 merge requests!105version 0.2.0,!77Support for recurrent networks
......@@ -288,8 +288,7 @@ std::vector<std::vector<std::shared_ptr<Aidge::Node>>> Aidge::Node::getOrderedCh
std::vector<std::shared_ptr<Aidge::Node>> Aidge::Node::getChildren(const IOIndex_t outId) const {
assert((outId < nbOutputs()) && "Output index out of bound.");
std::vector<std::shared_ptr<Node>> children =
std::vector<std::shared_ptr<Node>>(mChildren[outId].size());
std::vector<std::shared_ptr<Node>> children;
for (std::size_t i = 0; i < mChildren[outId].size(); ++i) {
children.push_back(mChildren[outId][i].lock());
}
......
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