Vertex

Represents a module in the graph.

Members

Variables

id
size_t id;

The nth vertex in the graph.

index
size_t index;

with other vertices./// Greater than 0 means that this vertex has been visited.

instack
bool instack;

Is this in the Stack?

isCyclic
bool isCyclic;

Whether this vertex is in a cyclic relationship

llink
size_t llink;

Aka. lowlink.

modul
Module modul;

The module represented by this vertex.

outgoing
Vertex[] outgoing;

Also called successors.

Meta