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

From HaskellWiki
Jump to navigation Jump to search
 
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