sig
  exception Top
  exception Bottom
  type t = PdgTypes.Pdg.t
  module Datatype :
    sig
      type t = t
      val descr : Unmarshal.t
      val copy : t -> t
      val name : string
      val register_comparable :
        ?compare:(t -> t -> int) ->
        ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
      val is_comparable_set : unit -> bool
      val hash : t -> int
      val equal : t -> t -> bool
      val compare : t -> t -> int
      val mem_project : ((Project.project -> bool) -> t -> bool) option ref
    end
  val top : Kernel_function.t -> t
  val bottom : Kernel_function.t -> t
  val is_top : t -> bool
  val is_bottom : t -> bool
  val get_kf : t -> Kernel_function.t
  val iter_nodes : (PdgTypes.Node.t -> unit) -> t -> unit
  val fold_call_nodes :
    ('-> PdgTypes.Node.t -> 'a) -> '-> t -> Cil_types.stmt -> 'a
  type dpd_info = PdgTypes.Node.t * Locations.Zone.t option
  val get_all_direct_dpds : t -> PdgTypes.Node.t -> dpd_info list
  val get_x_direct_dpds :
    PdgTypes.Dpd.td -> t -> PdgTypes.Node.t -> dpd_info list
  val get_all_direct_codpds : t -> PdgTypes.Node.t -> dpd_info list
  val get_x_direct_codpds :
    PdgTypes.Dpd.td -> t -> PdgTypes.Node.t -> dpd_info list
  val pretty : ?bw:bool -> Format.formatter -> t -> unit
  val pretty_graph : ?bw:bool -> Format.formatter -> PdgTypes.G.t -> unit
  val pretty_node : Format.formatter -> PdgTypes.Node.t -> unit
  type t_index = (PdgTypes.Node.t, unit) PdgIndex.FctIndex.t
  val get_index : t -> t_index
  val make :
    Kernel_function.t ->
    PdgTypes.G.t -> PdgTypes.t_data_state Inthash.t -> t_index -> t
  val get_states : t -> PdgTypes.t_data_state Inthash.t
  val build_dot : string -> t -> unit
end