package bap-std
Graph nodes.
Semantics of operations is denoted using mathematical model, described in Graph
interface.
type t = node
node type is opaque
type graph = t
node type is opaque
type edge = edge
val succs : t -> graph -> t Regular.Std.seq
succs node graph
returns a sequence of successors of a node
in a a given graph
val preds : t -> graph -> t Regular.Std.seq
preds node graph
returns a sequence of predecessors of a node
in a a given graph
val inputs : t -> graph -> edge Regular.Std.seq
inputs node graph
is incoming edges of a node
in graph
val outputs : t -> graph -> edge Regular.Std.seq
outputs node graph
is outcomming edges of a node
in graph
degree ?dir n
when in_or_out
is `In
then returns the amount of incoming edges, otherwise returns the amount of outcomming edges. If parameter dir
is left absent, then return the amount of adjacent nodes (i.e., a sum of incoming and outcomming edges).
insert n g
returns new graph g'
that has a set of nodes N
extended with node n
. If N
was contained n
, then the g == g'
. Use update
to change existing nodes.
Postconditions:
- N(g') = N(g) ∪ {n}.
update n l g
if node n
is not in N(g)
then return g
, else return graph g
where node n
is labeled with l
.
Postconditions:
- n ∉ N(g) -> n ∉ N(g'). - n ∈ N(g) → ν(g')n = l.
remove n g
returns graph g'
, with a node n
removed from a set of nodes N
.
Postconditions:
- E(g) ⊆ E(g') - N(g) ⊆ N(g') - N(g') = N(g) \ {n}.
edge x y g
if graph g
has an edge between nodes x
and y
then it is returned.
node provides common data structures, like Table, Map, Set, Hash_set, etc.
include Regular.Std.Opaque.S with type t := t
include Core_kernel.Comparable.S with type t := t
include Base.Comparable.S with type t := t
val comparator : (t, comparator_witness) Base__Comparator.comparator
module Map :
Core_kernel.Map.S
with type Key.t = t
with type Key.comparator_witness = comparator_witness
module Set :
Core_kernel.Set.S
with type Elt.t = t
with type Elt.comparator_witness = comparator_witness
include Core_kernel.Hashable.S with type t := t
module Table : Core_kernel.Hashtbl.S with type key = t
module Hash_set : Core_kernel.Hash_set.S with type elt = t
module Hash_queue : Core_kernel.Hash_queue.S with type key = t