Skip to content

Commit

Permalink
Merge pull request #453 from ethereum/fix-cvc5-incremental
Browse files Browse the repository at this point in the history
Fix cvc5 incremental use
  • Loading branch information
msooseth authored Feb 20, 2024
2 parents 9dc261e + de6ba30 commit ad2e70e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Traces now correctly perform source mapping to display contract details
- Event traces now correctly display indexed arguments and argument names
- JSON reading of foundry JSONs was dependent on locale and did not work with many locales.
- CVC5 needs `--incremental` flag to work properly in abstraction-refinement mode

## [0.52.0] - 2023-10-26

Expand Down
1 change: 1 addition & 0 deletions src/EVM/Solvers.hs
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ solverArgs solver timeout = case solver of
, "--produce-models"
, "--print-success"
, "--interactive"
, "--incremental"
, "--tlimit-per=" <> mkTimeout timeout
]
Custom _ -> []
Expand Down

0 comments on commit ad2e70e

Please sign in to comment.