ControlAn analyzer that takes the CFG from MyCFG, a solver from Selector, constraints from Constraints (using the specification from MCP)
module type S2S = functor (X : Analyses.Spec) -> Analyses.Specval get_spec : unit -> (module Analyses.Spec)module AnalyzeCFG
(Cfg : MyCFG.CfgBidir)
(Spec : Analyses.Spec)
(Inc : Constraints.Increment) :
sig ... endGiven a Cfg, a Spec, and an Inc, computes the solution to MCP.Path
val analyze_loop :
(module MyCFG.CfgBidir) ->
Cil.file ->
Analyses.fundecs ->
Analyses.increment_data ->
unitval compute_cfg : Cil.file -> (module MyCFG.CfgBidir)val analyze : Analyses.increment_data -> Cil.file -> Analyses.fundecs -> unitThe main function to perform the selected analyses.