package goblint

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Strongly connected component.

type t = {
  1. nodes : unit NH.t;
    (*

    Set of nodes in SCC, mutated during computeSCCs.

    *)
  2. next : (MyCFG.edges * MyCFG.node) list NH.t;
    (*

    Successor edges from this SCC to another SCC, mutated during computeSCCs.

    *)
  3. prev : (MyCFG.edges * MyCFG.node) list NH.t;
    (*

    Predecessor edges from another SCC to this SCC, mutated during computeSCCs.

    *)
}
val equal : 'a -> 'a -> bool
val hash : 'a -> int