diff options
Diffstat (limited to 'report/report.tex')
| -rw-r--r-- | report/report.tex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/report/report.tex b/report/report.tex index b88d247..277acaa 100644 --- a/report/report.tex +++ b/report/report.tex @@ -254,12 +254,15 @@ Below is a detailed explanation of some of the more interesting functions. \texttt{// Pointer to file data in $p$ and}\\ \texttt{// length of that data in $n$.}\\ $p,n\leftarrow$ create\_file\_buffer($f$)\\ + \\ \texttt{// Pointer to pairwise data in $p$}\\ \texttt{// and number of pairs in $n$}\\ $p,n\leftarrow$ make\_pairwise\_data($p,n$)\\ + \\ \texttt{// Allocate space for final array,}\\ \texttt{// and save pointer in $A$}\\ $A\leftarrow$ allocate($8n$)\\ + \\ \texttt{// Put memmory address of pair $i$}\\ \texttt{// at index $i$ in $A$}\\ \textbf{for } $i\leftarrow 0$\textbf{ to }$n-1$\textbf{ do}\\ |