Frama-C API - State_dependency_graph
State Dependency Graph.
Signatures
module type S = sig ... end
Signature of a State Dependency Graph. It is compatible with the signature of OcamlGraph imperative graph Graph.Sig.I
.
module type Attributes = sig ... end
Signature required by Graph.GraphViZ.Dot
. See the OcamlGraph's documentation for additional details.
include S
Add an edge in graph
from the state from
to each state of the list.
Add an edge in graph
from each state of the list to the state onto
.
Remove an edge in graph
from the given state to each state of the list.
module Attributes : Attributes
module Dot (_ : Attributes) : sig ... end