aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/formal/SSAVariable.h
diff options
context:
space:
mode:
authorLeonardo Alt <leonardoaltt@gmail.com>2018-03-13 03:15:27 +0800
committerLeonardo Alt <leonardoaltt@gmail.com>2018-03-13 03:16:47 +0800
commit9b64dc501da5c743b948e4dca844a6cd67766be1 (patch)
treee324d1751243949f308d27c372670cf8e0e393f8 /libsolidity/formal/SSAVariable.h
parentc2d26eb6a20a21f5fe4b5d78a39f8c23f7f3f5cb (diff)
downloaddexon-solidity-9b64dc501da5c743b948e4dca844a6cd67766be1.tar
dexon-solidity-9b64dc501da5c743b948e4dca844a6cd67766be1.tar.gz
dexon-solidity-9b64dc501da5c743b948e4dca844a6cd67766be1.tar.bz2
dexon-solidity-9b64dc501da5c743b948e4dca844a6cd67766be1.tar.lz
dexon-solidity-9b64dc501da5c743b948e4dca844a6cd67766be1.tar.xz
dexon-solidity-9b64dc501da5c743b948e4dca844a6cd67766be1.tar.zst
dexon-solidity-9b64dc501da5c743b948e4dca844a6cd67766be1.zip
[SMTChecker_Bool] Fix PR review comments: method renaming and solAssert
Diffstat (limited to 'libsolidity/formal/SSAVariable.h')
-rw-r--r--libsolidity/formal/SSAVariable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/formal/SSAVariable.h b/libsolidity/formal/SSAVariable.h
index 7e2ebc8c..bf5dae3b 100644
--- a/libsolidity/formal/SSAVariable.h
+++ b/libsolidity/formal/SSAVariable.h
@@ -69,9 +69,9 @@ public:
void setUnknownValue();
/// So far Int and Bool are supported.
- static bool supportedType(Type::Category _category);
- static bool typeInteger(Type::Category _category);
- static bool typeBool(Type::Category _category);
+ static bool isSupportedType(Type::Category _category);
+ static bool isInteger(Type::Category _category);
+ static bool isBool(Type::Category _category);
private:
smt::Expression valueAtSequence(int _seq) const