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
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.