rustproof-libsmt

Rust bindings for z3 as utilized by RustProof.


Keywords
solver, smt, satisfiability, verification, z3
Licenses
Apache-2.0/MIT

Documentation

libsmt.rs

Build Status Coverage Status

Rust bindings for SMTLIB2

libsmt.rs allows developers to write and interact with SMT Solvers that conform to the SMTLIB2 Standard.

The current implementation supports Z3 as the default solver, however, it is trivial to use it with other solvers that accept input in the SMTLIB2 format.

Documentation

Some documentation exists here

Documentation will be written lazily. This will remain a task of least priority until the library is stable and robust. If you are interested in using this library and need some documentation, feel free to raise an issue and I'd be more than happy to help you out.

Usage Example

Usage examples are available in examples/

Todo

The current implementation does not expose the full power of SMT Solvers. Here are some items on our roadmap to complete this library:

  • Implement solver features like:

    • declare-const
    • define-fun
    • define-sort
    • declare-sort
  • Allow users to pass options to SMT Solvers

  • Improved Type Checking

However, features unexposed by the API can still be used through raw_read() and raw_write() that exposes the underlying solver directly.

Contributing

Contributions in form of suggestions, issues and (especially) pull requests are most welcome! Please follow the Rust Style of coding and ensure that tests are written while submitting a Pull Request.

License

Licensed under either of

at your option.

Contribution Notice

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.