bitwuzla backend#3
Open
H4vC wants to merge 5 commits into
Open
Conversation
added 5 commits
June 29, 2026 08:23
Translate the validated wire IR to Bitwuzla via hand-written FFI bindings (0.9.1). Implements solve, model extraction, named unsat cores, and bit-hunt optimization behind the optional `bitwuzla` cargo feature.
build.rs fetches an upstream prebuilt Bitwuzla static zip per target triple (Linux/macOS/Windows-gnu) and a self-contained MSVC archive from the bitwuzla-msvc fork; resolves GMP/MPFR via pkg-config (upstream) or ships them statically (MSVC).
Add dedicated backend tests and plug BitwuzlaBackend into the phase2 duplicate-symbol/model and phase6 bit-hunt-optimize parametrized test lists.
Update README and architecture docs; add a per-OS bitwuzla CI job that builds with --features bitwuzla.
Drop the `bitwuzla` cargo feature: the backend now builds unconditionally like Z3/Binbit/Qfbvsmtrs (no opt-out, no `--features bitwuzla`). CI keeps GMP/MPFR in the rust job; the standalone bitwuzla job stays removed. README/architecture no longer call out a default or an opt-out.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
adds bitwuzla as a racer to smt-server