提示重写不能推断参数

时间:2017-07-31 21:29:13

标签: coq coq-tactic

我正在尝试为我编写的矩阵库创建一个Hint Rewrite数据库。但是当我写

Hint Rewrite kron_1_r : M_db

我收到以下错误:

Cannot infer the implicit parameter m of kron_1_r whose type is "nat".

kron_1_r的类型为forall {m n : nat} (A : Matrix m n), A ⊗ Id 1 = A,因此在调用autorewrite时,应根据上下文推断出m和n。我不确定为什么它想要一个参数,或者如何告诉它推迟。

0 个答案:

没有答案