CacheSim/src/CacheSim/Model.elm

12 lines
275 B
Elm
Raw Normal View History

2019-05-27 14:08:48 -07:00
module CacheSim.Model exposing (..)
import CacheSim.Raw exposing (..)
2019-05-27 14:08:48 -07:00
type alias Model =
{ rawHierarchy : RawCacheModelHierarchy
}
2019-05-27 14:08:48 -07:00
type alias Flags = ()
2019-05-28 19:37:22 -07:00
type Msg
= ChangeRawModel Int (RawCacheModel -> RawCacheModel)
| CreateRawModel
| DeleteRawModel Int