mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #12741 from david-k/develop
[Doc] Fix leftover use of divModWithSlacks
This commit is contained in:
commit
7c91dd05a7
@ -410,12 +410,13 @@ Input Description
|
|||||||
"source1.sol": ["contract1"],
|
"source1.sol": ["contract1"],
|
||||||
"source2.sol": ["contract2", "contract3"]
|
"source2.sol": ["contract2", "contract3"]
|
||||||
},
|
},
|
||||||
// Choose whether division and modulo operations should be replaced by
|
// Choose how division and modulo operations should be encoded.
|
||||||
// multiplication with slack variables. Default is `true`.
|
// When using `false` they are replaced by multiplication with slack
|
||||||
// Using `false` here is recommended if you are using the CHC engine
|
// variables. This is the default.
|
||||||
|
// Using `true` here is recommended if you are using the CHC engine
|
||||||
// and not using Spacer as the Horn solver (using Eldarica, for example).
|
// and not using Spacer as the Horn solver (using Eldarica, for example).
|
||||||
// See the Formal Verification section for a more detailed explanation of this option.
|
// See the Formal Verification section for a more detailed explanation of this option.
|
||||||
"divModWithSlacks": true,
|
"divModNoSlacks": false,
|
||||||
// Choose which model checker engine to use: all (default), bmc, chc, none.
|
// Choose which model checker engine to use: all (default), bmc, chc, none.
|
||||||
"engine": "chc",
|
"engine": "chc",
|
||||||
// Choose which types of invariants should be reported to the user: contract, reentrancy.
|
// Choose which types of invariants should be reported to the user: contract, reentrancy.
|
||||||
|
Loading…
Reference in New Issue
Block a user