forked from a16z/halmos
-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
[pull] main from a16z:main #33
Merged
Merged
Commits on Mar 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1556374 - Browse repository at this point
Copy the full SHA 1556374View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8053b58 - Browse repository at this point
Copy the full SHA 8053b58View commit details
Commits on Mar 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 30c6bb7 - Browse repository at this point
Copy the full SHA 30c6bb7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f536c7 - Browse repository at this point
Copy the full SHA 4f536c7View commit details
Commits on Mar 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c2d1926 - Browse repository at this point
Copy the full SHA c2d1926View commit details
Commits on Mar 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f868681 - Browse repository at this point
Copy the full SHA f868681View commit details
Commits on Apr 11, 2024
-
feat: --solver-command lets user replace z3 invocations
This removes: - `--solver-subprocess` - `--solver-subprocess-command` - `--solver-fresh` (was unused AFAICT) This adds: - `--solver-command` with no default (meaning we run z3 in-process) - some prints about where SMT files are generated - auto-dumping of SMT files when invoking an external solver - a very crude way to determine if the external solver generated a valid model (instead of assuming it is valid, so that we still benefit from refinement) Before: ```sh $ halmos --root examples/simple --contract VaultTest --function check_mint -vvv --statistics [...] [FAIL] check_mint(uint256) (paths: 8, time: 282.15s (paths: 0.45s, models: 281.70s), bounds: []) ``` After: ```sh $ halmos --root examples/simple --contract VaultTest --function check_mint -vvv --statistics --solver-command="bitwuzla -m" [...] [FAIL] check_mint(uint256) (paths: 8, time: 19.69s (paths: 0.46s, models: 19.22s), bounds: []) ```
Configuration menu - View commit details
-
Copy full SHA for 3e160f5 - Browse repository at this point
Copy the full SHA 3e160f5View commit details
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.