#if __GLASGOW_HASKELL__ >= 707
#endif
module Numeric.AD.Jet
( Jet(..)
, headJet
, tailJet
, jet
) where
#ifndef MIN_VERSION_base
#define MIN_VERSION_base(x,y,z) 1
#endif
#if __GLASGOW_HASKELL__ < 710
import Control.Applicative
import Data.Foldable
import Data.Traversable
import Data.Monoid
#endif
import Data.Typeable
import Control.Comonad.Cofree
infixl 3 :-
data Jet f a = a :- Jet f (f a)
newtype Showable = Showable (Int -> String -> String)
instance Show Showable where
showsPrec d (Showable f) = f d
showable :: Show a => a -> Showable
showable a = Showable (`showsPrec` a)
instance (Functor f, Show (f Showable), Show a) => Show (Jet f a) where
showsPrec d (a :- as) = showParen (d > 3) $
showsPrec 4 a . showString " :- " . showsPrec 3 (fmap showable <$> as)
instance Functor f => Functor (Jet f) where
fmap f (a :- as) = f a :- fmap (fmap f) as
instance Foldable f => Foldable (Jet f) where
foldMap f (a :- as) = f a `mappend` foldMap (foldMap f) as
instance Traversable f => Traversable (Jet f) where
traverse f (a :- as) = (:-) <$> f a <*> traverse (traverse f) as
tailJet :: Jet f a -> Jet f (f a)
tailJet (_ :- as) = as
headJet :: Jet f a -> a
headJet (a :- _) = a
jet :: Functor f => Cofree f a -> Jet f a
jet (a :< as) = a :- dist (jet <$> as) where
dist :: Functor f => f (Jet f a) -> Jet f (f a)
dist x = (headJet <$> x) :- dist (tailJet <$> x)
#if __GLASGOW_HASKELL__ >= 707
deriving instance Typeable Jet
#else
instance Typeable1 f => Typeable1 (Jet f) where
typeOf1 tfa = mkTyConApp jetTyCon [typeOf1 (undefined `asArgsType` tfa)] where
asArgsType :: f a -> t f a -> f a
asArgsType = const
jetTyCon :: TyCon
#if MIN_VERSION_base(4,4,0)
jetTyCon = mkTyCon3 "ad" "Numeric.AD.Internal.Jet" "Jet"
#else
jetTyCon = mkTyCon "Numeric.AD.Internal.Jet.Jet"
#endif
#endif