Tagged Questions

In computing, memoization is an optimization technique used primarily to speed up computer programs by having function calls avoid repeating the calculation of results for previously-processed inputs.

learn more… | top users | synonyms

29
votes
3answers
991 views

When is memoization automatic in GHC Haskell?

I can't figure out why m1 is apparently memoized while m2 is not in the following: m1 = ((filter odd [1..]) !!) m2 n = ((filter odd [1..]) !! n) m1 10000000 takes about 1.5 seconds on the ...
24
votes
2answers
415 views

Memoization Libraries for C?

For a project I'm working on, there are a number of states where calculations can be relied upon to return the same results (and have no side effects). The obvious solution would be to use ...
22
votes
10answers
839 views

why memoization is not a language feature?

I was wondering... why memoization is not provided natively as a language feature by any language I know about? Edit: to clarify, what I mean is that the language provides a keyword to specify a ...
21
votes
4answers
1k views

How does Data.MemoCombinators work?

I've been looking at the source for Data.MemoCombinators but I can't really see where the heart of it is. Please explain to me what the logic is behind all of these combinators and the mechanics of ...
21
votes
12answers
845 views

What is memoization good for and is it really all that helpful?

There are a few automatic memoization libraries available on the internet for various different languages; but without knowing what they are for, where to use them, and how they work, it can be ...
18
votes
2answers
718 views

Memoization in Haskell?

Any pointers on how to solve efficiently the following function in Haskell, for large numbers (n > 108) f(n) = max(n,f(n/2)+f(n/3)+f(n/4)) I've seen examples of memoization in Haskell to solve ...
18
votes
4answers
2k views

What is memoization and how can I use it in Python?

I just started Python and I've got no idea what memoization is and how to use it. Also, may I have a simplified example?
15
votes
1answer
290 views

Options for caching / memoization / hashing in R

I am trying to find a simple way to use something like Perl's hash functions in R (essentially caching), as I intended to do both Perl-style hashing and write my own memoisation of calculations. ...
14
votes
4answers
837 views

Combine memoization and tail-recursion

Is it possible to combine memoization and tail-recursion somehow? I'm learning F# at the moment and understand both concepts but can't seem to combine them. Suppose I have the following memoize ...
13
votes
1answer
232 views

How is this memoized DP table too slow for SPOJ?

SPOILERS: I'm working on http://www.spoj.pl/problems/KNAPSACK/ so don't peek if you don't want a possible solution spoiled for you. The boilerplate: import Data.Sequence (index, fromList) import ...
13
votes
3answers
320 views

Functional languages & support for memoization

Do any of the current crop of popular functional languages have good support for memoization & if I was to pick one on the strength of its memoisation which would you recommend & why? Update: ...
13
votes
7answers
706 views

Haskell caching results of a function

I have a function that takes a parameter and produces a result. Unfortunately, it takes quite long for the function to produce the result. The function is being called quite often with the same input, ...
12
votes
4answers
442 views

How do I generate memoized recursive functions in Clojure?

I'm trying to write a function that returns a memoized recursive function in Clojure, but I'm having trouble making the recursive function see its own memoized bindings. Is this because there is no ...
12
votes
3answers
941 views

In Scala 2.8, what type to use to store an in-memory mutable data table?

Each time a function is called, if it's result for a given set of argument values is not yet memoized I'd like to put the result into an in-memory table. One column is meant to store a result, others ...
12
votes
4answers
533 views

Computing map: computing value ahead of time

I have a computing map (with soft values) that I am using to cache the results of an expensive computation. Now I have a situation where I know that a particular key is likely to be looked up within ...
11
votes
2answers
300 views

Is there an object-identity-based, thread-safe memoization library somewhere?

I know that memoization seems to be a perennial topic here on the haskell tag on stack overflow, but I think this question has not been asked before. I'm aware of several different 'off the shelf' ...
11
votes
2answers
350 views

Optimization of Function Calls in Haskell

