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