Define withConstrained
This commit is contained in:
parent
83e4489e1f
commit
cd292d4580
@ -43,7 +43,7 @@ main =
|
|||||||
. runParser (parser isRealData <* eof) fp
|
. runParser (parser isRealData <* eof) fp
|
||||||
=<< T.readFile fp
|
=<< T.readFile fp
|
||||||
let (rs, os) =
|
let (rs, os) =
|
||||||
(lookupHList (fst . getCompose) &&& foldHListF ((\(Constrained x) -> HConsC x) . snd . getCompose) HNilC) $
|
(lookupHList (fst . getCompose) &&& foldHListF (flip withConstrained HConsC . snd . getCompose) HNilC) $
|
||||||
mapHListF (\(Compose (Fanout (f, Op o))) -> Compose $ (o &&& id) $ f input) parts
|
mapHListF (\(Compose (Fanout (f, Op o))) -> Compose $ (o &&& id) $ f input) parts
|
||||||
in pure (input, rs, os)
|
in pure (input, rs, os)
|
||||||
)
|
)
|
||||||
|
|||||||
@ -54,6 +54,7 @@ module Pre (
|
|||||||
(/\\),
|
(/\\),
|
||||||
nil,
|
nil,
|
||||||
Constrained (..),
|
Constrained (..),
|
||||||
|
withConstrained,
|
||||||
Fanout (..),
|
Fanout (..),
|
||||||
Length,
|
Length,
|
||||||
TestTree (..),
|
TestTree (..),
|
||||||
@ -160,10 +161,10 @@ sortPair (a, b) = if a <= b then (a, b) else (b, a)
|
|||||||
type PuzzleParts input = HListF (Compose (Fanout ((->) input) (Op Text)) (Constrained NFData))
|
type PuzzleParts input = HListF (Compose (Fanout ((->) input) (Op Text)) (Constrained NFData))
|
||||||
infixr 9 /\\
|
infixr 9 /\\
|
||||||
(/\\) :: (NFData output) => (input -> output, output -> Text) -> PuzzleParts input outputs -> PuzzleParts input (output : outputs)
|
(/\\) :: (NFData output) => (input -> output, output -> Text) -> PuzzleParts input outputs -> PuzzleParts input (output : outputs)
|
||||||
(/\\) (f, o) = HConsF $ Compose $ Fanout (Constrained . f, Op $ o . (.unwrap))
|
(/\\) (f, o) = HConsF $ Compose $ Fanout (Constrained . f, Op $ flip withConstrained o)
|
||||||
infixr 9 /\
|
infixr 9 /\
|
||||||
(/\) :: (Show output, NFData output) => (input -> output) -> PuzzleParts input outputs -> PuzzleParts input (output : outputs)
|
(/\) :: (Show output, NFData output) => (input -> output) -> PuzzleParts input outputs -> PuzzleParts input (output : outputs)
|
||||||
(/\) f = HConsF $ Compose $ Fanout (Constrained . f, Op $ T.show . (.unwrap))
|
(/\) f = HConsF $ Compose $ Fanout (Constrained . f, Op $ flip withConstrained T.show)
|
||||||
nil :: PuzzleParts input '[]
|
nil :: PuzzleParts input '[]
|
||||||
nil = HNilF
|
nil = HNilF
|
||||||
|
|
||||||
@ -209,7 +210,9 @@ lookupHList f = \case
|
|||||||
HConsF x xs -> maybe (f x) (lookupHList f xs) . unshift
|
HConsF x xs -> maybe (f x) (lookupHList f xs) . unshift
|
||||||
|
|
||||||
data Constrained c a where
|
data Constrained c a where
|
||||||
Constrained :: (c a) => {unwrap :: a} -> Constrained c a
|
Constrained :: (c a) => a -> Constrained c a
|
||||||
|
withConstrained :: Constrained c a -> ((c a) => a -> b) -> b
|
||||||
|
withConstrained (Constrained x) f = f x
|
||||||
|
|
||||||
newtype Fanout f g a = Fanout (f a, g a)
|
newtype Fanout f g a = Fanout (f a, g a)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user