I\'m trying to understand why we need all parts of the standard sample code:
a `par` b `pseq` a+b
Why won\'t the following be sufficient?
a `par` b `par` a+b
will evaluate a and b in parallel and returns a+b, yes.
However, the pseq there ensures both a and b are evaluated before a+b is.
See this link for more details on that topic.