diff options
Diffstat (limited to 'src/lib/eina_graph_private.h')
-rw-r--r-- | src/lib/eina_graph_private.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/eina_graph_private.h b/src/lib/eina_graph_private.h index 36cfa09..4eaf4d0 100644 --- a/src/lib/eina_graph_private.h +++ b/src/lib/eina_graph_private.h @@ -111,4 +111,13 @@ typedef struct _Eina_Graph_DFS unsigned int *edge_to; } _Eina_Graph_DFS; +typedef struct _Eina_Graph_BFS +{ + unsigned int s; + unsigned int vertices; + Eina_Bool *marked; + unsigned int *edge_to; + unsigned int *dist_to; +} _Eina_Graph_BFS; + #endif /* _EINA_GRAPH_PRIVATE_H */ |