ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/outil/src/hypergraphlib_dijkstra.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_Dijkstra.h
File size: 415 byte(s)
Log Message:

File Contents

# User Rev Content
1 foucault 27 #ifndef DIJKSTRA_H
2     #define DIJKSTRA_H
3    
4     #include <set>
5     #include <vector>
6     #include <map>
7    
8     #include "HypergraphLib_Graph.h"
9    
10     namespace HypergraphLib {
11    
12     double HYPERGRAPHLIB_ITEM Dijkstra(Graph * __G, Node * source, Node * destination, double (* distanceFunc) (HypergraphLib::Node*, HypergraphLib::Node*, HypergraphLib::Arc*), std::vector<Node *> & pathNodes, std::vector<Arc*> & pathArcs);
13    
14     }
15    
16     #endif