建筑微积分中的“反射”事物? [英] `Refl` thing in Calculus of Constructions?

查看:102
本文介绍了建筑微积分中的“反射”事物?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在诸如 Agda Idris Haskell 带有类型扩展,有一个 = 类型如下

In languages such as Agda, Idris, or Haskell with type extensions, there is a = type sort of like the following

data a :~: b where
  Refl :: a :~: a

a:〜:b 表示 a b

可以在微积分结构 Morte (这是基于编程语言的结构演算)?

Can such a type be defined in the calculus of constructions or Morte (which is programming language based on the calculus of construction)?

推荐答案

标准教会编码 a:〜:b 在CoC中是:

The standard Church-encoding of a :~: b in CoC is:

(a :~: b) =
   forall (P :: * -> * -> *).
      (forall c :: *. P c c) ->
      P a b

Refl 存在

Refl a :: a :~: a
Refl a =
   \ (P :: * -> * -> *)
     (h :: forall (c::*). P c c) ->
     h a

以上内容描述了类型之间的等价关系。对于 terms 之间的平等,:〜:关系必须带有一个附加参数 t :: * ,其中 ab :: t

The above formulates equality between types. For equality between terms, the :~: relation must take an additional argument t :: *, where a b :: t.

((:~:) t a b) = 
   forall (P :: t -> t -> *).
      (forall c :: t. P c c) ->
      P a b

Refl t a :: (:~:) t a a
Refl t a =
   \ (P :: t -> t -> *)
     (h :: forall (c :: t). P c c) ->
     h a

这篇关于建筑微积分中的“反射”事物?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