So, I am reading a paper on TSP. In one of the papers it is mentioned:
We plan using a fixed-horizon approach, alternating between replanning and execution until the elapsed time $t$ exceeds the budget $B$
However the definition of fixed horizon in this paper research paper is mentioned as follows:
The fixed horizon approach to path planning involves computing an optimal path over the entire planning horizon
So my question is: If fixed horizon is meant to last over entire planning horizon (which I doubt) then why did the author in the paper above mentioned:
alternating between replanning and execution:
after mentioning we follow fixed horizon approach? Isnt this receding horizon approach? where you plan again and again after certain time step like in model predictive control?
Got a reference from Wikipedia article on MPC, which states:
So to grab the gist of above, fixed horizon is fixed time interval where plan is executed, and the plan is NOT recomputed until horizon is finished while receding horizon the plan gets repeatedly computed and executed.