sig
  exception Top
  exception Bottom
  type t = PdgTypes.Pdg.t
  module Datatype :
    sig
      type t = t
      val rehash : 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) -> ?physical_hash:(t -> int) -> unit -> unit
      val is_comparable_set : unit -> bool
      val hash : t -> int
      val physical_hash : t -> int
      val equal : t -> t -> bool
      val compare : t -> t -> int
      val contain_project : (Project.project -> 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
end