Changeset 921:818510fa3d99 in lemon-0.x for src/lemon/suurballe.h
- Timestamp:
- 09/29/04 17:30:04 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1232
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/suurballe.h
r906 r921 1 1 /* -*- C++ -*- 2 * src/ hugo/suurballe.h - Part of HUGOlib, a generic C++ optimization library2 * src/lemon/suurballe.h - Part of LEMON, a generic C++ optimization library 3 3 * 4 4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport … … 15 15 */ 16 16 17 #ifndef HUGO_SUURBALLE_H18 #define HUGO_SUURBALLE_H17 #ifndef LEMON_SUURBALLE_H 18 #define LEMON_SUURBALLE_H 19 19 20 20 ///\ingroup flowalgs … … 23 23 24 24 25 #include < hugo/maps.h>25 #include <lemon/maps.h> 26 26 #include <vector> 27 #include < hugo/min_cost_flow.h>28 29 namespace hugo{27 #include <lemon/min_cost_flow.h> 28 29 namespace lemon { 30 30 31 31 /// \addtogroup flowalgs … … 35 35 /// of minimal total length 36 36 /// 37 /// The class \ref hugo::Suurballe implements37 /// The class \ref lemon::Suurballe implements 38 38 /// an algorithm for finding k edge-disjoint paths 39 39 /// from a given source node to a given target node in an … … 188 188 ///then the result here will be an empty path (\c j can be 0 as well). 189 189 /// 190 ///\param Path The type of the path structure to put the result to (must meet hugopath concept).190 ///\param Path The type of the path structure to put the result to (must meet lemon path concept). 191 191 ///\param p The path to put the result to 192 192 ///\param j Which path you want to get from the found paths (in a real application you would get the found paths iteratively) … … 211 211 ///@} 212 212 213 } //namespace hugo214 215 #endif // HUGO_SUURBALLE_H213 } //namespace lemon 214 215 #endif //LEMON_SUURBALLE_H
Note: See TracChangeset
for help on using the changeset viewer.