diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-03-14 23:29:51 +0100 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-03-14 23:29:51 +0100 |
commit | fff6beda3523abce3d27037ea2fb020fce31f502 (patch) | |
tree | fbcfb97a8eb2366ec46e0612b4b308741a8b601e /src/CHAD/Accum.hs | |
parent | 137eaa13144c2599ac29da9ebd3af24ac1ce8968 (diff) |
Much process with accumulator revamp
Diffstat (limited to 'src/CHAD/Accum.hs')
-rw-r--r-- | src/CHAD/Accum.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CHAD/Accum.hs b/src/CHAD/Accum.hs index 14a1d3b..b61b5ff 100644 --- a/src/CHAD/Accum.hs +++ b/src/CHAD/Accum.hs @@ -12,7 +12,7 @@ makeAccumulators :: SList STy envPro -> Ex (Append (D2AcE envPro) env) t -> Ex e makeAccumulators SNil e = e makeAccumulators (t `SCons` envpro) e = makeAccumulators envpro $ - EWith ext (EZero ext t) e + EWith ext t (EZero ext t) e uninvertTup :: SList STy list -> STy core -> Ex env (InvTup core list) -> Ex env (TPair core (Tup list)) uninvertTup SNil _ e = EPair ext e (ENil ext) |