Module LowerHil.MakeAbstractInterpreterWithConfig
Wrapper around Interpreter to prevent clients from having to deal with IdAccessPathMapDomain.
CAVEAT: the translation does not attempt to preserve the semantics in the case where side-effects happen between an assignment to a logical variable and the assignement of that logical variable to a program variable. For instance the following SIL program
    n$0 = *&x.f
    _ = delete(&x)
    *&y = n$0becomes
    _ = delete(&x)
    *&y = *&x.fThe latter is a use-after-delete of &x whereas the original SIL program is well behaved.
Only use HIL if that is not something your checker needs to care about.
Parameters
MakeAbstractInterpreter : AbstractInterpreter.MakeHilConfig : HilConfigTransferFunctions : TransferFunctions.HIL
Signature
module Interpreter = MakeAbstractInterpreter(Make(TransferFunctions)(HilConfig))type domain= TransferFunctions.Domain.t
val compute_post : Interpreter.TransferFunctions.analysis_data -> initial:domain -> IR.Procdesc.t -> domain optioncompute and return the postcondition for the given procedure starting from
initial.