Deducteam / Dedukti

Implementation of the λΠ-calculus modulo rewriting

Home Page:https://deducteam.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parameters not allowed in the declaration of a definable symbol

fblanqui opened this issue · comments

Prop:Type.
def Prf:Prop -> Type.
N:Type.
eq:N -> N -> Prop.
def add:N -> N -> N.
add_com1 (x:N) (y:N) : Prf(eq (add x y) (add y x)).
def add_com2 (x:N) (y:N) : Prf(eq (add x y) (add y x)). (; fails ;)