abstract class CGL::AbstractGraph(V)
- CGL::AbstractGraph(V)
- CGL::AnyGraph(V)
- Reference
- Object
Direct Known Subclasses
Defined in:
cgl/algorithms/components/connected.crcgl/igraph.cr
Instance Method Summary
-
#connected? : Bool
Whether
self
is connected. -
#count_connected_components : Int32
Returns the number of connected components in
self
. -
#density : Float64
Returns the density of
self
. -
#directed? : Bool
Whether
self
is directed. -
#each_connected_component(&)
Yields each connected component of
self
as an `Array'. -
#each_connected_component : Iterator(Array(V))
Returns an
Iterator
of connected components. -
#each_edge(& : AnyEdge(V) -> )
Yields each edges in the graph.
-
#each_edge_from(u : V, & : AnyEdge(V) -> )
Yields each edge incident to u in the graph.
-
#in_degree_of(v : V) : Int32
Returns the incoming degree of the given vertex v.
-
#out_degree_of(v : V) : Int32
Returns the outgoing degree of the given vertex v.
Instance methods inherited from class CGL::AnyGraph(V)
==(other : self)==(other) ==, accept(visitor : Visitor(V)) accept, add_edge(u : V, v : V)
add_edge(edge : AnyEdge(V)) add_edge, add_vertex(v : V) add_vertex, breadth_first_search(from vertex : V) : Iterator(V)
breadth_first_search(from vertex : V, &) breadth_first_search, clear clear, clone clone, count_simple_paths(source : V, target : V) count_simple_paths, degree_of(v : V) : Int32 degree_of, density : Float64 density, depth_first_search(from vertex : V) : Iterator(V)
depth_first_search(from vertex : V, &)
depth_first_search(vertex : V, *, colors : Hash(V, Color), &)
depth_first_search(&)
depth_first_search : Iterator(V) depth_first_search, directed? : Bool directed?, dup dup, each_adjacent(u : V) : Iterator(V)
each_adjacent(u : V, & : V -> ) each_adjacent, each_edge : Iterator(AnyEdge(V))
each_edge(& : AnyEdge(V) -> ) each_edge, each_edge_from(u : V, & : AnyEdge(V) -> ) each_edge_from, each_vertex(& : V -> )
each_vertex : Iterator(V) each_vertex, edge(u : V, v : V)
edge(u : V, v : V, &) edge, edge?(u : V, v : V) edge?, edges : Array(AnyEdge(V)) edges, empty? : Bool empty?, has_edge?(edge : Labelable) : Bool
has_edge?(u : V, v : V, weight, label) : Bool
has_edge?(u : V, v : V) : Bool
has_edge?(edge : Weightable) : Bool
has_edge?(edge : AnyEdge(V)) : Bool has_edge?, has_vertex?(v : V) : Bool has_vertex?, hash(hasher) hash, in_degree_of(v : V) : Int32 in_degree_of, label_of(u : V, v : V) label_of, label_of?(u : V, v : V) label_of?, labeled? : Bool labeled?, order : Int32 order, out_degree_of(v : V) : Int32 out_degree_of, remove_edge(u : V, v : V) remove_edge, remove_vertex(v : V) remove_vertex, shortest_path(source : V, target : V) shortest_path, shortest_path_dijkstra(source : V, target : V) shortest_path_dijkstra, shortest_path_unweighted(source : V, target : V) shortest_path_unweighted, size : Int32 size, subgraph(vertices : Enumerable(V), *, clone : Bool = false) : AnyGraph(V)
subgraph(edges : Enumerable(AnyEdge(V)), *, clone : Bool = false) : AnyGraph(V) subgraph, to_a : Array(AnyEdge(V)) to_a, to_dot(path : String)
to_dot(io : IO) to_dot, weight_of(u : V, v : V) weight_of, weight_of?(u : V, v : V) weight_of?, weighted? : Bool weighted?
Instance Method Detail
def density : Float64
#
Description copied from class CGL::AnyGraph(V)
Returns the density of self
.
Self loops are counted in the total number of edges so graphs with self loops can have density higher than 1.
def in_degree_of(v : V) : Int32
#
Description copied from class CGL::AnyGraph(V)
Returns the incoming degree of the given vertex v.
For undirected graphs, the value equals #degree_of
.
def out_degree_of(v : V) : Int32
#
Description copied from class CGL::AnyGraph(V)
Returns the outgoing degree of the given vertex v.
For undirected graphs, the value equals #degree_of
.