Module InferModules.Scheduler

module type S = sig ... end
module type Make = functor (CFG : ProcCfg.S) -> sig ... end
module ReversePostorder : functor (CFG : ProcCfg.S) -> sig ... end

simple scheduler that visits CFG nodes in reverse postorder. fast/precise for straightline code and conditionals; not as good for loops (may visit nodes after a loop multiple times).