tesseract-robotics / tesseract_planning

Contains packages related to motion and process planning for the Tesseract Motion Planning Environment
http://tesseract-docs.rtfd.io
Other
46 stars 37 forks source link

Regarding task composer plugins in planning/src/factories #511

Open ragesh88 opened 1 month ago

ragesh88 commented 1 month ago

Hi,

Where can I find the description on the difference between the different pipelines: DescartesDPipeline, DescartesDTask, DescartesFPipeline, DescartesFTask

Thanks

marip8 commented 1 month ago

The letters F and D stand for float and double precision, respectively. The idea is that you should be able to support larger planning problems (i.e., finer discretization) in memory if you use a floats instead of doubles to represent joint values.

The task is just the Descartes motion planner itself, and the pipeline is a sequence of tasks including the Descartes planner: essentially planning checks -> Descartes -> fine resolution collision check -> time parameterization

ragesh88 commented 1 month ago

Okay thanks