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 4b342f7 commit be5f194Copy full SHA for be5f194
src/solvers/refinement/string_refinement_util.cpp
@@ -398,7 +398,8 @@ void string_dependenciest::output_dot(std::ostream &stream) const
398
const auto node_to_string = [&](const nodet &n) { // NOLINT
399
std::stringstream ostream;
400
if(n.kind == nodet::BUILTIN)
401
- ostream << builtin_function_nodes[n.index].data->name() << n.index;
+ ostream << '"' << builtin_function_nodes[n.index].data->name() << '_'
402
+ << n.index << '"';
403
else
404
ostream << '"' << format(string_nodes[n.index].expr) << '"';
405
return ostream.str();
0 commit comments