Skip to content

Commit 4e820ab

Browse files
committed
feat: Implement placeholder for get_path_to_multiple_destinations method in AStarPathPlanning
1 parent 0f19d83 commit 4e820ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adf_core_python/implement/module/algorithm/a_star_path_planning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def get_path(
7272
def get_path_to_multiple_destinations(
7373
self, from_entity_id: EntityID, destination_entity_ids: set[EntityID]
7474
) -> list[EntityID]:
75-
raise NotImplementedError
75+
return []
7676

7777
def heuristic(self, from_entity_id: EntityID, to_entity_id: EntityID) -> float:
7878
# Implement a heuristic function, for example, Euclidean distance

0 commit comments

Comments
 (0)