mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:23:11 +02:00
23 lines
1019 B
TeX
23 lines
1019 B
TeX
\documentclass[12pt]{article}
|
|
|
|
\begin{document}
|
|
\section{Description of the used algorithm}
|
|
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
|
|
\section{Functional description of the application}
|
|
|
|
\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} |