Module Cobol_cfg.Options

type transformation =
  1. | Descendents of int
  2. | Neighborhood of int
type t = {
  1. hide_unreachable : bool;
  2. collapse_fallthru : bool;
  3. in_degree_upper_limit : int option;
  4. transformation : transformation option;
  5. hidden_nodes : int list;
  6. split_nodes : int list;
}