Move modelCheckerSettings out of settings in StandardCompiler

This commit is contained in:
Leonardo Alt
2020-10-19 10:39:06 +01:00
parent 6c9db334c6
commit b67ade5163
7 changed files with 30 additions and 16 deletions
@@ -7,8 +7,8 @@
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\npragma experimental SMTChecker;\ncontract C { function f(uint x) public pure { assert(x > 0); } }"
}
},
"settings":
"modelCheckerSettings":
{
"modelCheckerEngine": "all"
"engine": "all"
}
}
@@ -7,8 +7,8 @@
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\npragma experimental SMTChecker;\ncontract C { function f(uint x) public pure { assert(x > 0); } }"
}
},
"settings":
"modelCheckerSettings":
{
"modelCheckerEngine": "bmc"
"engine": "bmc"
}
}
@@ -7,8 +7,8 @@
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\npragma experimental SMTChecker;\ncontract C { function f(uint x) public pure { assert(x > 0); } }"
}
},
"settings":
"modelCheckerSettings":
{
"modelCheckerEngine": "chc"
"engine": "chc"
}
}
@@ -7,8 +7,8 @@
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\npragma experimental SMTChecker;\ncontract C { function f(uint x) public pure { assert(x > 0); } }"
}
},
"settings":
"modelCheckerSettings":
{
"modelCheckerEngine": "none"
"engine": "none"
}
}