Skip to content
Snippets Groups Projects
Commit 37eb112a authored by Andrew Wilson's avatar Andrew Wilson :elephant:
Browse files

BUG: Fix subtle issue with edge being added to the wrong graph, causing...

BUG: Fix subtle issue with edge being added to the wrong graph, causing warning and failed addition of edge
parent 008dfd15
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ CollisionPair::apply()
// Connect inputB's->CD
for (size_t i = 0; i < m_taskNodeInputs.second.size(); i++)
{
computeGraphA->addEdge(m_taskNodeInputs.second[i], m_collisionDetectionNode);
computeGraphB->addEdge(m_taskNodeInputs.second[i], m_collisionDetectionNode);
}
}
......
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