We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742a525 commit 2573e11Copy full SHA for 2573e11
src/impl/vamp/planning/validate.hh
@@ -55,7 +55,9 @@ namespace vamp::planning
55
block[j] = block[j] - backstep.broadcast(j);
56
}
57
58
- if (not Robot::template fkcc<rake>(environment, block))
+ bool valid = (environment.attachments) ? Robot::template fkcc_attach<rake>(environment, block) :
59
+ Robot::template fkcc<rake>(environment, block);
60
+ if (not valid)
61
{
62
return false;
63
0 commit comments