File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- // the configured options and settings for CXXGraph
2- #define CXXGraph_VERSION_MAJOR 4
3- #define CXXGraph_VERSION_MINOR 1
4- #define CXXGraph_VERSION_PATCH 0
1+ // the configured options and settings for CXXGraph
2+ #define CXXGraph_VERSION_MAJOR 4
3+ #define CXXGraph_VERSION_MINOR 1
4+ #define CXXGraph_VERSION_PATCH 0
Original file line number Diff line number Diff line change @@ -573,10 +573,9 @@ class Graph {
573573 virtual std::shared_ptr<std::vector<Node<T>>> eulerianPath () const ;
574574
575575 /* *
576- * @brief Function runs the dijkstra algorithm with inverted metric for some source node and
577- * target node in the graph and returns the longest distance of target
578- * from the source (called critical path).
579- * Note: No Thread Safe
576+ * @brief Function runs the dijkstra algorithm with inverted metric for some
577+ * source node and target node in the graph and returns the longest distance
578+ * of target from the source (called critical path). Note: No Thread Safe
580579 *
581580 * @param source source vertex
582581 * @param target target vertex
@@ -585,9 +584,8 @@ class Graph {
585584 * case if target is not reachable from source or there is error in the
586585 * computation.
587586 */
588- virtual const DijkstraResult criticalpath_deterministic (const Node<T>& source,
589- const Node<T>& target) const ;
590-
587+ virtual const DijkstraResult criticalpath_deterministic (
588+ const Node<T> &source, const Node<T> &target) const ;
591589
592590 /* *
593591 * @brief Function runs the dijkstra algorithm for some source node and
You can’t perform that action at this time.
0 commit comments