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 fbe0625 commit 50868caCopy full SHA for 50868ca
src/xmllang/graphml.cpp
@@ -305,15 +305,15 @@ bool write_graphml(const graphmlt &src, std::ostream &os)
305
key.new_element("default").data="false";
306
}
307
308
- // <key attr.name="cyclehead" attr.type="boolean" for="edge"
+ // <key attr.name="cyclehead" attr.type="boolean" for="node"
309
// id="cyclehead">
310
// <default>false</default>
311
// </key>
312
{
313
xmlt &key = graphml.new_element("key");
314
key.set_attribute("attr.name", "cyclehead");
315
key.set_attribute("attr.type", "boolean");
316
- key.set_attribute("for", "edge");
+ key.set_attribute("for", "node");
317
key.set_attribute("id", "cyclehead");
318
319
key.new_element("default").data = "false";
0 commit comments