Changeset 921:818510fa3d99 in lemon-0.x for src/lemon/preflow.h
- Timestamp:
- 09/29/04 17:30:04 (19 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/preflow.h
r920 r921 1 1 /* -*- C++ -*- 2 * src/ hugo/preflow.h - Part of HUGOlib, a generic C++ optimization library2 * src/lemon/preflow.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_PREFLOW_H18 #define HUGO_PREFLOW_H17 #ifndef LEMON_PREFLOW_H 18 #define LEMON_PREFLOW_H 19 19 20 20 #include <vector> 21 21 #include <queue> 22 22 23 #include < hugo/invalid.h>24 #include < hugo/maps.h>23 #include <lemon/invalid.h> 24 #include <lemon/maps.h> 25 25 26 26 /// \file … … 28 28 /// Implementation of the preflow algorithm. 29 29 30 namespace hugo{30 namespace lemon { 31 31 32 32 /// \addtogroup flowalgs … … 45 45 ///setFlow. 46 46 /// 47 ///After running \ref hugo::Preflow::phase1() "phase1()"48 ///or \ref hugo::Preflow::run() "run()", the maximal flow47 ///After running \ref lemon::Preflow::phase1() "phase1()" 48 ///or \ref lemon::Preflow::run() "run()", the maximal flow 49 49 ///value can be obtained by calling \ref flowValue(). The minimum 50 50 ///value cut can be written into a <tt>bool</tt> node map by … … 811 811 812 812 }; 813 } //namespace hugo814 815 #endif // HUGO_PREFLOW_H816 817 818 819 813 } //namespace lemon 814 815 #endif //LEMON_PREFLOW_H 816 817 818 819
Note: See TracChangeset
for help on using the changeset viewer.