Command Line Interface (CLI)


CORELS is implemented in C++. Its source can be found at our public repo, along with further documentation for compiling and using it from the command line: https://github.com/nlarusstone/corels.

To get started, first download the repo:

git clone https://github.com/nlarusstone/corels.git

CORELS depends on gmp, mpfr, and libmpc. These must be installed on your system to compile CORELS. For instance, you can install them via homebrew:

brew install libmpc

The above code will install all three of the required libraries.

To compile, run make corels from the src/ directory


Python


We provide a Python binding for CORELS. To install it, simply run:

pip install corels

The code for the Python binding, along with more detailed installation instructions, can be found at: https://github.com/fingoldin/pycorels

Documentation for the python binding is hosted here.


R


We also provide an R binding, found here: https://cran.r-project.org/web/packages/corels/index.html. Instructions for downloading it and documentation are found at that link.