diff options
Diffstat (limited to 'graph-api.html')
-rw-r--r-- | graph-api.html | 42 |
1 files changed, 14 insertions, 28 deletions
diff --git a/graph-api.html b/graph-api.html index fe0cdf2e..f7d9ecb2 100644 --- a/graph-api.html +++ b/graph-api.html @@ -99,8 +99,7 @@ by <span id="author">Jeffrey Straszheim</span><br /> <pre id="var-usage">Usage: (add-loops g) </pre> <pre id="var-docstr">For each node n, add the edge n->n if not already present.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L49" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L49" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -113,8 +112,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L49" Each node in the new graph will be a set of nodes from the old. These sets are the strongly connected components. Each edge will be the union of the corresponding edges of the prior graph.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L133" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L133" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -127,8 +125,7 @@ set of nodes at index 0 are independent. The set at index 1 depend on index 0; those at 2 depend on 0 and 1, and so on. Those withing a set have no mutual dependencies. Assume the input graph (which much be acyclic) has an edge a->b when a depends on b.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L190" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L190" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -139,8 +136,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L190 <pre id="var-docstr">Repeatedly apply fun to data until (equal old-data new-data) returns true. If max iterations occur, it will throw an exception. Set max to nil for unlimited iterations.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L167" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L167" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -149,8 +145,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L167 <pre id="var-usage">Usage: (get-neighbors g n) </pre> <pre id="var-docstr">Get the neighbors of a node.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L29" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L29" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -162,8 +157,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L29" <pre id="var-docstr">Return a lazy sequence of the nodes of a graph starting a node n. Optionally, provide a set of visited notes (v) and a collection of nodes to visit (ns).</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L68" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L68" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -172,8 +166,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L68" <pre id="var-usage">Usage: (post-ordered-nodes g) </pre> <pre id="var-docstr">Return a sequence of indexes of a post-ordered walk of the graph.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L110" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L110" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -182,8 +175,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L110 <pre id="var-usage">Usage: (recursive-component? g ns) </pre> <pre id="var-docstr">Is the component (recieved from scc) self recursive?</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L151" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L151" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -192,8 +184,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L151 <pre id="var-usage">Usage: (remove-loops g) </pre> <pre id="var-docstr">For each node n, remove any edges n->n.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L57" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L57" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -203,8 +194,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L57" </pre> <pre id="var-docstr">Given a directed graph, return another directed graph with the order of the edges reversed.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L37" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L37" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -214,8 +204,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L37" </pre> <pre id="var-docstr">Returns, as a sequence of sets, the strongly connected components of g.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L117" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L117" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -225,8 +214,7 @@ Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L117 </pre> <pre id="var-docstr">Returns, as a sequence of sets, the components of a graph that are self-recursive.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L158" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L158" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -239,8 +227,7 @@ provided. The first is as dependency-list. The second (which may have cycles) provides a partial-dependency relation. If node a depends on node b (meaning an edge a->b exists) in the second graph, node a must be equal or later in the sequence.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L207" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L207" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -255,8 +242,7 @@ regardless of whether such loops exist in the original graph. This version does not. Loops will be included only if produced by cycles in the graph. If you have code that depends on such behavior, call (-> g transitive-closure add-loops)</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'src/clojure/contrib/graph.clj': unknown revision or path not in the working tree. -Use '--' to separate paths from revisions/src/src/clojure/contrib/graph.clj#L81" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/86e90011e274910c618a5592d21ba3ce290a6855/src/clojure/contrib/graph.clj#L81" id="var-source">Source</a> </div> |