3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-19 12:23:38 +00:00

remove type annotation from var printing

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-09-19 20:02:41 -07:00
parent 2ec3b4090e
commit cb15473d5b

View file

@ -584,8 +584,8 @@ class smt2_printer {
string_buffer<> buf; string_buffer<> buf;
buf.append("(:var "); buf.append("(:var ");
buf.append(v->get_idx()); buf.append(v->get_idx());
buf.append(" "); //buf.append(" ");
buf.append(v->get_sort()->get_name().str().c_str()); //buf.append(v->get_sort()->get_name().str().c_str());
buf.append(")"); buf.append(")");
f = mk_string(m(), buf.c_str()); f = mk_string(m(), buf.c_str());
} }