module CacheSim.Model exposing (..) import CacheSim.Raw exposing (..) type alias Model = { rawHierarchy : RawCacheModelHierarchy } type alias Flags = () type Msg = ChangeRawModel Int (RawCacheModel -> RawCacheModel) | CreateRawModel | DeleteRawModel Int