Skip to content

Commit

Permalink
Update libsmtutil/Z3Interface.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Kamil Śliwak <cameel2@gmail.com>
  • Loading branch information
pgebal and cameel committed Apr 16, 2024
1 parent fe4c531 commit 9bb6d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsmtutil/Z3Interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ z3::expr Z3Interface::toZ3Expr(Expression const& _expr)
else if (n == "tuple_constructor")
{
auto constructor = z3::func_decl(m_context, Z3_get_tuple_sort_mk_decl(m_context, z3Sort(*_expr.sort)));
smtAssert(constructor.arity() == arguments.size(), "");
smtAssert(constructor.arity() == arguments.size());
return constructor();
}
else
Expand Down

0 comments on commit 9bb6d16

Please sign in to comment.