File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -309,6 +309,20 @@ bool write_graphml(const graphmlt &src, std::ostream &os)
309
309
key.new_element (" default" ).data =" false" ;
310
310
}
311
311
312
+ // <key attr.name="cyclehead" attr.type="boolean" for="edge"
313
+ // id="cyclehead">
314
+ // <default>false</default>
315
+ // </key>
316
+ {
317
+ xmlt &key = graphml.new_element (" key" );
318
+ key.set_attribute (" attr.name" , " cyclehead" );
319
+ key.set_attribute (" attr.type" , " boolean" );
320
+ key.set_attribute (" for" , " edge" );
321
+ key.set_attribute (" id" , " cyclehead" );
322
+
323
+ key.new_element (" default" ).data = " false" ;
324
+ }
325
+
312
326
// <key attr.name="threadId" attr.type="string" for="edge" id="threadId"/>
313
327
// TODO: format for multi-threaded programs not defined yet
314
328
{
You can’t perform that action at this time.
0 commit comments