我正在尝试在ACL2中编写一个函数(特别是ACL2s),它接受一个列表和一个自然数,并返回给定索引列表中的项。所以(选择(列表1 2 3)2)将返回3.
这是我的代码:
;; select: List x Nat -> All
(defunc select (l n)
:input-contract (and (listp l) (natp n))
:output-contract t
(if (equal 0 n)
(first l)
(select (rest l) (- n 1))))
我收到以下错误:
Query: Testing body contracts ...
**Summary of Cgen/testing**
We tested 50 examples across 1 subgoals, of which 48 (48 unique) satisfied
the hypotheses, and found 1 counterexamples and 47 witnesses.
We falsified the conjecture. Here are counterexamples:
[found in : "top"]
-- ((L NIL) (N 0))
Test? found a counterexample.
Body contract falsified in:
-- (ACL2::EXTRA-INFO '(:GUARD (:BODY SELECT)) '(FIRST L))
非常感谢任何帮助!
答案 0 :(得分:1)
这条消息对我来说非常清楚:您正试图获取空列表的第一个元素,这与您的规范相冲突。
基于this reference,first
似乎需要非空列表,而当您的输入为car
时,nil
会返回nil
。
您使用nil
测试明确处理endp
个案,或者使用car
代替first
。