Skip to main content

Platform-tagged wheels bundling the Yices 2 SMT solver (CLI + shared library)

Project description

yices-solver

Linux Build macOS Build Windows Build

A platform-tagged Python package bundling the Yices 2 SMT solver binaries, available on PyPI.

What is Yices?

Yices is a fast and open source SMT (Satistifiability Modulo Theories) solver, comparable to Z3, CVC5, Bitwuzla, etc.

SMT solvers are commonly used in software verification, bug finding, constraint solving and optimization.

For instance, a16z/halmos is a symbolic testing tool that uses SMT solvers such as Yices as a backend.

Why a yices-solver Python package?

Until now, there was no easy way for a Python application to require the Yices runtime. Users would typically be instructeed to install Yices separately or to build it from source. This package solves this, it is now possible to require installation of the Yices binaries directly:

# pyproject.toml

[project]
dependencies = [
    "yices-solver==2.6.5"
]

The dependency resolution mechanism will take care of resolving the appropriate version of the package to install given the current platform and architecture (e.g. Linux/x86, macOS/ARM, etc.).

Difference with the yices package

Note that this package only includes the binaries and not the Python bindings for yices. The Python bindings are released separately as the yices package on PyPI, published by the authors of Yices.

In summary:

  • yices-solver (this package): binaries and shared libraries only, no Python bindings
  • yices (published by SRI): Python bindings only, no binaries or shared libraries

Quick start

To use the solver interactively, we recommend using uv:

# this will:
# - create a virtual environment,
# - install yices-solver in it
# - make the binaries (e.g. yices-smt2) available on the PATH
uv tool install yices-solver

# check that the binary is available
yices-smt2 --version

# solve a simple smt2 query
echo "(set-logic QF_LIA) (declare-const x Int) (assert (< x 10)) (check-sat) (get-model)" | yices-smt2

Advanced usage

In projects

To install in a manually managed venv using pip:

python -m venv .venv
source .venv/bin/activate
python -m pip install "yices-solver~=2.6.5"

# check that the binary is available
yices --version

[!TIP] In order to keep the version number of this package and of yices in sync (e.g. version 2.6.5 of yices-solver should bundle version 2.6.5 of the Yices binaries), we use post-release tags when we make changes to the CI scripts. As a result, you should probably use a version specifier like "yices-solver~=2.6.5" to pick-up the latest post-release tag for the 2.6.5 version.

In scripts

You can also add it to your pyproject.toml as a dependency or inline as a script using a uv shebang:

#! /usr/bin/env uv run

# /// script
# requires-python = ">=3.12"
# dependencies = [
#   "yices-solver~=2.6.5",
# ]
# ///

import subprocess

# this should print the location the yices binary installed inside the temporary venv
subprocess.run(["which", "yices-smt2"])

# this should invoke the yices binary as an external process and print `sat`
subprocess.run(
    ['yices-smt2'],
    input='(set-logic QF_LIA) (declare-const x Int) (assert (> x 0)) (check-sat)',
    text=True
)

With the Python bindings

Support is experimental and needs to be documented, but it should be possible to:

  • install both yices and yices-solver
  • locate the lib/ directory in the venv
  • overwrite the dynamic library loading path (e.g. DYLD_LIBRARY_PATH on macOS)
  • import yices such that libyices loads properly and the API can be used normally

How this works

Build process

We publish 4 wheels:

  • yices_solver-x.y.z-py3-none-manylinux_2_28_x86_64.whl
  • yices_solver-x.y.z-py3-none-macosx_13_0_x86_64.whl
  • yices_solver-x.y.z-py3-none-macosx_14_0_arm64.whl
  • yices_solver-x.y.z-py3-none-win_amd64.whl

The Linux and macOS wheels are:

  • built from source with the appropriate Yices tag (meaning that yices_solver-x.y.z should package the binaries for Yices tag x.y.z)
  • with MCSAT support enabled
  • statically linked against libcudd, libpoly and GMP

The Windows wheel is not built from source, we extract the official Yices release binaries and repackage them as a wheel. A build from source on Windows would be a welcome contribution!

We try to make the publishing process as transparent and secure as possible, which is why we use Trusted Publishing.

The build scripts can be found here:

Installation

When you install the yices-solver package (e.g. with pip), the resolver should pick the right wheel for your OS and architecture. The macOS/Linux wheels are organized like this:

yices_solver-x.y.z
├── yices_solver
│   └── lib
│       ├── libyices.2.dylib /
│       └── libyices.a
├── yices_solver-x.y.z.data
│   └── data
│       └── bin
│           ├── yices
│           ├── yices-sat
│           ├── yices-smt
│           └── yices-smt2
└── yices_solver-x.y.z.dist-info
    ├── METADATA
    ├── RECORD
    ├── WHEEL
    ├── licenses
    │   └── LICENSE
    └── top_level.txt

