We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3af6711 commit ad036c3Copy full SHA for ad036c3
src/goto-programs/graphml_witness.cpp
@@ -141,7 +141,9 @@ std::string graphml_witnesst::convert_assign_rec(
141
exprt clean_rhs=assign.rhs();
142
remove_l0_l1(clean_rhs);
143
144
- std::string lhs = expr_to_string(ns, identifier, assign.lhs());
+ exprt clean_lhs = assign.lhs();
145
+ remove_l0_l1(clean_lhs);
146
+ std::string lhs = expr_to_string(ns, identifier, clean_lhs);
147
if(lhs.find('$')!=std::string::npos)
148
lhs="\\result";
149
0 commit comments