ignoring eps files

This commit is contained in:
elvis
2023-08-26 20:15:02 +02:00
parent 8fcbdb788e
commit 24566d7002
3 changed files with 2 additions and 0 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.eps -linguist-detectable

Binary file not shown.

View File

@ -350,6 +350,7 @@ The structure of the implementation with native C++ threads is as follows:
\end{algorithmic} \end{algorithmic}
\end{algorithm} \end{algorithm}
The threadpool is implemented in the \texttt{threadPool.hpp} and \texttt{threadPool.cpp} files. The threadpool is implemented in the \texttt{threadPool.hpp} and \texttt{threadPool.cpp} files.
Since for each element the work is equivalent, the $\Delta$ used in the lambda function is simply the total number of rows divided by the number of workers, such that each worker has only one job and all jobs are roughly equal in time. Since for each element the work is equivalent, the $\Delta$ used in the lambda function is simply the total number of rows divided by the number of workers, such that each worker has only one job and all jobs are roughly equal in time.