added todo in report

This commit is contained in:
Claudio Maggioni 2023-05-10 18:12:26 +02:00
parent 2317899fca
commit 649dacc521
2 changed files with 10 additions and 2 deletions

Binary file not shown.

View File

@ -151,12 +151,20 @@ The body of the model is structured in the following way:
\begin{minted}{c}
init {
{ /* array initialization */ }
{ /* sequential reverser algorithm */ }
{ /* parallel reverser algorithm */ }
/* sequential reverser algorithm */
run SequentialReverser();
/* parallel reverser algorithm */
run ParallelReverser()
(done[0] == true && done[N] == true);
{ /* congruence check between reversers */ }
}
\end{minted}
{\color{red}TODO: FIX EXPLAINATION TO REFLECT USE OF PROCTYPE}
Each of the enumerated sections is surrounded by curly braces to emulate the
effect of locally scoped variables in procedures, which do not exist in
\textit{ProMeLa} aside the concurrency emulating \texttt{proctype} construct.