Skip to content

Commit 5c1c334

Browse files
committed
SMT2 backend: add missing whitespace
This adds a missing whitespace in the SMT2 output. The SMT2 formula parses correctly without the whitespace, so this is cosmetic.
1 parent 7b19f1d commit 5c1c334

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/smt2/smt2_conv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4839,7 +4839,7 @@ void smt2_convt::find_symbols(const exprt &expr)
48394839

48404840
for(std::size_t i=0; i<tmp.operands().size(); i++)
48414841
{
4842-
out << "(assert (= (select " << id;
4842+
out << "(assert (= (select " << id << ' ';
48434843
convert_expr(from_integer(i, array_type.size().type()));
48444844
out << ") "; // select
48454845
convert_expr(tmp.operands()[i]);

0 commit comments

Comments
 (0)