sig
  type t = PdgTypes.Node.t * Db_types.kernel_function
  val compare :
    PdgTypes.Node.t * Kernel_function.t ->
    PdgTypes.Node.t * Kernel_function.t -> int
  val equal :
    PdgTypes.Node.t * Kernel_function.t ->
    PdgTypes.Node.t * Kernel_function.t -> bool
  val hash : PdgTypes.Node.t * Kernel_function.t -> int
  module Datatype :
    sig
      type t = PdgTypes.Node.Datatype.t * Kernel_function.Datatype.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
end