diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-06-18 10:09:56 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-06-18 10:09:56 +0200 |
commit | 62639875102decae2bb96b3847ae48db5d1f8fd0 (patch) | |
tree | 6972fc566103a08076abd445c0873102a1622dc0 /src/AST/Count.hs | |
parent | 2b00a57f565a42b1079a071e2db630ba22c7120d (diff) |
Complete pattern matches
Diffstat (limited to 'src/AST/Count.hs')
-rw-r--r-- | src/AST/Count.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/AST/Count.hs b/src/AST/Count.hs index 05be524..ca4d7ab 100644 --- a/src/AST/Count.hs +++ b/src/AST/Count.hs @@ -136,6 +136,7 @@ occCountGeneral onehot unpush alter many = go WId EWith _ _ a b -> re a <> re1 b EAccum _ _ _ a _ b e -> re a <> re b <> re e EZero _ _ e -> re e + EDeepZero _ _ e -> re e EPlus _ _ a b -> re a <> re b EOneHot _ _ _ a b -> re a <> re b EError{} -> mempty |