ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/outil/src/hypergraphlib_dfs.h
Revision: 1019
Committed: Tue Jun 4 21:16:50 2019 UTC (6 years ago) by francois
Content type: text/plain
File size: 329 byte(s)
Log Message:
restructuration de magic
outil est sorti de lib pour pouvoir etre utiliser en dehors de lib
template est merge avec outil
poly_occ et un sous projet de magic qui utilise le nouveau outil

File Contents

# User Rev Content
1 francois 283 #ifndef DFS_H
2     #define DFS_H
3    
4     #include <set>
5    
6     namespace HypergraphLib {
7    
8     class Graph;
9     class Node;
10    
11     /**
12     * Depth First Search Algorithm :
13     * given one start node, find all nodes that are connected to it
14     * and return them
15     */
16     void HYPERGRAPHLIB_ITEM dfs(Node *__n, std::set < Node * > & __depthFirstSearchNodes);
17     }
18    
19     #endif// DFS_H