package elpi

  1. Overview
  2. Docs
type sequent = {
  1. eigen : Term.t;
  2. context : Term.t;
  3. conclusion : Term.t;
}
and 'attribute t = {
  1. to_match : sequent list;
  2. to_remove : sequent list;
  3. guard : Term.t option;
  4. new_goal : sequent option;
  5. attributes : 'attribute;
  6. loc : Loc.t;
}
val pp_sequent : Ppx_deriving_runtime.Format.formatter -> sequent -> Ppx_deriving_runtime.unit
val show_sequent : sequent -> Ppx_deriving_runtime.string
val pp : (Ppx_deriving_runtime.Format.formatter -> 'attribute -> Ppx_deriving_runtime.unit) -> Ppx_deriving_runtime.Format.formatter -> 'attribute t -> Ppx_deriving_runtime.unit
val show : (Ppx_deriving_runtime.Format.formatter -> 'attribute -> Ppx_deriving_runtime.unit) -> 'attribute t -> Ppx_deriving_runtime.string