rustsat-cadical - Interface to the CaDiCaL SAT Solver for RustSAT
Armin Biere's SAT solver CaDiCaL to be used with the RustSAT library.
Note: at the moment this crate is known to not work on Windows since CaDiCaL is non-trivial to get to work on Windows.
Features
debug: if this feature is enabled, the Cpp library will be built with debug and check functionality if the Rust project is built in debug mode. API tracing via theCADICAL_API_TRACEenvironment variable is also enabled in debug mode.safe: disable writing throughpopenfor more safe usage of the library in applicationsquiet: exclude message and profiling code (logging too)logging: include logging code (but disabled by default)tracing: always include CaDiCaL API tracing via theCADICAL_API_TRACEenvironment variable and the [CaDiCaL::trace_api_calls] method
CaDiCaL Versions
CaDiCaL versions can be selected via cargo crate features. All CaDiCaL versions from Version 1.5.0 up to Version 2.2.1 are available. For the full list of versions and the changelog see the CaDiCaL releases.
Without any features selected, the newest version will be used. If conflicting CaDiCaL versions are requested, the newest requested version will be selected.
If the determined version is not the newest available, and no custom source directory is specified (see customization below), the CaDiCaL source code is downloaded at compile time, which requires network access.
Customization
In order to build a custom version of CaDiCaL, this crate supports two environment variables to customize the Cpp source code that CaDiCaL is built from.
CADICAL_PATCHESallows to specify a list of colon-separated paths to patch files that will be applied to the CaDiCaL source repository before building it. These patches are applied in order of appearance after the patches of this crate have been applied.CADICAL_SRC_DIRallows for overriding where the Cpp library is built from. By default this crate fetches the appropriate code from the GitHub repository. If this variable is set, the directory specified there is used instead. Note that when using this variable, the crate will not apply any patches, the user is responsible for applying the appropriate and necessary patches from thepatches/directory.
Cpp Compiler Features
By default, the build script of this crate uses the same compiler/platform tests as CaDiCaL's
configure script to detect whether certain Cpp compiler features are available.
The following environment variables allow for manually modifying the logic for detecting
compiler features.
CADICAL_RUN_CPP_TESTS: By default we only consider a compiler/platform feature available if the test compiles and runs. With this environment variable set to0orfalsea feature is considered available if the test compiles correctly, without trying to execute it. This is useful for cross-compilation settings where executing the compiled binary is not possible.CADICAL_FLEXIBLE_ARRAY_MEMBERSenables (1ortrue) or disables (0orfalse) or automatically checks (auto) the availability of the flexible array members compiler feature. Disabling the feature is equivalent to--no-flexiblein CaDiCaL'sconfigurescript.CADICAL_CLOSEFROMmarksclosefromas available (1ortrue) or unavailable (0orfalse) or automatically checks (auto) the availability. Disabling the feature is equivalent to--no-closefromin CaDiCaL'sconfigurescript.CADICAL_UNLOCKED_IOenables (1ortrue) or disables (0orfalse) or automatically checks (auto) the availability of the unlocked IO platform feature. Disabling the feature is equivalent to--no-unlockedin CaDiCaL'sconfigurescript.
By default, the availability of all compiler/platform features is automatically checked.
Minimum Supported Rust Version (MSRV)
Currently, the MSRV is 1.77.0, the plan is to always support an MSRV that is at least a year old.
Bumps in the MSRV will not be considered breaking changes. If you need a specific MSRV, make sure to pin a precise version of RustSAT.
Note that the specified minimum-supported Rust version only applies if the newest version of
CaDiCaL is build.
Older versions are pulled down via the git2 crate, which has
transitive dependencies that have a higher MSRV.
Compiling on Windows / Cross Compilation
Compiling this crate under Windows can be a bit challenging, but it can be done.
The challenges come from CaDiCaL relying on unix-specific features.
For starters, make sure to use the x86_64-pc-windows-gnu target triple.
Cross compilation for Windows can be achieved with the help of cargo zigbuild.
During cross compilation, make sure to set CADICAL_RUN_CPP_TESTS=0, since compiler tests
(compiled for Windows) can't be run on the non-Windows host system.
For a working Windows cross compilation setup example, see this CI
configuration.