File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
kore/src/Kore/Step/Function Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import qualified Kore.Step.Function.Memo as Memo
12
12
13
13
module Kore.Step.Function.Memo
14
14
( Self (.. )
15
- , Key
15
+ , CacheKey
16
16
, Cache
17
17
, forgetful
18
18
, simple
@@ -61,10 +61,10 @@ forgetful :: Applicative monad => Self monad
61
61
forgetful = Self { recall = \ _ -> pure Nothing , record = \ _ _ -> pure () }
62
62
63
63
-- | The concrete function pattern used as a @Key@ into the memoization cache.
64
- type Key = Application Symbol (TermLike Concrete )
64
+ type CacheKey = Application Symbol (TermLike Concrete )
65
65
66
66
-- | The memoization @Cache@.
67
- type Cache = HashMap Key (TermLike Concrete )
67
+ type Cache = HashMap CacheKey (TermLike Concrete )
68
68
69
69
{- | The simple memoizer.
70
70
You can’t perform that action at this time.
0 commit comments