We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81722c8 commit afcbe92Copy full SHA for afcbe92
src/goto-programs/graphml_witness.cpp
@@ -542,17 +542,6 @@ void graphml_witnesst::operator()(const symex_target_equationt &equation)
542
graphml[to].invariant_scope=
543
id2string(it->source.pc->source_location.get_function());
544
}
545
- else if(it->is_goto() &&
546
- it->source.pc->is_goto())
547
- {
548
- xmlt &val=edge.new_element("data");
549
- val.set_attribute("key", "sourcecode");
550
- exprt clean_cond=it->cond_expr;
551
- remove_l0_l1(clean_cond);
552
- const std::string cond=expr_to_string(ns, it->source.function, clean_cond);
553
- from_expr(ns, it->source.function, not_exprt(clean_cond));
554
- val.data="["+cond+"]";
555
- }
556
557
graphml[to].in[from].xml_node=edge;
558
graphml[from].out[to].xml_node=edge;
0 commit comments