You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SRI LibPoly is a C library for manipulating polynomials. The target applications
are symbolic reasoning engines, such as SMT solvers, that need to reason about
polynomial constraints. It is research software under development, so the
features and the API might change rapidly.
Prerequisites
To compile on an Ubuntu machine you can install the prerequisites with
sudo apt-get install gcc cmake make libgmp-dev python2.7-dev python-sympy
To compile on a Mac you can install the prerequisites with
Python (and sympy) is not necessary and is used for testing the library
through the Python bindings (these are also useful for playing with the library).
Compiling
To compile and install perform
cd build
cmake .. -DCMAKE_BUILD_TYPE=$type -DCMAKE_INSTALL_PREFIX=$prefix
make
make install
The $type above is should be either "Debug" or "Release", and $prefix is the
target directory where the library will be installed. The prefix can be
omitted, in which case the library will be installed in the default system
location (such as /usr/local).
If the tests are enabled, you can do a sanity check of the library by doing a
make check.
The most up-to-date build instructions can be seen by looking at our CI
build script .github/workflows/ci.yml.
Python bindings
CMake will pick up the default python available in your shell. If you'd like to
force a different version you can use the Python_ADDITIONAL_VERSIONS variable.
For example, to use Python3 you can configure the project with
cmake .. -DPython_ADDITIONAL_VERSIONS=3
Python Version Skew
On some platforms (i.e. Mac) cmake picks different python installations for the headers and library. If this happens,
you might try: