ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/outil/src/HypergraphLib_FindCycles.h
Revision: 27
Committed: Thu Jul 5 15:26:40 2007 UTC (17 years, 10 months ago) by foucault
Content type: text/plain
Original Path: magic/lib/outil/outil/src/HypergraphLib_FindCycles.h
File size: 432 byte(s)
Log Message:

File Contents

# User Rev Content
1 foucault 27 #ifndef FINDCYCLES_H
2     #define FINDCYCLES_H
3    
4    
5     #include <map>
6     #include <vector>
7    
8     namespace HypergraphLib{
9    
10    
11     class Graph;
12     class Node;
13    
14    
15    
16     HYPERGRAPHLIB_ITEM void dfsCycle(Node *__n, std::vector < Node * > & __depthFirstSearchNodes, std::vector < std::vector < Node * > > & cycle);
17     HYPERGRAPHLIB_ITEM void
18     FindCycles(Graph * __G, std::vector < std::vector < Node * > > & cycles);
19     }
20    
21     #endif//FINDCYCLES_H