Mescal
|
Type used to represent a directed labeled graph. More...
#include <graphs.h>
Public Attributes | |
uint | size_graph |
Number of vertices. | |
uint | size_alpha |
Number of labels. | |
dequeue *** | edges |
The edges: an array of arrays of size size_graph * size_alpha . | |
Type used to represent a directed labeled graph.
edges
. For each vertex q
and each letter a
the cell edge[q][a]
contains a list of all vertices that are connected to q
by an edge labeled by a
. This list must be sorted in increasing order.