diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-10-15 23:32:17 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-10-17 21:58:13 +0800 |
commit | ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e (patch) | |
tree | 01b86486f2cf8554d236a1b02cf728e9342bfb0a /libsolidity/formal/SymbolicIntVariable.h | |
parent | af3300b86caee20efe9df4b75800f73d8f027a85 (diff) | |
download | dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.tar dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.tar.gz dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.tar.bz2 dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.tar.lz dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.tar.xz dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.tar.zst dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.zip |
[SMTChecker] Refactoring types
Diffstat (limited to 'libsolidity/formal/SymbolicIntVariable.h')
-rw-r--r-- | libsolidity/formal/SymbolicIntVariable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/formal/SymbolicIntVariable.h b/libsolidity/formal/SymbolicIntVariable.h index 92eeb13d..3b0c0311 100644 --- a/libsolidity/formal/SymbolicIntVariable.h +++ b/libsolidity/formal/SymbolicIntVariable.h @@ -37,9 +37,9 @@ public: ); /// Sets the var to 0. - void setZeroValue(int _seq); + void setZeroValue(); /// Sets the variable to the full valid value range. - void setUnknownValue(int _seq); + void setUnknownValue(); static smt::Expression minValue(IntegerType const& _t); static smt::Expression maxValue(IntegerType const& _t); |