Uses of Class
org.drip.graph.core.Tree
Package | Description |
---|---|
org.drip.graph.core |
Vertexes, Edges, Trees, and Graphs
|
org.drip.graph.mstgreedy |
Greedy Algorithms for MSTs and Forests
|
-
Uses of Tree in org.drip.graph.core
Methods in org.drip.graph.core that return Tree Modifier and Type Method Description Tree<?>
Forest. containingTree(java.lang.String vertexName)
Retrieve the Tree that contains the specified VertexMethods in org.drip.graph.core that return types with arguments of type Tree Modifier and Type Method Description java.util.Map<java.lang.String,Tree<?>>
Forest. treeMap()
Retrieve the Map of Trees in the ForestMethods in org.drip.graph.core with parameters of type Tree Modifier and Type Method Description boolean
Tree. absorbTreeAndEdge(Tree<?> tree, Edge edge)
Absorb the Specified Tree and Edgeboolean
Tree. absorbTreeAndEdge(Tree<V> tree, Edge edge, java.util.Map<java.lang.String,V> vertexValueMap)
Absorb the Specified Tree and Edgeboolean
Forest. addTree(java.lang.String treeName, Tree<?> tree, Directed<?> graph)
Add a Named Tree to the Forestjava.util.Set<Edge>
Directed. fundamentalCycleEdgeSet(Tree<?> tree)
Retrieve the Set of the Fundamental Cycles using the Spanning Treeboolean
Directed. isTreeSpanning(Tree<?> tree)
Indicate of the Specified Tree spans the Graph -
Uses of Tree in org.drip.graph.mstgreedy
Methods in org.drip.graph.mstgreedy that return Tree Modifier and Type Method Description Tree<?>
PrimGenerator. minimumSpanningTree(java.lang.String initialVertexName)
Generate the Minimum Spanning Tree from the Initial VertexMethods in org.drip.graph.mstgreedy with parameters of type Tree Modifier and Type Method Description boolean
BoruvkaForest. addTree(java.lang.String treeName, Tree<?> tree, Directed<?> graph, boolean descending)
Add a Named Tree to the Forest