Module AbstractLabeled.Mark
Mark on vertices. Marks can be used if you want to store some information on vertices: it is more efficient to use marks than an external table.
type graph= tType of graphs.
type vertex= vertexType of graph vertices.
val clear : graph -> unitclear gsets all the marks to 0 for all the vertices ofg.
val get : vertex -> intMark value (in O(1)).
val set : vertex -> int -> unitSet the mark of the given vertex.