Skip to content
Snippets Groups Projects

[Fix] Checking nullptr on Node.cpp and ConstantFolding.cpp

Closed Wissam Boussella requested to merge wboussella/aidge_core:fix_node_constant_folding into dev
2 unresolved threads
Files
2
+ 2
1
@@ -390,7 +390,8 @@ void Aidge::Node::resetConnections(bool includeLearnableParam) {
@@ -390,7 +390,8 @@ void Aidge::Node::resetConnections(bool includeLearnableParam) {
}
}
for (IOIndex_t i = 0; i < nbOutputs(); ++i) {
for (IOIndex_t i = 0; i < nbOutputs(); ++i) {
for (std::pair<std::shared_ptr<Node>, IOIndex_t> child : output(i)) {
for (std::pair<std::shared_ptr<Node>, IOIndex_t> child : output(i)) {
child.first->removeParent(child.second);
if(child.first != nullptr && child.first->getParents().size() > 0) child.first->removeParent(child.second);
 
else Log::debug("No child.first");
Please register or sign in to reply
}
}
mChildren[i] = std::vector<std::weak_ptr<Node>>();
mChildren[i] = std::vector<std::weak_ptr<Node>>();
mIdInChildren[i] = std::vector<IOIndex_t>();
mIdInChildren[i] = std::vector<IOIndex_t>();
Loading