![]() |
OASIS
Open Algebra Software
|
Credit: Mansi Panwar for artwork
OASIS is an open-source, cross-platform C++23 library for symbolic computation in computer algebra. It runs entirely offline and automatically sets up all its dependencies, providing a seamless experience for developers. OASIS empowers users to perform symbolic computations with ease and flexibility—ideal for building scientific applications.
Computer algebra focuses on symbolic computation**—manipulating mathematical expressions symbolically rather than approximating their numerical solutions. Unlike **numerical methods, which produce approximate numeric results (e.g., approximating π as 3.14159), computer algebra returns exact symbolic results (e.g., leaving π as π). This makes computer algebra especially valuable in domains requiring high precision, like theoretical physics, higher mathematics, and symbolic calculus.
The OASIS project uses CMake to configure, build, and manage dependencies. Below are step-by-step instructions for building the library:
OASIS provides several configuration options to customize the build:
OASIS_BUILD_IO
**: Build extra modules for input/output serialization (default: OFF
).OASIS_BUILD_TESTS
**: Enable unit tests with Catch2 (default: ON
).OASIS_BUILD_WITH_COVERAGE
**: Enable code coverage instrumentation (Clang only, default: OFF
).OASIS_BUILD_PARANOID
**: Treat warnings as errors (default: OFF
).OASIS_BUILD_CLI
**: Build the command-line interface for OASIS (default: OFF
).OASIS_BUILD_JS
**: Build WebAssembly bindings with Emscripten (default: OFF
).For example, to enable the CLI and IO modules:
You can easily integrate OASIS into your project using CMake's FetchContent
. Here's how you can set it up:
CMakeLists.txt
main.cpp
)We welcome contributions! Whether you're fixing a bug, implementing a new feature, or improving documentation, feel free to submit a pull request. Check out the contributing guide for details.
Get started with OASIS today and unleash the power of computer algebra in your applications!