Skip to content
Snippets Groups Projects
Commit e3902142 authored by Simon Marlow's avatar Simon Marlow
Browse files

reduce the parallelism depth, to avoid creating too many sparks

parent aed5cc3f
No related branches found
No related tags found
No related merge requests found
......@@ -195,7 +195,7 @@ main = do
-- sequential, append-list of results
2 -> print $ lenA $ payA arg coins1 []
-- parallel, append-list of results
3 -> print $ lenA $ payA_par 4 arg coins1 []
3 -> print $ lenA $ payA_par 3 arg coins1 []
4 -> print $ length (pay 0 arg coins [])
5 -> print $ length (pay1 0 arg coins1 (map (\(c,q) -> (c,0)) coins1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment