diff options
author | chriseth <chris@ethereum.org> | 2018-04-05 22:07:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-05 22:07:07 +0800 |
commit | 4c50ed39d76c4bd96ed73f40077da2c3f6d13c35 (patch) | |
tree | 2187b2bb3f638d50708397f226b276a53c769bc7 /libsolidity/formal/SymbolicIntVariable.h | |
parent | 95b0589f7739ebfd0c1c9cde8a07332cba039296 (diff) | |
parent | 8d087d1889826271a78ce537b8d1a2ceb11574dd (diff) | |
download | dexon-solidity-4c50ed39d76c4bd96ed73f40077da2c3f6d13c35.tar dexon-solidity-4c50ed39d76c4bd96ed73f40077da2c3f6d13c35.tar.gz dexon-solidity-4c50ed39d76c4bd96ed73f40077da2c3f6d13c35.tar.bz2 dexon-solidity-4c50ed39d76c4bd96ed73f40077da2c3f6d13c35.tar.lz dexon-solidity-4c50ed39d76c4bd96ed73f40077da2c3f6d13c35.tar.xz dexon-solidity-4c50ed39d76c4bd96ed73f40077da2c3f6d13c35.tar.zst dexon-solidity-4c50ed39d76c4bd96ed73f40077da2c3f6d13c35.zip |
Merge pull request #3829 from ethereum/smt_remove_uf
[SMTChecker] Remove usage of UFs to access SSA vars
Diffstat (limited to 'libsolidity/formal/SymbolicIntVariable.h')
-rw-r--r-- | libsolidity/formal/SymbolicIntVariable.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libsolidity/formal/SymbolicIntVariable.h b/libsolidity/formal/SymbolicIntVariable.h index eb36b899..d591e8db 100644 --- a/libsolidity/formal/SymbolicIntVariable.h +++ b/libsolidity/formal/SymbolicIntVariable.h @@ -44,6 +44,9 @@ public: static smt::Expression minValue(IntegerType const& _t); static smt::Expression maxValue(IntegerType const& _t); + +protected: + smt::Expression valueAtSequence(int _seq) const; }; } |