Open HyeongMee opened 9 years ago
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.
X=0; Y=X; X=1; // X=1, Y=0
X=0; X=1; Y=X; // X=1, Y=1
X=1; X=0; Y=X; // X=0, Y=0
Assignment asked you to prove the existence of possibility of specific cases.
Hi!
THANKS.......TT