Skip to content

Commit fc9894b

Browse files
committed
Refactor: added invalidateCache() for core cache rebuilding (Issue 499)
1 parent cfcb3a5 commit fc9894b

2 files changed

Lines changed: 9 additions & 11 deletions

File tree

include/CXXGraph/CXXGraphConfig.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

include/CXXGraph/Graph/Graph_decl.h

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)