packages feed

creatur 4.1.4 → 4.1.6

raw patch · 2 files changed

+4/−2 lines, 2 files

Files

creatur.cabal view
@@ -1,5 +1,5 @@ Name:              creatur-Version:           4.1.4+Version:           4.1.6 Stability:         experimental Synopsis:          Framework for artificial life experiments. Description:       A software framework for automating experiments
src/ALife/Creatur/Genetics/BRGCWord8.hs view
@@ -218,7 +218,9 @@  -- | Write a raw sequence of Word8 values to the genome putRawWord8s :: [Word8] -> Writer ()-putRawWord8s = mapM_ putRawWord8+putRawWord8s ys = do+  xs <- S.get+  S.put (xs ++ ys)  -- | Read a raw sequence of Word8 values from the genome getRawWord8s :: Int -> Reader (Either [String] [Word8])