1
定義歸納謂詞時,我可以選擇哪些參數是固定的,哪些不是。對於一個人爲的例子考慮:具有非固定參數的感應集合
inductive foo for P where
"foo P True (Inl x) (Inl x)"
是它在某種程度上可能把它變成一個電感組定義與一個固定的和一個非固定的參數?
inductive_set Foo for P where
"(Inl x, Inl x) : Foo P True"
被拒絕,並顯示錯誤消息:
Argument types 'd, bool of Foo do not agree with types'd of declared parameter
我知道,我可以根據感應謂詞版本定義了一組(例如,Foo P b = {(x, y). foo P b x x}
),但後來我一直有前展開它我可以申請歸納或案例分析(或者必須爲Foo
引入相應的規則,這似乎有點多餘)。