Library CoLoR.Term.Varyadic.VSignature
CoLoR, a Coq library on rewriting and termination.
See the COPYRIGHTS and LICENSE files.
- Frederic Blanqui, 2005-06-10
Set Implicit Arguments.
Notation variable := nat (only parsing).
Record Signature : Type := mkSignature {
symbol :> Type;
eq_symbol_dec : forall f g : symbol, {f=g}+{~f=g}
}.
Implicit Arguments eq_symbol_dec [s].