And similarly, the Windows wheel:

yices_solver-x.y.z-py3-none-win_amd64
├── yices_solver
│   └── lib
│       └── libyices.dll
├── yices_solver-x.y.z.data
│   └── data
│       └── Scripts
│           ├── yices-sat.exe
│           ├── yices-smt.exe
│           ├── yices-smt2.exe
│           └── yices.exe
└── yices_solver-x.y.z.dist-info
    ├── licenses
    │   └── LICENSE
    ├── METADATA
    ├── RECORD
    ├── top_level.txt
    └── WHEEL

As a result, when the wheels are installed in a virtual environment, the binaries should be placed under <venv>/bin (resp. <venv>\Scripts) and available in PATH.

License

The yices-solver package is a binary distribution of Yices with no modifications to the source code, and inherits the GPL-3.0 license of Yices itself.

Acknowledgements

Yices is developed independently by the Computer Science Laboratory at SRI International (https://yices.csl.sri.com/), all credits go to the developers and contributors.

Please refer to the Yices manual for questions about usage, issues, bug reports, etc.

Disclaimer

This code is being provided as is. No guarantee, representation or warranty is being made, express or implied, as to the safety or correctness of the code. It has not been audited and as such there can be no assurance it will work as intended, and users may experience delays, failures, errors, omissions or loss of transmitted information. Nothing in this repo should be construed as investment advice or legal advice for any particular facts or circumstances and is not meant to replace competent counsel. It is strongly advised for you to contact a reputable attorney in your jurisdiction for any questions or concerns with respect thereto. a16z is not liable for any use of the foregoing, and users should proceed with caution and use at their own risk. See a16z.com/disclosures for more info.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

yices_solver-2.6.4.post23-py3-none-win_amd64.whl (5.8 MB view details)

Uploaded Python 3Windows x86-64

yices_solver-2.6.4.post23-py3-none-manylinux_2_28_x86_64.whl (10.4 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ x86-64

yices_solver-2.6.4.post23-py3-none-macosx_14_0_arm64.whl (6.1 MB view details)

Uploaded Python 3macOS 14.0+ ARM64

yices_solver-2.6.4.post23-py3-none-macosx_13_0_x86_64.whl (6.5 MB view details)

Uploaded Python 3macOS 13.0+ x86-64

File details

Details for the file yices_solver-2.6.4.post23-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for yices_solver-2.6.4.post23-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 61e069b2eb9661258c13fe7e329f5032f49495e0982919497f405a9d248b00c0
MD5 f330f06eceff45454a169948d6e40a4e
BLAKE2b-256 a4d4caca504bbb8f594c50a512f13191e7755001c91f9e280031004dfd2d380b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yices_solver-2.6.4.post23-py3-none-win_amd64.whl:

Publisher: release.yml on a16z/yices-solver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yices_solver-2.6.4.post23-py3-none-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yices_solver-2.6.4.post23-py3-none-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 daf6c2ea0930a2aa961046050a072ab3b385981b8272c0638a48d628d9e3e3fe
MD5 ec5480acb9693224b12dd86ca27768ad
BLAKE2b-256 021dc48c39209127d1b9720d17f4170f651d5f3e0528bd4727858b2ec716d76b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yices_solver-2.6.4.post23-py3-none-manylinux_2_28_x86_64.whl:

Publisher: release.yml on a16z/yices-solver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yices_solver-2.6.4.post23-py3-none-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for yices_solver-2.6.4.post23-py3-none-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 979e6644de090269f89e8c0a2286b8eaf38df00773d1832cf42861928c140cac
MD5 29e31c36b125569c097f5242738568f6
BLAKE2b-256 41badcb298619def25f4835ff81e399682a0e90b9d76df10c62a1991afc1d82b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yices_solver-2.6.4.post23-py3-none-macosx_14_0_arm64.whl:

Publisher: release.yml on a16z/yices-solver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yices_solver-2.6.4.post23-py3-none-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for yices_solver-2.6.4.post23-py3-none-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 29b9cc6ea05555ff3f5814c63bf50e902de9150c647250ab30f175bfedfb8551
MD5 72560ecdd69494074ade6a7800bd0249
BLAKE2b-256 f63646235c685c4ee7c1f40b0363aab04690a89e4997dee4838df86383e8298e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yices_solver-2.6.4.post23-py3-none-macosx_13_0_x86_64.whl:

Publisher: release.yml on a16z/yices-solver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page