instance
Letable letName Grammar =>
Letable letName (OptimizeGrammar letName) where
- -- Disable useless call to 'optimizeGrammarNode'
+ -- Disable useless calls to 'optimizeGrammarNode'
-- where 'Def' or 'Ref' have no matching.
def n = OptimizeGrammar . def n . unOptimizeGrammar
ref r n = OptimizeGrammar (ref r n)
-- Branch Weakening Law
Branch b Empty Empty -> optimizeGrammarNode (b :*> Empty)
+ -- Pure merge optimisation
+ -- TODO: use trace to see why it's already handled by other laws
+ -- Pure x :<*> Pure y -> Pure (x Hask.:@ y)
-- Applicable Identity Law
Hask.Id :<$> x -> x
-- Flip const optimisation
Hask.Const :<$> p :<*> q -> p :<* q
-- Reassociation Law 1
(u :*> v) :<*> w -> optimizeGrammarNode (u :*> optimizeGrammarNode (v :<*> w))
- -- Pure merge optimisation (useless)
- -- Pure x :<*> Pure y -> Pure (x Hask.:@ y)
-- Interchange Law
u :<*> Pure x -> optimizeGrammarNode (Hask.Flip Hask.:@ (Hask.:$) Hask.:@ x :<$> u)
-- Right Absorption Law