How do you make a generic memoize function in Haskell? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T01:38:49Z http://stackoverflow.com/feeds/question/141650 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/141650/how-do-you-make-a-generic-memoize-function-in-haskell 8 How do you make a generic memoize function in Haskell? Jonathan Tran 2008-09-26T20:08:49Z 2008-11-21T12:20:03Z <p>I've seen <a href="http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function">the other post about this</a>, but is there a clean way of doing this in Haskell?</p> <p>As a 2nd part, can it also be done without making the function monadic?</p> http://stackoverflow.com/questions/141650/how-do-you-make-a-generic-memoize-function-in-haskell/142269#142269 1 Answer by mattiast for How do you make a generic memoize function in Haskell? mattiast 2008-09-26T22:03:49Z 2008-09-26T22:03:49Z <p>If your arguments are going to be natural numbers, you can do simply:</p> <pre><code>memo f = let values = map f [0..] in \n -&gt; values !! n </code></pre> <p>However, that doesn't really help you with the stack overflowing, and it doesn't work with recursive calls. You can see some fancier solutions at <a href="http://www.haskell.org/haskellwiki/Memoization" rel="nofollow">http://www.haskell.org/haskellwiki/Memoization</a>.</p> http://stackoverflow.com/questions/141650/how-do-you-make-a-generic-memoize-function-in-haskell/142280#142280 2 Answer by Jonathan Tran for How do you make a generic memoize function in Haskell? Jonathan Tran 2008-09-26T22:06:16Z 2008-09-26T22:06:16Z <p>Doing a direct translation from the more imperative languages, I came up with this.</p> <pre><code>memoize :: Ord a =&gt; (a -&gt; IO b) -&gt; IO (a -&gt; IO b) memoize f = do r &lt;- newIORef Map.empty return $ \x -&gt; do m &lt;- readIORef r case Map.lookup x m of Just y -&gt; return y Nothing -&gt; do y &lt;- f x writeIORef r (Map.insert x y m) return y </code></pre> <p>But this is somehow unsatisfactory. Also, <a href="http://www.haskell.org/ghc/docs/latest/html/libraries/containers/Data-Map.html" rel="nofollow">Data.Map</a> constrains the parameter to be an instance of <a href="http://www.haskell.org/ghc/docs/latest/html/libraries/base/Data-Ord.html" rel="nofollow">Ord</a>.</p> http://stackoverflow.com/questions/141650/how-do-you-make-a-generic-memoize-function-in-haskell/169031#169031 2 Answer by wnoise for How do you make a generic memoize function in Haskell? wnoise 2008-10-03T21:48:27Z 2008-10-05T02:12:39Z <p>This largely follows <a href="http://www.haskell.org/haskellwiki/Memoization" rel="nofollow">http://www.haskell.org/haskellwiki/Memoization</a>.</p> <p>You want a function of type (a -> b). If it doesn't call itself, then you can just write a simple wrapper that caches the return values. The best way to store this mapping depends on what properties of a you can exploit. Ordering is pretty much a minimum. With integers you can construct an infinite lazy list or tree holding the values.</p> <pre><code>type Cacher a b = (a -&gt; b) -&gt; a -&gt; b positive_list_cacher :: Cacher Int b positive_list_cacher f n = (map f [0..]) !! n </code></pre> <p>or</p> <pre><code>integer_list_cacher :: Cacher Int b integer_list_cacher f n = (map f (interleave [0..] [-1, -2, ..]) !! index n where index n | n &lt; 0 = 2*abs(n) - 1 index n | n &gt;= 0 = 2 * n </code></pre> <p>So, suppose it is recursive. Then you need it to call not itself, but the memoized version, so you pass that in instead:</p> <pre><code>f_with_memo :: (a -&gt; b) -&gt; a -&gt; b f_with_memo memoed base = base_answer f_with_memo memoed arg = calc (memoed (simpler arg)) </code></pre> <p>The memoized version is, of course, what we're trying to define.</p> <p>But we can start by creating a function that caches its inputs:</p> <p>We could construct one level by passing in a function that creates a structure that caches values. Except we need to create the version of f that <em>already has</em> the cached function passed in.</p> <p>Thanks to laziness, this is no problem:</p> <pre><code>memoize cacher f = cached where cached = cacher (f cached) </code></pre> <p>then all we need is to use it: </p> <pre><code>exposed_f = memoize cacher_for_f f </code></pre> <p>The article gives hints as to how to use a type class selecting on the input to the function to do the above, rather than choosing an explicit caching function. This can be really nice -- rather than explicitly constructing a cache for each combination of input types, we can implicitly combine caches for types a and b into a cache for a function taking a and b.</p> <p>One final caveat: using this lazy technique means the cache never shrinks, it only grows. If you instead use the IO monad, you can manage this, but doing it wisely depends on usage patterns.</p> http://stackoverflow.com/questions/141650/how-do-you-make-a-generic-memoize-function-in-haskell/308594#308594 3 Answer by luqui for How do you make a generic memoize function in Haskell? luqui 2008-11-21T12:20:03Z 2008-11-21T12:20:03Z <p>The package data-memocombinators on hackage provides lots of reusable memoization routines. The basic idea is:</p> <pre><code>type Memo a = forall r. (a -&gt; r) -&gt; (a -&gt; r) </code></pre> <p>I.e. it can memoize any function from a. The module then provides some primitives (like <code>unit :: Memo ()</code> and <code>integral :: Memo Int</code>), and combinators for building more complex memo tables (like <code>pair :: Memo a -&gt; Memo b -&gt; Memo (a,b)</code> and <code>list :: Memo a -&gt; Memo [a]</code>).</p>