diff options
Diffstat (limited to 'Practical1/report/report.tex')
-rw-r--r-- | Practical1/report/report.tex | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Practical1/report/report.tex b/Practical1/report/report.tex index 2172329..4b24662 100644 --- a/Practical1/report/report.tex +++ b/Practical1/report/report.tex @@ -1,9 +1,5 @@ \documentclass[10pt,a4paper]{article} -% textcomp package is not available everywhere, and we only need the Copyright symbol -% taken from http://tex.stackexchange.com/a/1677/23992 -\DeclareTextCommandDefault{\textregistered}{\textcircled{\check@mathfonts\fontsize\sf@size\z@\math@fontsfalse\selectfont R}} - \usepackage{fancyhdr} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0pt} @@ -48,6 +44,7 @@ \usepackage{algorithmic} \providecommand*{\algorithmautorefname}{Algorithm} +\renewcommand*{\sectionautorefname}{Section} \renewcommand*{\subsectionautorefname}{subsection} \renewcommand*{\subsubsectionautorefname}{subsection} @@ -70,7 +67,9 @@ \end{abstract} \section{Report organisation} -%todo +\autoref{sec:notation} will define the notation used throughout this report. In \autoref{sec:algorithm} I will describe the algorithm and argue its correctness. First we will discuss the basic structure in \autoref{sec:algorithm:basic-structure} through \ref{sec:algorithm:further-optimisations}. After that, we will discuss some helper functions in \autoref{sec:algorithm:helper-function}. + +When we have seen the algorithm, \autoref{sec:implementation} will go into details about its implementation in Java. \autoref{sec:analysis} will contain a complexity analysis, both time- and space-wise, of the algorithm and its Java implementation. \input{notation} \input{algorithm} |