sig
  type t = PdgTypes.Node.t
  val compare : t -> t -> int
  val equal : t -> t -> bool
  val hash : t -> int
  val elem_id : t -> int
  val elem_key : t -> PdgIndex.Key.t
  val stmt : t -> Cil_types.stmt option
  val equivalent : t -> PdgIndex.Key.t -> bool
  val pretty : Format.formatter -> t -> unit
  val pretty_list : Format.formatter -> t list -> unit
  val pretty_with_part :
    Format.formatter -> t * Locations.Zone.t option -> unit
  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
end