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.
The text was updated successfully, but these errors were encountered:
I was using your A* implementation. At line 208, you pass
obsmap
toverify_node
function by value. This could be too inefficient with large maps, resulting in huge memory consumption and high run time. You may consider makingobsmap
a global variable or passing it by reference.The text was updated successfully, but these errors were encountered: