CacheSim/src/CacheSim/Model.elm

12 lines
275 B
Elm

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