mirror of
https://github.com/github/semantic.git
synced 2024-12-22 06:11:49 +03:00
Factor the calculation of the gram into the where clause.
This commit is contained in:
parent
d03ab55c23
commit
e162987c26
@ -68,7 +68,8 @@ pqGramDecorator :: Traversable f
|
||||
-> Cofree f (Record (Gram label ': fields)) -- ^ The decorated term.
|
||||
pqGramDecorator getLabel p q = cata algebra
|
||||
where algebra term = let label = getLabel term in
|
||||
cofree ((Gram (padToSize p []) (padToSize q (pure (Just label))) .: headF term) :< (`evalState` (siblingLabels (tailF term))) (for (tailF term) (assignLabels label)))
|
||||
cofree ((gram label .: headF term) :< (`evalState` (siblingLabels (tailF term))) (for (tailF term) (assignLabels label)))
|
||||
gram label = Gram (padToSize p []) (padToSize q (pure (Just label)))
|
||||
assignLabels :: label -> Cofree f (Record (Gram label ': fields)) -> State [Maybe label] (Cofree f (Record (Gram label ': fields)))
|
||||
assignLabels label a = case runCofree a of
|
||||
RCons gram rest :< functor -> do
|
||||
|
Loading…
Reference in New Issue
Block a user