Re[2]: [Haskell-cafe] Weak hashtable memoization code?

2005-09-15 Thread Bulat Ziganshin
Hello Simon, Tuesday, September 13, 2005, 7:42:52 PM, you wrote: SM There's the memo table implementation in the util package: SM hslibs/util/Memo.lhs. Note that this is scheduled for demolition in GHC SM 6.6. why? -- Best regards, Bulatmailto:[EMAIL PROTECTED]

RE: Re[2]: [Haskell-cafe] Weak hashtable memoization code?

2005-09-15 Thread Simon Marlow
On 15 September 2005 13:44, Bulat Ziganshin wrote: Hello Simon, Tuesday, September 13, 2005, 7:42:52 PM, you wrote: There's the memo table implementation in the util package: hslibs/util/Memo.lhs. Note that this is scheduled for demolition in GHC 6.6. why? It doesn't perform very

RE: [Haskell-cafe] Weak hashtable memoization code?

2005-09-13 Thread Simon Marlow
On 28 August 2005 16:39, Bulat Ziganshin wrote: Hello David, Sunday, August 28, 2005, 4:19:07 PM, you wrote: Hi all, Does anyone have a nice bit of example code to implement memoization using weak pointers and hash tables? It would be nice to have a pre-packaged module that I could

[Haskell-cafe] Weak hashtable memoization code?

2005-08-28 Thread David Roundy
Hi all, Does anyone have a nice bit of example code to implement memoization using weak pointers and hash tables? It would be nice to have a pre-packaged module that I could just use, which has already been tested. The contents of Data.WeakPtr seem a bit lower-level than I'd rather work with. --

Re: [Haskell-cafe] Weak hashtable memoization code?

2005-08-28 Thread Bulat Ziganshin
Hello David, Sunday, August 28, 2005, 4:19:07 PM, you wrote: DR Hi all, DR Does anyone have a nice bit of example code to implement memoization using DR weak pointers and hash tables? It would be nice to have a pre-packaged DR module that I could just use, which has already been tested. The