Difference between revisions of "Talk:Concurrency demos/Zeta"

From HaskellWiki
Jump to navigation Jump to search
 
Line 9: Line 9:
 
[[User:Remi|Remi]]
 
[[User:Remi|Remi]]
   
  +
You're right, I've changed the code in the example, thanks!
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]]
 
[[User:Mux|Mux]]

Latest revision as of 19:45, 29 November 2006

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