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
Printing results I noticed that the distances computed from:
historyList (keeping track of all the cells visited by the robot - regardless how many times they have been visited - after being cleaned by those visited multiple times)
tabuList (list of cell visited only the first time)
distance accumulated over time
are differents. In particular, in historyList it seems that the last visited cell before completing the exploration is not added, leading to a small difference with the results in tabuList.
Instead, the distance accumulated over time is overestimated because sometimes we perform an updated even though we are doing backtracking (possibly because we are updating the target current pose of the robot while instead the robot is supposed to not move until a "new" destination is found).
For the moment, I am calling tabuList just before filling the logs so to be sure the values reported are the correct ones. But then I have to fix this discrepancy.
The text was updated successfully, but these errors were encountered:
pulver22
changed the title
Different metrics results for travelledDistance
Different metrics results for travelledDistance and batteryTime
Apr 24, 2020
Printing results I noticed that the distances computed from:
historyList
(keeping track of all the cells visited by the robot - regardless how many times they have been visited - after being cleaned by those visited multiple times)tabuList
(list of cell visited only the first time)are differents. In particular, in
historyList
it seems that the last visited cell before completing the exploration is not added, leading to a small difference with the results intabuList
.Instead, the distance accumulated over time is overestimated because sometimes we perform an updated even though we are doing backtracking (possibly because we are updating the
target
current pose of the robot while instead the robot is supposed to not move until a "new" destination is found).For the moment, I am calling
tabuList
just before filling the logs so to be sure the values reported are the correct ones. But then I have to fix this discrepancy.The text was updated successfully, but these errors were encountered: