You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I heard from professor that he had delayed the delay due of homework 10, 11, 12, but I can't find any official notice about that. Could you tell me where I can find a notice about it? (It's really delayed, right?)
What's the meaning of PAR .... END? paranthesis?
THANKS.......TT
The text was updated successfully, but these errors were encountered:
PAR c1 WITH c2 END is a parallel execution. It means executing two programs c1,c2 at the same time. However, you can't determine the execution order of two programs. For example, the parallel program
X=0;
Y=X;
WITH
X=1;
has multiple possible final results.
The following three cases are all feasible.
Hi!
THANKS.......TT
The text was updated successfully, but these errors were encountered: