From 39bd3965c3270b5e7f0cdcb566f3e6a13f0ed3e0 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Sat, 17 Dec 2022 12:02:14 -0800 Subject: [PATCH] Update docs. --- src/pyutils/graph.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pyutils/graph.py b/src/pyutils/graph.py index 24a9213..099bc2c 100644 --- a/src/pyutils/graph.py +++ b/src/pyutils/graph.py @@ -309,11 +309,11 @@ class Graph(object): .. note:: - This method runs Dijkstra's algorithm - (https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm) - internally and caches the results. Subsequent calls made with - the same source node before modifying the graph are less - expensive due to these cached intermediate results. + This method runs Dijkstra's algorithm + (https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm) + internally and caches the results. Subsequent calls made with + the same source node before modifying the graph are less + expensive due to these cached intermediate results. Returns: A tuple containing the minimum distance of the path and the path itself. -- 2.45.2