A parallelized prime number generator written in C.
Go to file
Nicolás A. Ortega c8d1c095ba
Clarify.
2017-02-13 09:56:23 +01:00
build Initial commit. 2016-11-30 14:32:06 +01:00
cmake GMP is a new dependency. 2016-12-02 16:31:12 +01:00
src Append new primes to the end of a file. 2017-02-13 09:47:47 +01:00
.gitignore Enable documentation. 2016-12-14 16:08:11 +01:00
.gitlab-ci.yml Added OpenMP to CI. 2016-12-26 16:35:52 +01:00
astyle.cfg Initial commit. 2016-11-30 14:32:06 +01:00
AUTHORS.md Initial commit. 2016-11-30 14:32:06 +01:00
CHANGELOG Cleaned the code. 2017-02-02 19:53:29 +01:00
CMakeLists.txt Moving file I/O to own file. Everything works except export. 2016-12-26 18:50:51 +01:00
CONTRIBUTING.md Clarify. 2017-02-13 09:56:23 +01:00
Doxyfile Fixed something from the description 2016-12-14 16:14:37 +01:00
LICENSE Initial commit. 2016-11-30 14:32:06 +01:00
README.md Details... 2017-02-13 09:55:31 +01:00

Indivisible

build status

Indivisible is an optimized prime number generator written in C.

Building

There are multiple dependencies to install before compiling the project:

  • CMake
  • GMP
  • OpenMP

Once the dependencies are installed you can compile by running the following from the root directory of the project:

$ cd build/
$ cmake ..
$ make

To build a release build run cmake -DCMAKE_BUILD_TYPE=Release .. instead.

Contributing

If you would like to contribute to Indivisible then please read the contributing file before sending a patch or creating a merge request.

License

This project is licensed with the GNU GPLv3. Since it is an educational project I find it very important that all contributions continue to remain free/libre.