- getDegree(int) - Method in class smile.graph.AdjacencyList
-
- getDegree(int) - Method in class smile.graph.AdjacencyMatrix
-
- getDegree(int) - Method in interface smile.graph.Graph
-
Returns the degree of the specified vertex.
- getEdge(int, int) - Method in class smile.graph.AdjacencyList
-
- getEdge(int, int) - Method in class smile.graph.AdjacencyMatrix
-
- getEdge(int, int) - Method in interface smile.graph.Graph
-
Returns an edge connecting source vertex to target vertex if such edge
exist in this graph.
- getEdges() - Method in class smile.graph.AdjacencyList
-
- getEdges(int) - Method in class smile.graph.AdjacencyList
-
- getEdges(int, int) - Method in class smile.graph.AdjacencyList
-
- getEdges() - Method in class smile.graph.AdjacencyMatrix
-
- getEdges(int) - Method in class smile.graph.AdjacencyMatrix
-
- getEdges(int, int) - Method in class smile.graph.AdjacencyMatrix
-
- getEdges() - Method in interface smile.graph.Graph
-
Returns a set of the edges contained in this graph.
- getEdges(int) - Method in interface smile.graph.Graph
-
Returns a set of all edges from the specified vertex.
- getEdges(int, int) - Method in interface smile.graph.Graph
-
Returns a set of all edges connecting source vertex to target vertex if
such vertices exist in this graph.
- getIndegree(int) - Method in class smile.graph.AdjacencyList
-
- getIndegree(int) - Method in class smile.graph.AdjacencyMatrix
-
- getIndegree(int) - Method in interface smile.graph.Graph
-
Returns the in-degree of the specified vertex.
- getNumVertices() - Method in class smile.graph.AdjacencyList
-
- getNumVertices() - Method in class smile.graph.AdjacencyMatrix
-
- getNumVertices() - Method in interface smile.graph.Graph
-
Returns the number vertices.
- getOutdegree(int) - Method in class smile.graph.AdjacencyList
-
- getOutdegree(int) - Method in class smile.graph.AdjacencyMatrix
-
- getOutdegree(int) - Method in interface smile.graph.Graph
-
Returns the out-degree of the specified vertex.
- getWeight(int, int) - Method in class smile.graph.AdjacencyList
-
- getWeight(int, int) - Method in class smile.graph.AdjacencyMatrix
-
- getWeight(int, int) - Method in interface smile.graph.Graph
-
Returns the weight assigned to a given edge.
- Graph - Interface in smile.graph
-
A graph is an abstract representation of a set of objects where some pairs
of the objects are connected by links.
- Graph.Edge - Class in smile.graph
-
Graph edge.