added todo in report
This commit is contained in:
parent
2317899fca
commit
649dacc521
2 changed files with 10 additions and 2 deletions
BIN
report.pdf
BIN
report.pdf
Binary file not shown.
12
report.tex
12
report.tex
|
@ -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.
|
||||
|
|
Reference in a new issue