Move standard-json "modelCheckerSettings" key to "settings.modelChecker".

This commit is contained in:
Daniel Kirchner
2020-12-09 15:53:32 +01:00
parent 44b7301048
commit e691b7402a
15 changed files with 70 additions and 46 deletions
@@ -7,8 +7,11 @@
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\npragma experimental SMTChecker;\ncontract test {\nfunction f(uint x, uint y, uint k) public pure {\nrequire(k > 0); require(x % k == 0); require(y % k == 0); uint r = mulmod(x, y, k); assert(r % k == 0);}}"
}
},
"modelCheckerSettings":
"settings":
{
"timeout": 1000
"modelChecker":
{
"timeout": 1000
}
}
}