如何在 coq 中写一个 'safe' 头?
How to write a 'safe' head in coq?
我正在尝试在 Coq 中做一些类似于 this liquid Haskell trick 的事情,它定义了部分函数但证明它实际上是完整的:
{-@ head :: {xs:[a] | len xs > 0} -> a @-}
head (x:xs) = x
这是我的第一次尝试,但 Coq 不喜欢它(“此版本不支持强制转换
模式。”):
Definition safeHead {A : Type} (xs : list A) (nonempty : xs <> nil) : A.
Proof.
refine (fun {A : type} (xs : list A) (pf : xs <> nil) =>
match xs with
| x : xs => x
| nil => _
end).
(* Some tactic here to prove the hole from nonempty *)
Defined.
我也尝试从 this blog post 调整选项 1,但失败并出现同样的错误:
Definition safeHead {A : Type} (xs : list A) (not_nil : xs <> nil) : A
match xs return _ with
| x : xs => fun _ => x
| nil => fun is_nil => False_rect _ (not_nil is_nil)
end eq_refl.
有没有办法让它在 coq 中工作?我也很想了解错误信息; 'cast' 是什么?它以哪种模式失败?
实现这一目标的一种方法是使用策略来编写定义的主体
Definition safeHead' {A : Type} (xs : list A) (not_nil : xs <> nil) : A.
destruct xs.
- exfalso; apply not_nil; reflexivity.
- apply a.
Defined.
Let xs := cons 1 nil.
Definition xs_not_nil : xs <> nil.
unfold xs; intro; discriminate.
Defined.
Eval compute in safeHead' xs xs_not_nil.
实现类似行为的另一种非常简单的方法是为非空列表定义归纳数据类型。
Inductive nlist {A : Type} : Type :=
ncons (x : A) (xs : list A) : nlist.
Let nxs := ncons 1 nil.
Definition safeHead {A : Type} (nxs : nlist) : A :=
match nxs with
| ncons x xs => x
end.
Eval compute in safeHead nxs. (* 1 : nat *)
正如@kyo dralliam 指出的那样,您应该使用 ::
而不是 :
来进行列表的 cons 操作。
您定义的主要问题是您在匹配时丢失了 xs
不为空的信息。要保留该信息,您必须明确说明。像这样:
From Coq Require Import Utf8 List.
Import ListNotations.
Definition safeHead {A : Type} (xs : list A) (nonempty : xs ≠ []) : A :=
match xs as l return l ≠ [] → A with
| [] => ltac:(contradiction)
| x :: xs => λ _, x
end nonempty.
使用 match
的 return
信息,我说我构建了 l ≠ [] → A
的证明,其中 l
是我给 [=13= 的本地名称] 使用 as
子句。
这意味着在 []
的情况下,我们必须居住在 [] ≠ [] → A
中,因此我得出结论,使用 contradiction
策略,使用术语中的策略。
在 cons 情况下 x :: xs
我们并不真正关心非空假设,所以我忽略了参数和 return 我们想要的头 x
。
最后整个 match
表达式现在有类型 xs ≠ [] → A
所以要得到 A
我们必须给它 nonempty
证明。
我正在尝试在 Coq 中做一些类似于 this liquid Haskell trick 的事情,它定义了部分函数但证明它实际上是完整的:
{-@ head :: {xs:[a] | len xs > 0} -> a @-}
head (x:xs) = x
这是我的第一次尝试,但 Coq 不喜欢它(“此版本不支持强制转换 模式。”):
Definition safeHead {A : Type} (xs : list A) (nonempty : xs <> nil) : A.
Proof.
refine (fun {A : type} (xs : list A) (pf : xs <> nil) =>
match xs with
| x : xs => x
| nil => _
end).
(* Some tactic here to prove the hole from nonempty *)
Defined.
我也尝试从 this blog post 调整选项 1,但失败并出现同样的错误:
Definition safeHead {A : Type} (xs : list A) (not_nil : xs <> nil) : A
match xs return _ with
| x : xs => fun _ => x
| nil => fun is_nil => False_rect _ (not_nil is_nil)
end eq_refl.
有没有办法让它在 coq 中工作?我也很想了解错误信息; 'cast' 是什么?它以哪种模式失败?
实现这一目标的一种方法是使用策略来编写定义的主体
Definition safeHead' {A : Type} (xs : list A) (not_nil : xs <> nil) : A.
destruct xs.
- exfalso; apply not_nil; reflexivity.
- apply a.
Defined.
Let xs := cons 1 nil.
Definition xs_not_nil : xs <> nil.
unfold xs; intro; discriminate.
Defined.
Eval compute in safeHead' xs xs_not_nil.
实现类似行为的另一种非常简单的方法是为非空列表定义归纳数据类型。
Inductive nlist {A : Type} : Type :=
ncons (x : A) (xs : list A) : nlist.
Let nxs := ncons 1 nil.
Definition safeHead {A : Type} (nxs : nlist) : A :=
match nxs with
| ncons x xs => x
end.
Eval compute in safeHead nxs. (* 1 : nat *)
正如@kyo dralliam 指出的那样,您应该使用 ::
而不是 :
来进行列表的 cons 操作。
您定义的主要问题是您在匹配时丢失了 xs
不为空的信息。要保留该信息,您必须明确说明。像这样:
From Coq Require Import Utf8 List.
Import ListNotations.
Definition safeHead {A : Type} (xs : list A) (nonempty : xs ≠ []) : A :=
match xs as l return l ≠ [] → A with
| [] => ltac:(contradiction)
| x :: xs => λ _, x
end nonempty.
使用 match
的 return
信息,我说我构建了 l ≠ [] → A
的证明,其中 l
是我给 [=13= 的本地名称] 使用 as
子句。
这意味着在 []
的情况下,我们必须居住在 [] ≠ [] → A
中,因此我得出结论,使用 contradiction
策略,使用术语中的策略。
在 cons 情况下 x :: xs
我们并不真正关心非空假设,所以我忽略了参数和 return 我们想要的头 x
。
最后整个 match
表达式现在有类型 xs ≠ [] → A
所以要得到 A
我们必须给它 nonempty
证明。