CppRobotics icon indicating copy to clipboard operation
CppRobotics copied to clipboard

A* implementation is too inefficient when the map is large

Open bakhshalipour opened this issue 4 years ago • 2 comments

I was using your A* implementation. At line 208, you pass obsmap to verify_node function by value. This could be too inefficient with large maps, resulting in huge memory consumption and high run time. You may consider making obsmap a global variable or passing it by reference.

bakhshalipour avatar Sep 17 '20 16:09 bakhshalipour

Thanks, will try to fix it.

onlytailei avatar Jul 10 '23 11:07 onlytailei

should be closed since it was fixed by #14

SalahEddineGhamri avatar Mar 08 '24 13:03 SalahEddineGhamri