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/SymbolicBoolVariable.h | |
parent | af3300b86caee20efe9df4b75800f73d8f027a85 (diff) | |
download | dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.tar.gz dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.tar.zst dexon-solidity-ec39fdcb3c6b3d5eb07ea6768fb3926fe54dc47e.zip |
[SMTChecker] Refactoring types
Diffstat (limited to 'libsolidity/formal/SymbolicBoolVariable.h')
-rw-r--r-- | libsolidity/formal/SymbolicBoolVariable.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/formal/SymbolicBoolVariable.h b/libsolidity/formal/SymbolicBoolVariable.h index 33ac9061..3d735889 100644 --- a/libsolidity/formal/SymbolicBoolVariable.h +++ b/libsolidity/formal/SymbolicBoolVariable.h @@ -37,9 +37,9 @@ public: ); /// Sets the var to false. - void setZeroValue(int _seq); - /// Does nothing since the SMT solver already knows the valid values. - void setUnknownValue(int _seq); + void setZeroValue(); + /// Does nothing since the SMT solver already knows the valid values for Bool. + void setUnknownValue(); protected: smt::Expression valueAtSequence(int _seq) const; |