[Next][Prev] [Right] [Left] [Up] [Index] [Root]
Returns true if the vertices u and v, both belonging to the same graph
G, are adjacent, otherwise false.
Returns true if the edges e and f, both belonging to the same graph G,
share a common vertex, otherwise false.
Returns true if the vertices u and v, both belonging to the same graph
G, are not adjacent, otherwise false.
Returns true if the edges e and f, both belonging to the same graph G,
do not share a common vertex, otherwise false.
Returns true if the vertex u is an endpoint of the edge e, where u and
e belong to the same graph, otherwise false.
Returns true if the vertex u is not an endpoint of the edge e, where u and
e belong to the same graph, otherwise false.
G eq H : GrphUnd, GrphUnd -> BoolElt
Returns true if the graphs G and H are identical,
otherwise false.
G and H are identical if and only if:
- -
- they are structurally identical,
- -
- they have the same support,
- -
- they have identical vertex and edge labels.
Thus, as an example,
if G and H are structurally identical graphs, and the
vertices of G are labelled while the vertices of H are not,
then G eq H returns false.
Returns true if and only if H is a subgraph of G.
Returns true if the graph G is a bipartite graph, otherwise false.
Returns true if the graph G, on p vertices, is the complete graph on
p vertices, otherwise false.
Returns true if the graph G is an eulerian graph, otherwise false.
A eulerian graph is a graph whose vertices have all even degree.
An eulerian digraph is a digraph whose vertices have same in and
outdegree.
That is, if D is a digraph, D is eulerian if and only if
OutDegree(v) equals InDegree(v) for all vertices
v of D.
Returns true if the graph G is a forest, i.e. does not possess any cycles,
otherwise false.
Returns true if the graph G is an empty graph, otherwise false.
A graph is empty if its edge set E is empty.
Returns true if the graph G is a null graph, otherwise false.
A graph is empty if its vertex set V is empty.
Returns true if the graph G is a path graph, otherwise false.
Returns true if the graph G is a polygon graph, otherwise false.
Returns true if the graph G is a regular graph, otherwise false.
Returns true if the graph G is a tree, otherwise false.
[Next][Prev] [Right] [Left] [Up] [Index] [Root]