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

Merge branch 'TaskGraphFix' into 'master'

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

See merge request iMSTK/iMSTK!575
parents 008dfd15 37eb112a
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