Personal tools

Talk:Concurrency demos/Zeta

From HaskellWiki

(Difference between revisions)
Jump to: navigation, search
Current revision (19:45, 29 November 2006) (edit) (undo)
 
Line 9: Line 9:
[[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?
+
You're right, I've changed the code in the example, thanks!
[[User:Mux|Mux]]
[[User:Mux|Mux]]

Current revision

Shouldn't

forkIO (putMVar mvar (zetaRange s range))

be

forkIO (putMVar mvar $! zetaRange s range)

Remi

You're right, I've changed the code in the example, thanks!

Mux