summaryrefslogtreecommitdiff
path: root/src/Interpreter/Rep.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Interpreter/Rep.hs')
-rw-r--r--src/Interpreter/Rep.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Interpreter/Rep.hs b/src/Interpreter/Rep.hs
index f84f4e7..be2a4cc 100644
--- a/src/Interpreter/Rep.hs
+++ b/src/Interpreter/Rep.hs
@@ -29,8 +29,7 @@ type family RepAc t where
RepAc (TPair a b) = IORef (Maybe (RepAc a, RepAc b))
RepAc (TEither a b) = IORef (Maybe (Either (RepAc a) (RepAc b)))
RepAc (TMaybe t) = IORef (Maybe (RepAc t))
- -- TODO: an empty array is invalid for a zero-dimensional array, so zero-dimensional arrays don't actually have an O(1) zero.
- RepAc (TArr n t) = IORef (Array n (RepAc t)) -- empty array is zero
+ RepAc (TArr n t) = IORef (Maybe (Array n (RepAc t)))
RepAc (TScal sty) = RepAcScal sty
RepAc (TAccum t) = TypeError (Text "RepAcSparse: Nested accumulators")