-
It is not clear from the example config shown in the README whether the SMT model checker configuration options are all This is what it is currently shown in the README: [profile.default.model_checker]
contracts = { 'src/Contract.sol' = [ 'Contract' ] }
engine = 'chc'
timeout = 10000
targets = [ 'assert' ] But there are other config options that are made up of multiple words, e.g. [profile.default.model_checker]
showUnproved = true Or like this? [profile.default.model_checker]
show_unproved = true I can't quite tell which way works because I am still grappling with the SMTChecker. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It turns out that the Update: thanks to GitHub user @wiasliaw, there is now support for |
Beta Was this translation helpful? Give feedback.
It turns out that the
showUnproved
setting is not even available yet. Foundry uses theModelCheckerSettings
struct defined inethers-rs
, which defines neithershow_unproved
orshowUnproved
.Update: thanks to GitHub user @wiasliaw, there is now support for
show_unproved
in theModelCheckerSetings
struct:gakonst/ethers-rs#2147