docs.rs failed to build yices2-0.1.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
yices2-0.1.4
Yices2
Low and high-level Rust bindings to the Yices2 SMT solver.
Example
Linear Real Arithmetic
use *;
BitVectors
use *;
Usage
You can add this crate to your project by running:
Or by adding this line to your Cargo.toml:
= { = "2.6.4" }
Features
By default, yices2 enables the ctor feature, which calls yices_init at program
initialization and yices_exit at program exit. If you'd like to disable this behavior,
you can use the default-features = false flag in your Cargo.toml.
= { = "2.6.4", = false }
Notes
This library is not thread safe, because the underlying Yices2 library is not thread
safe. Do not use this library in multithreaded code. To use in multi-threaded code,
create a separate process and submit requests to the solver running in that process or
disable the ctor feature and manage state yourself.