Module InferModules__Scheduler
module type S = sig ... endmodule type Make = functor (CFG : InferModules.ProcCfg.S) -> sig ... endmodule ReversePostorder : functor (CFG : InferModules.ProcCfg.S) -> sig ... endsimple 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).