Module InferModules__AbstractInterpreter

type 'a state = {
pre : 'a;
post : 'a;
visit_count : int;
}
module type S : sig ... end

type of an intraprocedural abstract interpreter

module MakeNoCFG : functor (Scheduler : InferModules.Scheduler.S) -> functor (TransferFunctions : InferModules.TransferFunctions.SIL with module CFG = Scheduler.CFG) -> S with module TransferFunctions = TransferFunctions

create an intraprocedural abstract interpreter from a scheduler and transfer functions

module Make : functor (CFG : InferModules.ProcCfg.S) -> functor (MakeTransferFunctions : InferModules.TransferFunctions.MakeSIL) -> S with module TransferFunctions = MakeTransferFunctions(CFG)

create an intraprocedural abstract interpreter from a CFG and functors for creating a scheduler/ transfer functions from a CFG