remove generic reference

This commit is contained in:
Rowan Torbitzky-Lane 2025-02-01 22:34:31 -06:00
parent 8c95f3ac06
commit 153e560801

View File

@ -4,7 +4,6 @@ module State where
import Control.Lens hiding (elements)
import Data.Map qualified as Map
import GHC.Generics
-- The exec stack must store heterogenous types,
-- and we must be able to detect that type at runtime.
@ -75,7 +74,7 @@ data State = State
_parameter :: [Gene],
_input :: Map.Map String Gene
}
deriving (Show, Eq, Generic)
deriving (Show, Eq)
emptyState :: State
emptyState =