Talk:Concurrency demos/Zeta: Difference between revisions

From HaskellWiki
No edit summary
 
No edit summary
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)

Remi

I'm not sure: using strict application could speed things up I guess, but it's not a correctness problem, is it?

Mux