Fix various display issues

This commit is contained in:
Kiana Sheibani 2021-12-28 18:17:19 -05:00
parent ed1deaef5f
commit d323ca2988
2 changed files with 3 additions and 2 deletions

View file

@ -51,7 +51,7 @@ instance Distributive ToroidalSpace where
instance Representable ToroidalSpace where
type Rep ToroidalSpace = (Int, Int)
index (TS s) (i, j) = s ! j ! i
index (TS s) (i, j) = s ! i ! j
tabulate f = TS $ V.generate 100 (\x -> V.generate 100 $ \y -> f (x, y))
instance Space ToroidalSpace where