Aleph-w  1.5a.2
Biblioteca general de algoritmos y estructuras de datos
 Todo Clases Archivos Funciones Variables 'typedefs' Enumeraciones Amigas Grupos Páginas
Johnson.H
1 # ifndef JOHNSON_H
2 # define JOHNSON_H
3 
4 # include <Dijkstra.H>
5 # include <Bellman_Ford.H>
6 
7 
8  template <class GT,
9  class Distance = Dft_Dist<GT>,
10  class SA = Dft_Show_Arc<GT>>
11 class Jhonson
12 {
13 
14 
15  void
16  compute_ratio_and_diameter(Distance_Type & ratio, Node * rsrc, Node * rtgt,
17  Distance_Type & diameter, Node * dsrc, Node * dtgt)
18  {
19 
20  }
21 
22 
23 public:
24 
25 };
26 
27 
28 # endif // JOHNSON_H
Definition: Johnson.H:11
Definition: tpl_graph.H:634
Definition: tpl_graph_utils.H:2291

Leandro Rabindranath León