WUT_Computer_Science/report/report.tex

23 lines
1019 B
TeX
Raw Normal View History

2022-11-11 22:19:51 +01:00
\documentclass[12pt]{article}
\begin{document}
\section{Description of the used algorithm}
2022-11-25 23:38:53 +01:00
Sieve of Eratosthenes is used to find all prime numbers below certain limit. \\
It starts with number 2, which is the first prime number and marks all multiplies of this number (up to predefined limit) as not prime, those numbers will be later ignored \\
Then it takes next available number (3) and does the same thing \\
This is repeated until there are no more numbers below the limit which are neither prime nor crossed out \\
Then we return the list of all non-crossed out (prime) numbers
2022-11-11 22:19:51 +01:00
\section{Functional description of the application}
2022-11-25 23:38:53 +01:00
2022-11-11 22:19:51 +01:00
\subsection{Input data format}
\subsection{Output text on console}
\subsection{Format of output data}
\section{Description of designed code structure}
\subsection{Own implementation tests}
\paragraph{Comments}
\subsection{Reference tests}
\paragraph{Source of reference values}
\paragraph{Comparision with our implementation}
\paragraph{Comments}
\section{Tests}
\end{document}