Skip to content

Commit ecae767

Browse files
committed
made a minor fix as per changes requested
1 parent 1cfebb7 commit ecae767

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

pydatastructs/graphs/algorithms.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
'topological_sort',
2626
'topological_sort_parallel',
2727
'max_flow'
28-
'a_star_with_manhattan'
28+
'_a_star_with_manhattan_adjacency_list'
2929
]
3030

3131
Stack = Queue = deque
@@ -743,10 +743,6 @@ def shortest_paths(graph: Graph, algorithm: str,
743743
>>> grid_graph.add_edge('0,0', '1,1', 2)
744744
>>> shortest_paths(grid_graph, 'a_star_with_manhattan', '0,0', '1,1')
745745
(2, {'1,1': '0,0'})
746-
<<<<<<< HEAD
747-
=======
748-
749-
>>>>>>> main
750746
References
751747
==========
752748
@@ -757,12 +753,6 @@ def shortest_paths(graph: Graph, algorithm: str,
757753
raise_if_backend_is_not_python(
758754
shortest_paths, kwargs.get('backend', Backend.PYTHON))
759755
import pydatastructs.graphs.algorithms as algorithms
760-
if algorithm == 'a_star_with_manhattan':
761-
if not target:
762-
raise ValueError("Target must be specified for A* algorithm")
763-
764-
func = "_a_star_with_manhattan_adjacency_list"
765-
return getattr(algorithms, func)(graph, source, target)
766756
func = "_" + algorithm + "_" + graph._impl
767757
if not hasattr(algorithms, func):
768758
raise NotImplementedError(

0 commit comments

Comments
 (0)