diff --git a/libsolutil/BooleanLP.cpp b/libsolutil/BooleanLP.cpp index bc1b8367c..f8ef0e6b7 100644 --- a/libsolutil/BooleanLP.cpp +++ b/libsolutil/BooleanLP.cpp @@ -202,7 +202,10 @@ void BooleanLPSolver::addAssertion(Expression const& _expr) else if (_expr.name == ">") addAssertion(_expr.arguments.at(1) < _expr.arguments.at(0)); else + { cout << "Unknown operator " << _expr.name << endl; + solAssert(false); + } }