我正在尝试为我编写的矩阵库创建一个提示重写数据库。但是当我写
Hint Rewrite kron_1_r : M_db
我收到以下错误:
Cannot infer the implicit parameter m of kron_1_r whose type is "nat".
kron_1_r
具有 type forall {m n : nat} (A : Matrix m n), A ⊗ Id 1 = A
,因此 m 和 n 应在调用 autorewrite 时根据上下文推断。我不确定为什么它需要一个参数,或者如何告诉它推迟。