{-# LANGUAGE CPP #-}
{-# LANGUAGE DerivingVia #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
module Grisette.Core.Data.Class.Substitute
(
SubstituteSym (..),
SubstituteSym' (..),
)
where
import Control.Monad.Except
import Control.Monad.Identity
import Control.Monad.Trans.Maybe
import qualified Control.Monad.Writer.Lazy as WriterLazy
import qualified Control.Monad.Writer.Strict as WriterStrict
import qualified Data.ByteString as B
import Data.Functor.Sum
import Data.Int
import Data.Word
import Generics.Deriving
import Generics.Deriving.Instances ()
import Grisette.IR.SymPrim.Data.Prim.InternedTerm.Term
import Grisette.IR.SymPrim.Data.Prim.InternedTerm.TermSubstitution
import Grisette.IR.SymPrim.Data.Prim.InternedTerm.TermUtils
import {-# SOURCE #-} Grisette.IR.SymPrim.Data.SymPrim
class SubstituteSym a where
substituteSym :: TypedSymbol b -> Sym b -> a -> a
class SubstituteSym' a where
substituteSym' :: TypedSymbol b -> Sym b -> a c -> a c
instance
( Generic a,
SubstituteSym' (Rep a)
) =>
SubstituteSym (Default a)
where
substituteSym :: forall b. TypedSymbol b -> Sym b -> Default a -> Default a
substituteSym TypedSymbol b
sym Sym b
val = a -> Default a
forall a. a -> Default a
Default (a -> Default a) -> (Default a -> a) -> Default a -> Default a
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Rep a Any -> a
forall a x. Generic a => Rep a x -> a
to (Rep a Any -> a) -> (Default a -> Rep a Any) -> Default a -> a
forall b c a. (b -> c) -> (a -> b) -> a -> c
. TypedSymbol b -> Sym b -> Rep a Any -> Rep a Any
forall (a :: * -> *) b c.
SubstituteSym' a =>
TypedSymbol b -> Sym b -> a c -> a c
substituteSym' TypedSymbol b
sym Sym b
val (Rep a Any -> Rep a Any)
-> (Default a -> Rep a Any) -> Default a -> Rep a Any
forall b c a. (b -> c) -> (a -> b) -> a -> c
. a -> Rep a Any
forall a x. Generic a => a -> Rep a x
from (a -> Rep a Any) -> (Default a -> a) -> Default a -> Rep a Any
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Default a -> a
forall a. Default a -> a
unDefault
instance SubstituteSym' U1 where
substituteSym' :: forall b c. TypedSymbol b -> Sym b -> U1 c -> U1 c
substituteSym' TypedSymbol b
_ Sym b
_ = U1 c -> U1 c
forall a. a -> a
id
instance SubstituteSym c => SubstituteSym' (K1 i c) where
substituteSym' :: forall b c. TypedSymbol b -> Sym b -> K1 i c c -> K1 i c c
substituteSym' TypedSymbol b
sym Sym b
val (K1 c
v) = c -> K1 i c c
forall k i c (p :: k). c -> K1 i c p
K1 (c -> K1 i c c) -> c -> K1 i c c
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> c -> c
forall a b. SubstituteSym a => TypedSymbol b -> Sym b -> a -> a
substituteSym TypedSymbol b
sym Sym b
val c
v
instance SubstituteSym' a => SubstituteSym' (M1 i c a) where
substituteSym' :: forall b c. TypedSymbol b -> Sym b -> M1 i c a c -> M1 i c a c
substituteSym' TypedSymbol b
sym Sym b
val (M1 a c
v) = a c -> M1 i c a c
forall k i (c :: Meta) (f :: k -> *) (p :: k). f p -> M1 i c f p
M1 (a c -> M1 i c a c) -> a c -> M1 i c a c
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> a c -> a c
forall (a :: * -> *) b c.
SubstituteSym' a =>
TypedSymbol b -> Sym b -> a c -> a c
substituteSym' TypedSymbol b
sym Sym b
val a c
v
instance (SubstituteSym' a, SubstituteSym' b) => SubstituteSym' (a :+: b) where
substituteSym' :: forall b c. TypedSymbol b -> Sym b -> (:+:) a b c -> (:+:) a b c
substituteSym' TypedSymbol b
sym Sym b
val (L1 a c
l) = a c -> (:+:) a b c
forall k (f :: k -> *) (g :: k -> *) (p :: k). f p -> (:+:) f g p
L1 (a c -> (:+:) a b c) -> a c -> (:+:) a b c
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> a c -> a c
forall (a :: * -> *) b c.
SubstituteSym' a =>
TypedSymbol b -> Sym b -> a c -> a c
substituteSym' TypedSymbol b
sym Sym b
val a c
l
substituteSym' TypedSymbol b
sym Sym b
val (R1 b c
r) = b c -> (:+:) a b c
forall k (f :: k -> *) (g :: k -> *) (p :: k). g p -> (:+:) f g p
R1 (b c -> (:+:) a b c) -> b c -> (:+:) a b c
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> b c -> b c
forall (a :: * -> *) b c.
SubstituteSym' a =>
TypedSymbol b -> Sym b -> a c -> a c
substituteSym' TypedSymbol b
sym Sym b
val b c
r
instance (SubstituteSym' a, SubstituteSym' b) => SubstituteSym' (a :*: b) where
substituteSym' :: forall b c. TypedSymbol b -> Sym b -> (:*:) a b c -> (:*:) a b c
substituteSym' TypedSymbol b
sym Sym b
val (a c
a :*: b c
b) = TypedSymbol b -> Sym b -> a c -> a c
forall (a :: * -> *) b c.
SubstituteSym' a =>
TypedSymbol b -> Sym b -> a c -> a c
substituteSym' TypedSymbol b
sym Sym b
val a c
a a c -> b c -> (:*:) a b c
forall k (f :: k -> *) (g :: k -> *) (p :: k).
f p -> g p -> (:*:) f g p
:*: TypedSymbol b -> Sym b -> b c -> b c
forall (a :: * -> *) b c.
SubstituteSym' a =>
TypedSymbol b -> Sym b -> a c -> a c
substituteSym' TypedSymbol b
sym Sym b
val b c
b
#define CONCRETE_SUBSTITUTESYM(type) \
instance SubstituteSym type where \
substituteSym _ _ = id
#if 1
CONCRETE_SUBSTITUTESYM(Bool)
CONCRETE_SUBSTITUTESYM(Integer)
CONCRETE_SUBSTITUTESYM(Char)
CONCRETE_SUBSTITUTESYM(Int)
CONCRETE_SUBSTITUTESYM(Int8)
CONCRETE_SUBSTITUTESYM(Int16)
CONCRETE_SUBSTITUTESYM(Int32)
CONCRETE_SUBSTITUTESYM(Int64)
CONCRETE_SUBSTITUTESYM(Word)
CONCRETE_SUBSTITUTESYM(Word8)
CONCRETE_SUBSTITUTESYM(Word16)
CONCRETE_SUBSTITUTESYM(Word32)
CONCRETE_SUBSTITUTESYM(Word64)
CONCRETE_SUBSTITUTESYM(B.ByteString)
#endif
instance SubstituteSym () where
substituteSym :: forall b. TypedSymbol b -> Sym b -> () -> ()
substituteSym TypedSymbol b
_ Sym b
_ = () -> ()
forall a. a -> a
id
deriving via
(Default (Either a b))
instance
( SubstituteSym a,
SubstituteSym b
) =>
SubstituteSym (Either a b)
deriving via (Default (Maybe a)) instance (SubstituteSym a) => SubstituteSym (Maybe a)
deriving via (Default [a]) instance (SubstituteSym a) => SubstituteSym [a]
deriving via
(Default (a, b))
instance
(SubstituteSym a, SubstituteSym b) =>
SubstituteSym (a, b)
deriving via
(Default (a, b, c))
instance
( SubstituteSym a,
SubstituteSym b,
SubstituteSym c
) =>
SubstituteSym (a, b, c)
deriving via
(Default (a, b, c, d))
instance
( SubstituteSym a,
SubstituteSym b,
SubstituteSym c,
SubstituteSym d
) =>
SubstituteSym (a, b, c, d)
deriving via
(Default (a, b, c, d, e))
instance
( SubstituteSym a,
SubstituteSym b,
SubstituteSym c,
SubstituteSym d,
SubstituteSym e
) =>
SubstituteSym (a, b, c, d, e)
deriving via
(Default (a, b, c, d, e, f))
instance
( SubstituteSym a,
SubstituteSym b,
SubstituteSym c,
SubstituteSym d,
SubstituteSym e,
SubstituteSym f
) =>
SubstituteSym (a, b, c, d, e, f)
deriving via
(Default (a, b, c, d, e, f, g))
instance
( SubstituteSym a,
SubstituteSym b,
SubstituteSym c,
SubstituteSym d,
SubstituteSym e,
SubstituteSym f,
SubstituteSym g
) =>
SubstituteSym (a, b, c, d, e, f, g)
deriving via
(Default (a, b, c, d, e, f, g, h))
instance
( SubstituteSym a,
SubstituteSym b,
SubstituteSym c,
SubstituteSym d,
SubstituteSym e,
SubstituteSym f,
SubstituteSym g,
SubstituteSym h
) =>
SubstituteSym ((,,,,,,,) a b c d e f g h)
instance
(SubstituteSym (m (Maybe a))) =>
SubstituteSym (MaybeT m a)
where
substituteSym :: forall b. TypedSymbol b -> Sym b -> MaybeT m a -> MaybeT m a
substituteSym TypedSymbol b
sym Sym b
val (MaybeT m (Maybe a)
v) = m (Maybe a) -> MaybeT m a
forall (m :: * -> *) a. m (Maybe a) -> MaybeT m a
MaybeT (m (Maybe a) -> MaybeT m a) -> m (Maybe a) -> MaybeT m a
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> m (Maybe a) -> m (Maybe a)
forall a b. SubstituteSym a => TypedSymbol b -> Sym b -> a -> a
substituteSym TypedSymbol b
sym Sym b
val m (Maybe a)
v
instance
(SubstituteSym (m (Either e a))) =>
SubstituteSym (ExceptT e m a)
where
substituteSym :: forall b. TypedSymbol b -> Sym b -> ExceptT e m a -> ExceptT e m a
substituteSym TypedSymbol b
sym Sym b
val (ExceptT m (Either e a)
v) = m (Either e a) -> ExceptT e m a
forall e (m :: * -> *) a. m (Either e a) -> ExceptT e m a
ExceptT (m (Either e a) -> ExceptT e m a)
-> m (Either e a) -> ExceptT e m a
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> m (Either e a) -> m (Either e a)
forall a b. SubstituteSym a => TypedSymbol b -> Sym b -> a -> a
substituteSym TypedSymbol b
sym Sym b
val m (Either e a)
v
deriving via
(Default (Sum f g a))
instance
(SubstituteSym (f a), SubstituteSym (g a)) =>
SubstituteSym (Sum f g a)
instance
(SubstituteSym (m (a, s))) =>
SubstituteSym (WriterLazy.WriterT s m a)
where
substituteSym :: forall b. TypedSymbol b -> Sym b -> WriterT s m a -> WriterT s m a
substituteSym TypedSymbol b
sym Sym b
val (WriterLazy.WriterT m (a, s)
v) = m (a, s) -> WriterT s m a
forall w (m :: * -> *) a. m (a, w) -> WriterT w m a
WriterLazy.WriterT (m (a, s) -> WriterT s m a) -> m (a, s) -> WriterT s m a
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> m (a, s) -> m (a, s)
forall a b. SubstituteSym a => TypedSymbol b -> Sym b -> a -> a
substituteSym TypedSymbol b
sym Sym b
val m (a, s)
v
instance
(SubstituteSym (m (a, s))) =>
SubstituteSym (WriterStrict.WriterT s m a)
where
substituteSym :: forall b. TypedSymbol b -> Sym b -> WriterT s m a -> WriterT s m a
substituteSym TypedSymbol b
sym Sym b
val (WriterStrict.WriterT m (a, s)
v) = m (a, s) -> WriterT s m a
forall w (m :: * -> *) a. m (a, w) -> WriterT w m a
WriterStrict.WriterT (m (a, s) -> WriterT s m a) -> m (a, s) -> WriterT s m a
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> m (a, s) -> m (a, s)
forall a b. SubstituteSym a => TypedSymbol b -> Sym b -> a -> a
substituteSym TypedSymbol b
sym Sym b
val m (a, s)
v
instance SubstituteSym a => SubstituteSym (Identity a) where
substituteSym :: forall b. TypedSymbol b -> Sym b -> Identity a -> Identity a
substituteSym TypedSymbol b
sym Sym b
val (Identity a
a) = a -> Identity a
forall a. a -> Identity a
Identity (a -> Identity a) -> a -> Identity a
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> a -> a
forall a b. SubstituteSym a => TypedSymbol b -> Sym b -> a -> a
substituteSym TypedSymbol b
sym Sym b
val a
a
instance SubstituteSym (m a) => SubstituteSym (IdentityT m a) where
substituteSym :: forall b. TypedSymbol b -> Sym b -> IdentityT m a -> IdentityT m a
substituteSym TypedSymbol b
sym Sym b
val (IdentityT m a
a) = m a -> IdentityT m a
forall {k} (f :: k -> *) (a :: k). f a -> IdentityT f a
IdentityT (m a -> IdentityT m a) -> m a -> IdentityT m a
forall a b. (a -> b) -> a -> b
$ TypedSymbol b -> Sym b -> m a -> m a
forall a b. SubstituteSym a => TypedSymbol b -> Sym b -> a -> a
substituteSym TypedSymbol b
sym Sym b
val m a
a
instance SubstituteSym (Sym a) where
substituteSym :: forall b. TypedSymbol b -> Sym b -> Sym a -> Sym a
substituteSym TypedSymbol b
sym (Sym Term b
val) (Sym Term a
x) =
Term b -> (SupportedPrim b => Sym a) -> Sym a
forall t a. Term t -> (SupportedPrim t => a) -> a
introSupportedPrimConstraint Term b
val ((SupportedPrim b => Sym a) -> Sym a)
-> (SupportedPrim b => Sym a) -> Sym a
forall a b. (a -> b) -> a -> b
$
Term a -> (SupportedPrim a => Sym a) -> Sym a
forall t a. Term t -> (SupportedPrim t => a) -> a
introSupportedPrimConstraint Term a
x ((SupportedPrim a => Sym a) -> Sym a)
-> (SupportedPrim a => Sym a) -> Sym a
forall a b. (a -> b) -> a -> b
$
Term a -> Sym a
forall a. Term a -> Sym a
Sym (Term a -> Sym a) -> Term a -> Sym a
forall a b. (a -> b) -> a -> b
$
TypedSymbol b -> Term b -> Term a -> Term a
forall a b.
(SupportedPrim a, SupportedPrim b) =>
TypedSymbol a -> Term a -> Term b -> Term b
substTerm TypedSymbol b
sym Term b
val Term a
x