Convenience wrapper class for a (column-major) edge list. Each component of the list corresponds to a node, and each component is an integer vector whose components are the parents of this node in the graph.
is.edgeList(x)# S3 method for edgeList
print(x, maxsize = 20, ...)
# S3 method for edgeList
summary(object, ...)
edgeList(x)
A list containing parents for each node in a graph. The length of this list should be the same as the number of nodes in the graph.
Maximum number of nodes to print out. If
num.nodes(x) > maxsize, then a simple summary will be printed
instead.
(optional) additional arguments.
an object of type edgeList
Also inherits from list.