CfgProperties: {
    "entry-reaches-all": (cfg: ControlFlowInformation) => boolean;
    "exit-reaches-all": (cfg: ControlFlowInformation) => boolean;
    "has-entry-and-exit": (cfg: ControlFlowInformation) => boolean;
    "no-direct-cd-cycles": (
        c: ControlFlowInformation<CfgSimpleVertex>,
    ) => boolean;
    "no-direct-fd-cycles": (
        c: ControlFlowInformation<CfgSimpleVertex>,
    ) => boolean;
    "single-entry-and-exit": (cfg: ControlFlowInformation) => boolean;
} = ...

The collection of properties that can be checked on a control flow graph.

Type declaration