JonasStjerne / resilient-pathfinding

Risk-Aware Path Finding Algorithm
https://p7-xi.vercel.app
0 stars 0 forks source link

Modeling the problem #23

Open FrederikkeFM opened 1 year ago

FrederikkeFM commented 1 year ago
Dymus commented 1 year ago

You can look into paper from Martin to get inspiration for translating the problem to more mathematical terms: Synthesis of Safety Controllers Robust to Unmodeled Intermittent Disturbances

JonasStjerne commented 1 year ago

Follow-up thought when writing about the data structure: Maybe obstacles that the robot cannot move onto (like a wall, tree or anything solid) should be represented differently in our data structure. When we cannot move to a specific place, why should we even consider it? Why does it have a node? If we stand at a wall and look directly into it we have two choices, either go right or left, we don't have to consider going forward into the wall. But then what if there's a obstacle between two nodes, we have to take into account that we will need to avoid it and take a detour. This could maybe be calculated when generating the data for the map?

JonasStjerne commented 1 year ago

Made corrections according to review. Just left the comment where there was something to be aware of that we can look at later