mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
use z3
This commit is contained in:
parent
4ace0ed82c
commit
1cc485bf72
@ -24,6 +24,7 @@
|
||||
|
||||
#include <libsmtutil/SMTPortfolio.h>
|
||||
#include <libsmtutil/Helpers.h>
|
||||
#include <libsmtutil/Z3Interface.h>
|
||||
|
||||
#include <libsolutil/CommonData.h>
|
||||
|
||||
@ -42,7 +43,8 @@ void ReasoningBasedSimplifier::run(OptimiserStepContext& _context, Block& _ast)
|
||||
{
|
||||
ReasoningBasedSimplifier simpl{_context.dialect};
|
||||
// Hack to inject the boolean lp solver.
|
||||
simpl.m_solver = make_unique<BooleanLPSolver>();
|
||||
//simpl.m_solver = make_unique<BooleanLPSolver>();
|
||||
simpl.m_solver = make_unique<Z3Interface>();
|
||||
simpl(_ast);
|
||||
}
|
||||
|
||||
|
@ -17,6 +17,14 @@
|
||||
//
|
||||
// {
|
||||
// let y := calldataload(0)
|
||||
// let t := calldataload(32)
|
||||
// if sgt(sub(y, 1), y) { if 1 { sstore(0, 1) } }
|
||||
// let sum := 0
|
||||
// let x := 0
|
||||
// for { } lt(x, y) { }
|
||||
// {
|
||||
// if 0 { }
|
||||
// if 0 { }
|
||||
// sum := calldataload(add(0x20, mul(x, 0x20)))
|
||||
// x := add(x, 1)
|
||||
// }
|
||||
// sstore(0, sum)
|
||||
// }
|
||||
|
Loading…
Reference in New Issue
Block a user