You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tesseract::DescartesVertexEvaluator is a class that is confusingly similar to the descartes::StateEvaluator and is used to do effectively the same task as the descartes::StateEvaluator but inside the tesseract::DescartesRobotSampler class. This is not really necessary because states will get pruned within the descartes solver itself before edges are added (here fi).
To eliminate this confusion and additional unnecessary class, my suggestion is that we:
The
tesseract::DescartesVertexEvaluator
is a class that is confusingly similar to thedescartes::StateEvaluator
and is used to do effectively the same task as thedescartes::StateEvaluator
but inside thetesseract::DescartesRobotSampler
class. This is not really necessary because states will get pruned within thedescartes
solver itself before edges are added (here fi).To eliminate this confusion and additional unnecessary class, my suggestion is that we:
tesseract::DescartesJointLimitsVertexEvaluator
to be adescartes::StateEvaluator
DescartesVertexEvaluator
.Also, we should not be adding arbitrary vertex evaluators to the robot sampler when the user chooses a
nullptr
for their vertex evaluator selection:tesseract_planning/tesseract_motion_planners/descartes/include/tesseract_motion_planners/descartes/impl/profile/descartes_default_plan_profile.hpp
Lines 205 to 219 in fcaf317
This should become a non-issue if we remove the class.
The text was updated successfully, but these errors were encountered: