type-natural-0.6.0.0: Data/Type/Ordinal.hs
{-# LANGUAGE CPP, DataKinds, DeriveDataTypeable, EmptyCase, EmptyDataDecls #-}
{-# LANGUAGE ExplicitNamespaces, FlexibleContexts, FlexibleInstances #-}
{-# LANGUAGE GADTs, KindSignatures, LambdaCase, PatternSynonyms, PolyKinds #-}
{-# LANGUAGE RankNTypes, ScopedTypeVariables, StandaloneDeriving #-}
{-# LANGUAGE TemplateHaskell, TypeFamilies, TypeInType, TypeOperators #-}
{-# LANGUAGE ViewPatterns #-}
-- | Set-theoretic ordinals for general peano arithmetic models
module Data.Type.Ordinal
( -- * Data-types
Ordinal (..), pattern OZ, pattern OS, HasOrdinal,
-- * Conversion from cardinals to ordinals.
sNatToOrd', sNatToOrd, ordToInt, ordToSing,
ordToSing', CastedOrdinal(..),
unsafeFromInt, inclusion, inclusion',
-- * Ordinal arithmetics
(@+), enumOrdinal,
-- * Elimination rules for @'Ordinal' 'Z'@.
absurdOrd, vacuousOrd, vacuousOrdM,
-- * Quasi Quoter
od
) where
import Control.Monad (liftM)
import Data.Kind
import Data.List (genericDrop, genericTake)
import Data.Ord (comparing)
import Data.Singletons.Prelude
import Data.Singletons.Prelude.Enum
import Data.Type.Equality
import Data.Type.Monomorphic
import qualified Data.Type.Natural as PN
import Data.Type.Natural.Builtin ()
import Data.Type.Natural.Class
import Data.Typeable (Typeable)
import Data.Void (absurd)
import GHC.TypeLits (type (+))
import qualified GHC.TypeLits as TL
import Language.Haskell.TH hiding (Type)
import Language.Haskell.TH.Quote
import Proof.Equational
import Proof.Propositional
import Unsafe.Coerce
-- | Set-theoretic (finite) ordinals:
--
-- > n = {0, 1, ..., n-1}
--
-- So, @Ordinal n@ has exactly n inhabitants. So especially @Ordinal 'Z@ is isomorphic to @Void@.
--
-- Since 0.5.0.0
data Ordinal (n :: nat) where
OLt :: (IsPeano nat, (n :< m) ~ 'True) => Sing (n :: nat) -> Ordinal m
fromOLt :: forall nat n m. (PeanoOrder nat, (Succ n :< Succ m) ~ 'True, SingI m)
=> Sing (n :: nat) -> Ordinal m
fromOLt n =
case coerce (sym $ succLneqSucc n (sing :: Sing m)) Witness of
Witness -> OLt n
-- | Pattern synonym representing the 0-th ordinal.
pattern OZ :: forall nat (n :: nat). IsPeano nat
=> (Zero nat :< n) ~ 'True => Ordinal n
pattern OZ <- OLt Zero where
OZ = OLt sZero
-- | Pattern synonym @'OS' n@ represents (n+1)-th ordinal.
pattern OS :: forall nat (t :: nat). (PeanoOrder nat, SingI t)
=> (IsPeano nat)
=> Ordinal t -> Ordinal (Succ t)
pattern OS n <- OLt (Succ (fromOLt -> n)) where
OS o = succOrd o
-- | Since 0.2.3.0
deriving instance Typeable Ordinal
-- | Class synonym for Peano numerals with ordinals.
--
-- Since 0.5.0.0
class (PeanoOrder nat, Monomorphicable (Sing :: nat -> *),
Integral (MonomorphicRep (Sing :: nat -> *)),
Show (MonomorphicRep (Sing :: nat -> *))) => HasOrdinal nat
instance (PeanoOrder nat, Monomorphicable (Sing :: nat -> *),
Integral (MonomorphicRep (Sing :: nat -> *)),
Show (MonomorphicRep (Sing :: nat -> *))) => HasOrdinal nat
instance (HasOrdinal nat, SingI (n :: nat))
=> Num (Ordinal n) where
{-# SPECIALISE instance SingI n => Num (Ordinal (n :: PN.Nat)) #-}
{-# SPECIALISE instance SingI n => Num (Ordinal (n :: TL.Nat)) #-}
_ + _ = error "Finite ordinal is not closed under addition."
_ - _ = error "Ordinal subtraction is not defined"
negate OZ = OZ
negate _ = error "There are no negative oridnals!"
OZ * _ = OZ
_ * OZ = OZ
_ * _ = error "Finite ordinal is not closed under multiplication"
abs = id
signum = error "What does Ordinal sign mean?"
fromInteger = unsafeFromInt' (Proxy :: Proxy nat) . fromInteger
-- deriving instance Read (Ordinal n) => Read (Ordinal (Succ n))
instance (SingI n, HasOrdinal nat)
=> Show (Ordinal (n :: nat)) where
{-# SPECIALISE instance SingI n => Show (Ordinal (n :: PN.Nat)) #-}
{-# SPECIALISE instance SingI n => Show (Ordinal (n :: TL.Nat)) #-}
showsPrec d o = showChar '#' . showParen True (showsPrec d (ordToInt o) . showString " / " . showsPrec d (demote $ Monomorphic (sing :: Sing n)))
instance (HasOrdinal nat)
=> Eq (Ordinal (n :: nat)) where
{-# SPECIALISE instance Eq (Ordinal (n :: PN.Nat)) #-}
{-# SPECIALISE instance Eq (Ordinal (n :: TL.Nat)) #-}
o == o' = ordToInt o == ordToInt o'
instance (HasOrdinal nat) => Ord (Ordinal (n :: nat)) where
compare = comparing ordToInt
instance (HasOrdinal nat, SingI n)
=> Enum (Ordinal (n :: nat)) where
fromEnum = fromIntegral . ordToInt
toEnum = unsafeFromInt' (Proxy :: Proxy nat) . fromIntegral
enumFrom = enumFromOrd
enumFromTo = enumFromToOrd
enumFromToOrd :: forall (n :: nat).
(HasOrdinal nat, SingI n)
=> Ordinal n -> Ordinal n -> [Ordinal n]
enumFromToOrd ok ol =
let k = ordToInt ok
l = ordToInt ol
in genericTake (l - k + 1) $ enumFromOrd ok
enumFromOrd :: forall (n :: nat).
(HasOrdinal nat, SingI n)
=> Ordinal n -> [Ordinal n]
enumFromOrd ord = genericDrop (ordToInt ord) $ enumOrdinal (sing :: Sing n)
enumOrdinal :: (PeanoOrder nat, SingI n) => Sing (n :: nat) -> [Ordinal n]
enumOrdinal (Succ n) = withSingI n $
case lneqZero n of
Witness ->
OLt sZero : map succOrd (enumOrdinal n)
enumOrdinal _ = []
succOrd :: forall (n :: nat). (PeanoOrder nat, SingI n) => Ordinal n -> Ordinal (Succ n)
succOrd (OLt n) =
case succLneqSucc n (sing :: Sing n) of
Refl -> OLt (sSucc n)
{-# INLINE succOrd #-}
instance SingI n => Bounded (Ordinal ('PN.S n)) where
minBound = OLt PN.SZ
maxBound =
case leqRefl (sing :: Sing n) of
Witness -> sNatToOrd (sing :: Sing n)
instance (SingI m, SingI n, n ~ (m + 1)) => Bounded (Ordinal n) where
minBound =
case lneqZero (sing :: Sing m) of
Witness -> OLt (sing :: Sing 0)
{-# INLINE minBound #-}
maxBound =
case lneqSucc (sing :: Sing m) of
Witness -> sNatToOrd (sing :: Sing m)
{-# INLINE maxBound #-}
unsafeFromInt :: forall (n :: nat). (HasOrdinal nat, SingI (n :: nat))
=> MonomorphicRep (Sing :: nat -> *) -> Ordinal n
unsafeFromInt n =
case promote (n :: MonomorphicRep (Sing :: nat -> *)) of
Monomorphic sn ->
case sn %:< (sing :: Sing n) of
STrue -> sNatToOrd' (sing :: Sing n) sn
SFalse -> error "Bound over!"
unsafeFromInt' :: forall proxy (n :: nat). (HasOrdinal nat, SingI n)
=> proxy nat -> MonomorphicRep (Sing :: nat -> *) -> Ordinal n
unsafeFromInt' _ n =
case promote (n :: MonomorphicRep (Sing :: nat -> *)) of
Monomorphic sn ->
case sn %:< (sing :: Sing n) of
STrue -> sNatToOrd' (sing :: Sing n) sn
SFalse -> error "Bound over!"
-- | 'sNatToOrd'' @n m@ injects @m@ as @Ordinal n@.
--
-- Since 0.5.0.0
sNatToOrd' :: (PeanoOrder nat, (m :< n) ~ 'True) => Sing (n :: nat) -> Sing m -> Ordinal n
sNatToOrd' _ m = OLt m
{-# INLINE sNatToOrd' #-}
-- | 'sNatToOrd'' with @n@ inferred.
sNatToOrd :: (PeanoOrder nat, SingI (n :: nat), (m :< n) ~ 'True) => Sing m -> Ordinal n
sNatToOrd = sNatToOrd' sing
data CastedOrdinal n where
CastedOrdinal :: (m :< n) ~ 'True => Sing m -> CastedOrdinal n
-- | Convert @Ordinal n@ into @Sing m@ with the proof of @'S m :<= n@.
ordToSing' :: forall (n :: nat). (PeanoOrder nat, SingI n) => Ordinal n -> CastedOrdinal n
ordToSing' (OLt s) = CastedOrdinal s
{-# INLINE ordToSing' #-}
-- | Convert @Ordinal n@ into monomorphic @Sing@
--
-- Since 0.5.0.0
ordToSing :: (PeanoOrder nat) => Ordinal (n :: nat) -> SomeSing nat
ordToSing (OLt n) = SomeSing n
{-# INLINE ordToSing #-}
-- | Convert ordinal into @Int@.
ordToInt :: (HasOrdinal nat, int ~ MonomorphicRep (Sing :: nat -> *))
=> Ordinal (n :: nat)
-> int
ordToInt (OLt n) = demote $ Monomorphic n
{-# SPECIALISE ordToInt :: Ordinal (n :: PN.Nat) -> Integer #-}
{-# SPECIALISE ordToInt :: Ordinal (n :: TL.Nat) -> Integer #-}
-- | Inclusion function for ordinals.
inclusion' :: (n :< m) ~ 'True => Sing m -> Ordinal n -> Ordinal m
inclusion' _ = unsafeCoerce
{-# INLINE inclusion' #-}
-- | Inclusion function for ordinals with codomain inferred.
inclusion :: ((n :<= m) ~ 'True) => Ordinal n -> Ordinal m
inclusion on = unsafeCoerce on
{-# INLINE inclusion #-}
-- | Ordinal addition.
(@+) :: forall n m. (PeanoOrder nat, SingI (n :: nat), SingI m)
=> Ordinal n -> Ordinal m -> Ordinal (n :+ m)
OLt k @+ OLt l =
let (n, m) = (n :: Sing n, m :: Sing m)
in case plusStrictMonotone k n l m Witness Witness of
Witness -> OLt $ k %:+ l
-- | Since @Ordinal 'Z@ is logically not inhabited, we can coerce it to any value.
--
-- Since 0.2.3.0
absurdOrd :: PeanoOrder nat => Ordinal (Zero nat) -> a
absurdOrd (OLt n) = absurd $ lneqZeroAbsurd n Witness
-- | 'absurdOrd' for the value in 'Functor'.
--
-- Since 0.2.3.0
vacuousOrd :: (PeanoOrder nat, Functor f) => f (Ordinal (Zero nat)) -> f a
vacuousOrd = fmap absurdOrd
-- | 'absurdOrd' for the value in 'Monad'.
-- This function will become uneccesary once 'Applicative' (and hence 'Functor')
-- become the superclass of 'Monad'.
--
-- Since 0.2.3.0
vacuousOrdM :: (PeanoOrder nat, Monad m) => m (Ordinal (Zero nat)) -> m a
vacuousOrdM = liftM absurdOrd
-- | Quasiquoter for ordinals
od :: QuasiQuoter
od = QuasiQuoter { quoteExp = foldr appE (conE 'OZ) . flip replicate (conE 'OS) . read
, quoteType = error "No type quoter for Ordinals"
, quotePat = foldr (\a b -> conP a [b]) (conP 'OZ []) . flip replicate 'OS . read
, quoteDec = error "No declaration quoter for Ordinals"
}