package ocamlgraph

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Parameters

module G : G
module D : Data with type edge = G.E.t

Signature

module M : Map.S with type key = G.V.t and type 'a t = 'a Map.Make(G.V).t

Map used to store the result of the analysis

val recurse : G.t -> G.V.t WeakTopological.t -> (G.V.t -> D.t) -> G.V.t widening_set -> int -> D.t M.t

recurse g wto init widening_set widening_delay computes the fixpoint of the analysis of a graph. This function uses the recursive iteration strategy: it recursively stabilizes the subcomponents of every component every time the component is stabilized (cf. Bourdoncle's paper).

  • parameter g

    The graph to analyse.

  • parameter wto

    A weak topological ordering of the vertices of g.

  • parameter widening_set

    On which points to do the widening.

  • parameter widening_delay

    How many computations steps will be done before using widening to speed up the stabilisation. This counter is reset when entering each component, and is shared between all outermost vertices of this component. A negative value means 0.

  • parameter init

    How to compute the initial analysis data.

  • returns

    A map from vertices of g to their analysis result.