Tagged Questions
The memoize tag has no wiki summary.
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 ...
15
votes
5answers
2k views
How do you make a generic memoize function in Haskell?
I've seen the other post about this, but is there a clean way of doing this in Haskell?
As a 2nd part, can it also be done without making the function monadic?
7
votes
15answers
4k views
How do I write a generic memoize function?
I'm writing a function to find triangle numbers and the natural way to write it is recursively:
function triangle (x)
if x == 0 then return 0 end
return x+triangle(x-1)
end
But attempting to ...
6
votes
3answers
230 views
How to memoize **kwargs?
I haven't seen an established way to memoize a function that takes key-word arguments, i.e. something of type
def f(*args, **kwargs)
since typically a memoizer has a dict to cache results for a ...
4
votes
2answers
973 views
Python func_dict used to memoize; other useful tricks?
A Python function object has an attribute dictionary called func_dict which is visible from outside the function and is mutable, but which is not modified when the function is called. (I learned this ...
4
votes
2answers
233 views
Is the pickling process deterministic?
Does Pickle always produce the same output for a certain input value? I suppose there could be a gotcha when pickling dictionaries that have the same contents but different insert/delete histories. My ...
3
votes
1answer
662 views
Using rails presenters - memoizable getting deprecated in 3.1 - use ||= instead?
Issue: To avoid creating multiple objects or multiple queries when possible.
I am using Presenters with rails as a Best Practice.
I am following advice that says that it would be good to use "extend ...
2
votes
4answers
162 views
What does the term “memoize” imply?
Comparing the terms "memoize" and "cache" and in reading Wikipedia's memoization entry, do people agree that using the term "memoize" implies
The memoized result is kept in the process' memory; in ...
2
votes
3answers
467 views
How to cache objects store them for multiple requests?
I am using Ruby on Rails and I need to store a search result set obtained by connecting to another server. The problem is I don't want to store the result set in the session and I want something where ...
2
votes
5answers
615 views
Two argument Memoization
In C# how do I memoize a function with two arguments?
Do I have to curry before memoization?
Wes Dyer wrote the Memoization code I typically use, but now I need two arguments
1
vote
1answer
62 views
Memoize implementation using eval. Is this use of eval acceptable?
...or are there better ways to implement a Memoization?
Function.memoize = function(callableAsString)
{
var r = false, callable, code;
try
{
callable = ...
1
vote
2answers
133 views
What's a simple way to design a memoization system with limited memory?
I am writing a manual computation memoization system (ugh, in Matlab). The straightforward parts are easy:
A way to put data into the memoization system after performing a computation.
A way to ...
1
vote
2answers
1k views
Loading a model into a half-edge data structure from a .PLY file
I am attempting to build a .PLY parser to load 3d models stored as .ply files into a half edge data structure mesh.
Sorry for the huge question, I'm very verbose and I wanted to make sure I laid out ...
0
votes
1answer
17 views
Getting Error with memoized_finder method
I trying to implement a memoized_finder method and I am getting an error that I don't understand.
My method follows:
class Module
def memoized_finder(name, conditions=nil)
class_eval <<-STR
...
0
votes
1answer
212 views
Memoizing tail call optimized recursive functions in F# [closed]
Possible Duplicate:
Combine memoization and tail-recursion
So the following is the code that I wrote, tail call optimized using an accumulation variable
let rec counter init count =
if ...
0
votes
1answer
87 views
Dynamic Image Caching
I have a CherryPy app that dynamically generates images, and those images are re-used a lot but generated each time. The image is generated from a querystring containing the variables, so the same ...