open-rmf / rmf_task

RMF library for managing task allocations
Apache License 2.0
22 stars 22 forks source link

[Feature request]: What is the Task excute mechanism #97

Open StetroF opened 1 year ago

StetroF commented 1 year ago

Before proceeding, is there an existing issue or discussion for this?

Description

As the topic.Here is a example what i want to describe .two robot: robot1,robot2,10point :point_1-point_10. Assmuing: robot1: position: point_5 target: point_6 robot2: position: point_4 target: point_5 As i launch RMF and NAV2.I fount that robot2 will wait at all time until robot1 have reached point_6.Then robot2 start navigate to point_5.Why not let robot2 start navigate to point_5 as soon as robot1 leave point_5 rather than robot1 reached next point?

Implementation Considerations

No response

Alternatives

No response

Additional information

  1. I've implement the connection between Nav2 and rmf. So rmf nav2 will plan path when rmf receive task and send it. 2.I think the possible reason is that every point is preempted at all time if a robot have reached here until robot reach another point .Then this point release so that it can be plan as a point. Could you tell me where is the source code to implement this?