Library CoLoR.Term.Varyadic.VSignature

CoLoR, a Coq library on rewriting and termination. See the COPYRIGHTS and LICENSE files.
  • Frederic Blanqui, 2005-06-10
signature for algebraic terms with no arity

Set Implicit Arguments.

Notation variable := nat (only parsing).

Record Signature : Type := mkSignature {
  symbol :> Type;
  eq_symbol_dec : f g : symbol, {f=g}+{¬f=g}
}.

Implicit Arguments eq_symbol_dec [s].