Changeset 921:818510fa3d99 in lemon-0.x for src/lemon/min_cost_flow.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/min_cost_flow.h
r910 r921 1 1 /* -*- C++ -*- 2 * src/ hugo/min_cost_flow.h - Part of HUGOlib, a generic C++ optimization library2 * src/lemon/min_cost_flow.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_MIN_COST_FLOW_H18 #define HUGO_MIN_COST_FLOW_H17 #ifndef LEMON_MIN_COST_FLOW_H 18 #define LEMON_MIN_COST_FLOW_H 19 19 20 20 ///\ingroup flowalgs … … 23 23 24 24 25 #include < hugo/dijkstra.h>26 #include < hugo/graph_wrapper.h>27 #include < hugo/maps.h>25 #include <lemon/dijkstra.h> 26 #include <lemon/graph_wrapper.h> 27 #include <lemon/maps.h> 28 28 #include <vector> 29 29 30 namespace hugo{30 namespace lemon { 31 31 32 32 /// \addtogroup flowalgs … … 37 37 /// 38 38 /// 39 /// The class \ref hugo::MinCostFlow "MinCostFlow" implements39 /// The class \ref lemon::MinCostFlow "MinCostFlow" implements 40 40 /// an algorithm for finding a flow of value \c k 41 41 /// having minimal total cost … … 252 252 ///@} 253 253 254 } //namespace hugo255 256 #endif // HUGO_MIN_COST_FLOW_H254 } //namespace lemon 255 256 #endif //LEMON_MIN_COST_FLOW_H
Note: See TracChangeset
for help on using the changeset viewer.