Add SMTLogicException

This commit is contained in:
Leonardo Alt
2020-05-20 12:55:19 +02:00
parent 7a91c9b971
commit 25de3975ce
11 changed files with 127 additions and 99 deletions
+1 -2
View File
@@ -17,7 +17,6 @@
#include <libsmtutil/Z3CHCInterface.h>
#include <liblangutil/Exceptions.h>
#include <libsolutil/CommonIO.h>
using namespace std;
@@ -48,7 +47,7 @@ Z3CHCInterface::Z3CHCInterface():
void Z3CHCInterface::declareVariable(string const& _name, SortPointer const& _sort)
{
solAssert(_sort, "");
smtAssert(_sort, "");
m_z3Interface->declareVariable(_name, _sort);
}