Talk:Concurrency demos/Zeta

From HaskellWiki
Revision as of 14:01, 29 November 2006 by Mux (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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