diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-27 22:42:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-27 22:42:55 +0800 |
commit | 5faa60e8834b5302f8d58f719c6962ed3affb50f (patch) | |
tree | 8d463a692f32811f1b5c4f98676b1f778c8c1afc /libsolidity/formal/SolverInterface.h | |
parent | c633ebe2e6abb9799458c5e1730bd8919232f916 (diff) | |
parent | b356f6a7f9e4fcdfa0f7df2e938ad735d231e599 (diff) | |
download | dexon-solidity-5faa60e8834b5302f8d58f719c6962ed3affb50f.tar dexon-solidity-5faa60e8834b5302f8d58f719c6962ed3affb50f.tar.gz dexon-solidity-5faa60e8834b5302f8d58f719c6962ed3affb50f.tar.bz2 dexon-solidity-5faa60e8834b5302f8d58f719c6962ed3affb50f.tar.lz dexon-solidity-5faa60e8834b5302f8d58f719c6962ed3affb50f.tar.xz dexon-solidity-5faa60e8834b5302f8d58f719c6962ed3affb50f.tar.zst dexon-solidity-5faa60e8834b5302f8d58f719c6962ed3affb50f.zip |
Merge pull request #4593 from ethereum/smt_timeout
Set query timeout in SMT
Diffstat (limited to 'libsolidity/formal/SolverInterface.h')
-rw-r--r-- | libsolidity/formal/SolverInterface.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libsolidity/formal/SolverInterface.h b/libsolidity/formal/SolverInterface.h index 16796684..a6d65ce2 100644 --- a/libsolidity/formal/SolverInterface.h +++ b/libsolidity/formal/SolverInterface.h @@ -231,8 +231,11 @@ public: /// is available. Throws SMTSolverError on error. virtual std::pair<CheckResult, std::vector<std::string>> check(std::vector<Expression> const& _expressionsToEvaluate) = 0; -}; +protected: + // SMT query timeout in milliseconds. + static int const queryTimeout = 10000; +}; } } |