diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-01-10 16:46:46 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-01-10 16:46:46 +0100 |
commit | ef6d10c4980eaf0feeb8569bc983075cc023ad83 (patch) | |
tree | 4f82e80470706ecd53aa5ef0824479e357d6f0d7 /src/lib/eina_graph_private.h | |
parent | fb3483672193c2fc360d3c6e450dc051541556e5 (diff) | |
download | eina_graph-ef6d10c4980eaf0feeb8569bc983075cc023ad83.zip eina_graph-ef6d10c4980eaf0feeb8569bc983075cc023ad83.tar.gz |
add eina_graph supports directed graphs
Diffstat (limited to 'src/lib/eina_graph_private.h')
-rw-r--r-- | src/lib/eina_graph_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/eina_graph_private.h b/src/lib/eina_graph_private.h index 1925cf7..e8138a9 100644 --- a/src/lib/eina_graph_private.h +++ b/src/lib/eina_graph_private.h @@ -95,6 +95,7 @@ typedef struct _Eina_Graph { unsigned int vertices; unsigned int edges; + Eina_Bool directed; Eina_Array *adjs[]; } _Eina_Graph; |