我正在处理强制性证明:

data a ~=~ b where
  IsCoercible :: Coercible a b => a ~=~ b
infix 0 ~=~

sym :: (a ~=~ b) -> (b ~=~ a)
sym IsCoercible = IsCoercible

instance Category (~=~) where
  id = IsCoercible
  IsCoercible . IsCoercible = IsCoercible

coerceBy :: a ~=~ b -> a -> b
coerceBy IsCoercible = coerce

我可以简单地证明Coercible a b => forall x. Coercible (a x) (b x)
introduce :: (a ~=~ b) -> (forall x. a x ~=~ b x)
introduce IsCoercible = IsCoercible

但是相反,(forall x. Coercible (a x) (b x)) => Coercible a b)并不是那么免费:

eliminate :: (forall x. a x ~=~ b x) -> (a ~=~ b)
eliminate IsCoercible = IsCoercible
{-
   • Could not deduce: Coercible a b
        arising from a use of ‘IsCoercible’
      from the context: Coercible (a x0) (b x0)
        bound by a pattern with constructor:
                   IsCoercible :: forall k (a :: k) (b :: k).
                                  Coercible a b =>
                                  a ~=~ b,
                 in an equation for ‘eliminate’
-}

我可以肯定地说我的说法是正确的(尽管我很乐意被驳斥),但是对于缺少如何使用unsafeCoerce的Haskell来证明这一点,我没有什么聪明的主意。

最佳答案

不,你不能。正如Dominique Devriese和HTNW在其评论中暗示的那样,GHC完全不接受该推断。这个要求更高的版本将无法编译:

{-# language QuantifiedConstraints, RankNTypes #-}

import Data.Coerce
import Data.Type.Coercion

eliminate :: (forall a. Coercible (f a) (g a)) => Coercion f g
eliminate = Coercion

您的版本更加注定了。要对多态Coercion(或~=~)参数进行模式匹配,必须将其实例化为特定类型。 GHC会将其实例化为f Any ~=~ g Any,然后成为morpht_code,因此无法证明您想要的内容。由于键入了GHC Core,因此不会运行。

旁注:我感到非常沮丧的是,没有办法写
f :: (forall a. c a :- d a)
  -> ((forall a. c a => d a) => r)
  -> r

关于haskell - 我可以证明(forall x。Coercible(a x)(b x))暗示Coercible a b吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56797358/

10-12 23:51