Mercurial > hg > camir-ismir2012
diff toolboxes/graph_visualisation/share/graphviz/graphs/directed/alf.gv @ 0:cc4b1211e677 tip
initial commit to HG from
Changeset:
646 (e263d8a21543) added further path and more save "camirversion.m"
author | Daniel Wolff |
---|---|
date | Fri, 19 Aug 2016 13:07:06 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/toolboxes/graph_visualisation/share/graphviz/graphs/directed/alf.gv Fri Aug 19 13:07:06 2016 +0200 @@ -0,0 +1,32 @@ +digraph Alf { +size = "6,9"; +node [ shape = record ]; +Decl [ label = "\n\nDecl|{name|access|decl_flags|extern_c_linkage}"]; +Nontype_decl [ label = "Nontype_decl|{type}"]; +Defined_decl [ label = "Defined_decl|{linkage}"]; +Data_decl [ label = "Data_decl|{storage_class}"]; +Function_decl [ label = "Function_decl|{formals|defaults}"]; +Data [ label = "Data|{initializer}"]; +Function [ label = "Function|{body}"]; +Constructor [ label = "Constructor|{member_initializers}"]; +Aggregate -> Type_decl ; +Class -> Aggregate; +Union -> Aggregate; +Data -> Data_decl; +Data -> Defn; +Data_decl -> Defined_decl; +Data_member -> Nontype_decl ; +Defined_decl -> Nontype_decl; +Defn -> Defined_decl; +Enum -> Type_decl ; +Enumerator -> Nontype_decl ; +Function -> Defn; +Function -> Function_decl; +Constructor -> Function; +Destructor -> Function; +Function_decl -> Defined_decl; +Nontype_decl -> Decl ; +Template_type_arg -> Type_decl ; +Type_decl -> Decl ; +Typedef -> Type_decl ; +}