ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/outil/src/hypergraphlib_dijkstra.h
Revision: 481
Committed: Tue Jan 28 16:10:58 2014 UTC (11 years, 3 months ago) by francois
Content type: text/plain
File size: 502 byte(s)
Log Message:
unification de la facon d'ecrire les fichiers tous en minuscules

File Contents

# User Rev Content
1 francois 283 #ifndef DIJKSTRA_H
2     #define DIJKSTRA_H
3    
4     #include <set>
5     #include <vector>
6     #include <map>
7    
8 francois 481 #include "hypergraphlib_graph.h"
9 francois 283
10     namespace HypergraphLib {
11     ///Calcule le chemin le plus court entre les noeuds a et b, selon la
12     ///fonction de co�t distanceFunc
13     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);
14    
15     }
16    
17     #endif