Talk:Concurrency demos/Zeta
From HaskellWiki
(Difference between revisions)
| Line 8: | Line 8: | ||
</haskell> | </haskell> | ||
[[User:Remi|Remi]] | [[User:Remi|Remi]] | ||
| + | |||
| + | I'm not sure: using strict application could speed things up I guess, but it's not a correctness problem, is it? | ||
| + | |||
| + | [[User:Mux|Mux]] | ||
Revision as of 14:01, 29 November 2006
Shouldn't
forkIO (putMVar mvar (zetaRange s range))
be
forkIO (putMVar mvar $! zetaRange s range)
I'm not sure: using strict application could speed things up I guess, but it's not a correctness problem, is it?
