We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
diff --git a/rosette/solver/smt/bitwuzla.rkt b/rosette/solver/smt/bitwuzla.rkt index d5026c8..4b0a725 100644 --- a/rosette/solver/smt/bitwuzla.rkt +++ b/rosette/solver/smt/bitwuzla.rkt @@ -16,7 +16,7 @@ (provide (rename-out [make-bitwuzla bitwuzla]) bitwuzla? bitwuzla-available?) (define-runtime-path bitwuzla-path (build-path ".." ".." ".." "bin" "bitwuzla")) -(define bitwuzla-opts '("-m" "-i")) +(define bitwuzla-opts '("-m" "--pp-elim-extracts")) (define (bitwuzla-available?) (not (false? (base/find-solver "bitwuzla" bitwuzla-path #f))))
I eliminated -i, since this option is not supported in my Bitwuzla. It's unclear how it has been working for you...
-i
The text was updated successfully, but these errors were encountered:
Remove -i; add --pp-elim-extracts
5ede43c
See gussmith23/lakeroad#329 Co-authored-by: Sorawee Porncharoenwase <sorawee.pwase@gmail.com>
Added in emina/rosette#260
Sorry, something went wrong.
No branches or pull requests
I eliminated
-i
, since this option is not supported in my Bitwuzla. It's unclear how it has been working for you...The text was updated successfully, but these errors were encountered: