Changeset 376:5c12f3515452 in lemon-0.x for src/work/jacint
- Timestamp:
- 04/22/04 18:07:17 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@506
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/jacint/preflowproba.h
r374 r376 41 41 */ 42 42 43 #ifndef HUGO_PREFLOW_ H44 #define HUGO_PREFLOW_ H43 #ifndef HUGO_PREFLOW_PROBA_H 44 #define HUGO_PREFLOW_PROBA_H 45 45 46 46 #define H0 20 … … 56 56 typename CapMap=typename Graph::EdgeMap<T>, 57 57 typename FlowMap=typename Graph::EdgeMap<T> > 58 class Preflow {58 class PreflowProba { 59 59 60 60 typedef typename Graph::Node Node; … … 79 79 80 80 public: 81 Preflow (Graph& _G, Node _s, Node _t, CapMap& _capacity,81 PreflowProba(Graph& _G, Node _s, Node _t, CapMap& _capacity, 82 82 FlowMap& _flow, bool _constzero, bool _res ) : 83 83 G(_G), s(_s), t(_t), capacity(_capacity), flow(_flow), constzero(_constzero), res(_res) {} … … 683 683 } //namespace hugo 684 684 685 #endif //PREFLOW_ H686 687 688 689 685 #endif //PREFLOW_PROBA_H 686 687 688 689
Note: See TracChangeset
for help on using the changeset viewer.