Not sure what exactly to google for this question, so I'll post it directly to SO: Variables in Haskell are immutable Pure functions should result in same values for same arguments From these two ...
11
votes
5answers
642 views

Automatic memoizing in functional programming languages

I always thought that Haskell would do some sort of automatic intelligent memoizing. E.g., the naive Fibonacci implementation fib 0 = 0 fib 1 = 1 fib n = fib (n-2) + fib (n-1) would be fast because ...
10
votes
5answers
2k views

Efficient table for Dynamic Programming in Haskell

I've coded up the 0-1 Knapsack problem in Haskell. I'm fairly proud about the laziness and level of generality achieved so far. I start by providing functions for creating and dealing with a lazy 2d ...
10
votes
14answers
1k views

Should I use recursion or memoization for an algorithm?

If I have a choice to use recursion or memoization to solve a problem which should I use? In other words if they are both viable solutions in that they give the correct output and can be reasonably ...
10
votes
9answers
1k views

How do I memoize a recursive function in Lisp?

I'm a Lisp beginner. I'm trying to memoize a recursive function for calculating the number of terms in a Collatz sequence (for problem 14 in Project Euler). My code as of yet is: (defun collatz-steps ...
9
votes
3answers
4k views

When to use memoization in Ruby on Rails

In mid July 2008 Memoization was added to Rails core. A demonstration of the usage is here. I have not been able to find any good examples on when methods should be memoized, and the performance ...
8
votes
2answers
362 views

What is difference between memoization and dynamic programming?

I think dynamic programming is subset of memoization. Is it right?
8
votes
2answers
203 views

Memoization Handler

Is it "good practice" to create a class like the one below that can handle the memoization process for you? The benefits of memoization are so great (in some cases, like this one, where it drops from ...
8
votes
4answers
743 views

Project Euler #14 and memoization in Clojure

As a neophyte clojurian, it was recommended to me that I go through the Project Euler problems as a way to learn the language. Its definitely a great way to improve your skills and gain confidence. I ...
8
votes
7answers
790 views

How to get optimization from a “pure function” in C#?

If I have the following function, it is considered pure in that it has no side effects and will always produce the same result given the same input x. public static int AddOne(int x) { return x + 1; ...
8
votes
3answers
819 views

Haskell function definition and caching arrays

I have a question about implementing caching (memoization) using arrays in Haskell. The following pattern works: f = (fA !) where fA = listArray... But this does not (the speed of the program ...
7
votes
5answers
302 views

Haskell style memoization in Java

I know this is heresy, but I tried to translate the examples from http://www.haskell.org/haskellwiki/Memoization to Java. So far I have: public abstract class F<A,B> { public abstract B f(A ...
7
votes
2answers
348 views

What is the lifetime of a memoized value in a functional language like Haskell?

In a pure functional language with lazy semantics (such as Haskell), results of computations are memoized so that further evaluations of a function with the same inputs do not recompute the value but ...
7
votes
3answers
1k views

In Ruby, should I use ||= or if defined? for memoization?

Should I use if defined? return @current_user_session if defined?(@current_user_session) @current_user_session = UserSession.find Or ||= @current_user_session ||= UserSession.find I noticed ...
6
votes
3answers
222 views

Is there any way to memoize a value in Haskell?

I have the following function in Haskell: memdb = -- load the contents of a database into memory as a Map And then I have the following line: map (\x -> memdb ! x) values I would like memdb ...
6
votes
4answers
265 views

Two parameter memoization in Haskell

I'm trying to memoize the following function: gridwalk x y | x == 0 = 1 | y == 0 = 1 | otherwise = (gridwalk (x - 1) y) + (gridwalk x (y - 1)) Looking at this I came up with the ...
6
votes
2answers
331 views

How do you initialize variables in Ruby?

Are there any differences between the following ways of initialization of variables? @var ||= [] @var = [] if @var.nil? @var = @var || [] Please share your way initializing a variable and state the ...
6
votes
5answers
1k views

Caching delegate results

I have a C# method which accepts a Predicate<Foo> and returns a list of matching items... public static List<Foo> FindAll( Predicate<Foo> filter ) { ... } The filter will ...
5
votes
7answers
153 views

In java, will the program “remember” the result if you call the same function for the second time?

This question came up when I was thinking about the algorithm to fast compute the power of a number, say compute x^n. In Java, the recursive part is something like: return power(x,n/2) * ...
5
votes
1answer
88 views

Memoization and typeclasses

To keep it simple, I'll use this contrived example class (the point is that we have some expensive data derived from the methods): class HasNumber a where getNumber :: a -> Integer getFactors ...
5
votes
3answers
165 views

Partial memoization in Haskell

I'm trying to find a good way to memoize a function for only part of its domain (non-negative integers) in Haskell, using Data.MemoCombinators. import Data.MemoCombinators --approach 1 partFib n | ...
5
votes
3answers
92 views

What is the difference between Caching and Memoization?

I would like to know what the actual difference between caching and memoization is. As i understand both involve avoiding repeated function calls to get data by storing it.So whats the difference ...
5
votes
1answer
188 views

Memoization in Haskell using premade data structures

I find this answer and this wiki page to be excellent introductions to memoization in Haskell. They do, however, still leave me with a question that I hope to get answered: It seems to me that the ...
5
votes
2answers
191 views

Numpy NdArray Memoization

I'm working on some fairly computational intensive calculations that deal with numpy matrices and ndarrays, and from some digging around, there are about a dozen ways not to implement memoization, ...
5
votes
1answer
106 views

How should I avoid memoization causing bugs in Ruby?

Is there a consensus on how to avoid memoization causing bugs due to mutable state? In this example, a cached result had its state mutated, and therefore gave the wrong result the second time it was ...
5
votes
3answers
769 views

C# Memoization of functions with arbitrary number of arguments

I'm trying to create a memoization interface for functions with arbitrary number of arguments, but I'm failing miserably I feel like my solution is not very flexible. I tried to define an interface ...
5
votes
5answers
653 views

Thread-safe memoization

Let's take Wes Dyer's approach to function memoization as the starting point: public static Func<A, R> Memoize<A, R>(this Func<A, R> f) { var map = new Dictionary<A, R>(); ...
5
votes
5answers
311 views

generic non-invasive cache wrapper

I'm trying create a class which adds functionality to a generic class, without directly interfacing with the wrapped class. A good example of this would be a smart pointer. Specifically, I'd like to ...
4
votes
3answers
76 views

Memoization, Interpreters, and Closures

So I'm experimenting, and have a programming language created in scheme. I've built an interpreter for it as well, which is most of the code below. I'd like to rewrite the interpreter so that it ...
4
votes
3answers
262 views

Speed-up and best practices: Using ets for per-module pre-computed data

((Please forgive me that I ask more than one question in a single thread. I think they are related.)) Hello, I wanted to know, what best practices exist in Erlang in regards to per-module precompiled ...
4
votes
4answers
98 views

iterate function not saving intermediate steps?

I just started learning Haskell, and as an exercise got into a Project Euler problem where Fibonacci numbers are summed. My current method is this function, which creates a new list with the next ...
4
votes
2answers
213 views

Reentrant caching of “referentially transparent” IO calls

Assume we have an IO action such as lookupStuff :: InputType -> IO OutputType which could be something simple such as DNS lookup, or some web-service call against a time-invariant data. Let's ...
4
votes
3answers
648 views

Python - anyone have a memoizing decorator that can handle unhashable arguments?

I've been using the following memoizing decorator (from the great book Python Algorithms: Mastering Basic Algorithms in the Python Language ... love it, btw). def memo(func): cache = {} @ ...
4
votes
2answers
284 views

Can I memoize a Python generator?

I have a function called runquery that makes calls to a database and then yields the rows, one by one. I wrote a memoize decorator (or more accurately, I just stole one from this stackoverflow ...

1 2 3