mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add CallbackKind and use it for the SMT solver
This commit is contained in:
committed by
Alex Beregszaszi
parent
0201ff5a02
commit
ddc478e3e4
@@ -22,9 +22,13 @@ using namespace dev;
|
||||
using namespace langutil;
|
||||
using namespace dev::solidity;
|
||||
|
||||
ModelChecker::ModelChecker(ErrorReporter& _errorReporter, map<h256, string> const& _smtlib2Responses):
|
||||
m_bmc(m_context, _errorReporter, _smtlib2Responses),
|
||||
m_chc(m_context, _errorReporter, _smtlib2Responses),
|
||||
ModelChecker::ModelChecker(
|
||||
ErrorReporter& _errorReporter,
|
||||
map<h256, string> const& _smtlib2Responses,
|
||||
ReadCallback::Callback const& _smtCallback
|
||||
):
|
||||
m_bmc(m_context, _errorReporter, _smtlib2Responses, _smtCallback),
|
||||
m_chc(m_context, _errorReporter, _smtlib2Responses, _smtCallback),
|
||||
m_context()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user