frama-c.kernel
MakeGraph.E
Edges have type E.t and are labeled with type E.label. src (resp. dst) returns the origin (resp. the destination) of a given edge.
E.t
E.label
src
dst
Edges are ORDERED_TYPE.
ORDERED_TYPE
Pdg_types
frama-c-acsl-importer.core
frama-c-acsl-importer.gui
frama-c-alias.core
frama-c-aorai.core
frama-c-api_generator.core
frama-c-callgraph.core
frama-c-constant_propagation.core
frama-c-dive.core
frama-c-e-acsl.core
frama-c-eva.core
frama-c-eva.gui
frama-c-eva.mthread
frama-c-eva.numerors
frama-c-from.core
frama-c-from.gui
frama-c-impact.core
frama-c-impact.gui
frama-c-inout.core
frama-c-instantiate.core
frama-c-loop-analysis.core
frama-c-markdown-report.core
frama-c-markdown-report.eva-info
frama-c-metrics.core
frama-c-metrics.gui
frama-c-nonterm.core
frama-c-obfuscator.core
frama-c-occurrence.core
frama-c-occurrence.gui
frama-c-pdg.core
frama-c-pdg.types
frama-c-reduc.core
frama-c-region.core
frama-c-report.core
frama-c-rtegen.core
frama-c-rtegen.gui
frama-c-scope.core
frama-c-scope.gui
frama-c-security_slicing.core
frama-c-security_slicing.gui
frama-c-server.core
frama-c-slicing.core
frama-c-slicing.gui
frama-c-sparecode.core
frama-c-studia.core
frama-c-studia.gui
frama-c-users.core
frama-c-volatile.core
frama-c-wp.core
frama-c-wp.gui
frama-c.analysis-scripts
frama-c.boot
frama-c.gui
frama-c.init
frama_c_very_first_cmdline
frama_c_very_first_gui
markdown_report_eva_info
mthread
mthread_gui
numerors
qed
type t = Vertex.t * Edge.t * Vertex.t
val compare : t -> t -> int
Edges are directed.
type vertex = vertex
val src : t -> vertex
Edge origin.
val dst : t -> vertex
Edge destination.
Edges are labeled.
type label = Edge.t
val create : vertex -> label -> vertex -> t
create v1 l v2 creates an edge from v1 to v2 with label l
create v1 l v2
v1
v2
l
val label : t -> label
Get the label of an edge.