COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
02/17/04 09:59:49 (20 years ago)
Author:
jacint
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@110
Message:

debuggolt valtozatok

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/jacint/preflow_push_max_flow.h

    r78 r83  
    33by jacint.
    44Runs a preflow push algorithm with the modification,
    5 that we do not push on Nodes with level at least n.
    6 Moreover, if a level gets empty, we.set all Nodes above that
     5that we do not push on nodes with level at least n.
     6Moreover, if a level gets empty, we set all nodes above that
    77level to level n. Hence, in the end, we arrive at a maximum preflow
    88with value of a max flow value. An empty level gives a minimum cut.
     
    1616T maxflow() : returns the value of a maximum flow
    1717
    18 NodeMap<Graph, bool> mincut(): returns a
     18NodeMap<bool> mincut(): returns a
    1919     characteristic vector of a minimum cut.
    2020*/
     
    5252  public:
    5353       
    54     preflow_push_max_flow(Graph& _G, NodeIt _s, NodeIt _t, typename Graph::EdgeMap<T>& _capacity) : G(_G), s(_s), t(_t), capacity(_capacity), mincutvector(_G, false) { }
     54    preflow_push_max_flow ( Graph& _G, NodeIt _s, NodeIt _t,
     55                            typename Graph::EdgeMap<T>& _capacity) :
     56      G(_G), s(_s), t(_t), capacity(_capacity), mincutvector(_G, false) { }
    5557
    5658
    5759    /*
    58       The run() function runs a modified version of the highest label preflow-push, which only
     60      The run() function runs a modified version of the
     61      highest label preflow-push, which only
    5962      finds a maximum preflow, hence giving the value of a maximum flow.
    6063    */
    6164    void run() {
    6265 
    63       typename Graph::EdgeMap<T> flow(G, 0);         //the flow value, 0 everywhere 
    64       typename Graph::NodeMap<int> level(G);         //level of Node
    65       typename Graph::NodeMap<T> excess(G);          //excess of Node
     66      typename Graph::EdgeMap<T> flow(G, 0);
     67      typename Graph::NodeMap<int> level(G);   
     68      typename Graph::NodeMap<T> excess(G);   
    6669           
    67       int n=G.nodeNum();                        //number of Nodes
     70      int n=G.nodeNum();                       
    6871      int b=n-2;
    69       /*b is a bound on the highest level of an active Node. In the beginning it is at most n-2.*/
    70      
    71       std::vector<int> numb(n);                                //The number of Nodes on level i < n.
    72 
    73       std::vector<std::stack<NodeIt> > stack(2*n-1);    //Stack of the active Nodes in level i.
    74 
    75 
     72      /*
     73        b is a bound on the highest level of an active Node.
     74        In the beginning it is at most n-2.
     75      */
     76     
     77      std::vector<int> numb(n);     //The number of Nodes on level i < n.
     78      std::vector<std::stack<NodeIt> > stack(2*n-1);   
     79      //Stack of the active Nodes in level i.
    7680
    7781      /*Reverse_bfs from t, to find the starting level.*/
    78 
    7982      reverse_bfs<Graph> bfs(G, t);
    8083      bfs.run();
     
    8689        }
    8790
    88       /*The level of s is fixed to n*/
    8991      level.set(s,n);
    9092
    91 
    9293      /* Starting flow. It is everywhere 0 at the moment. */
    93      
    94       for(OutEdgeIt i=G.template first<OutEdgeIt>(s); i.valid(); ++i)
     94      for(OutEdgeIt e=G.template first<OutEdgeIt>(s); e.valid(); ++e)
    9595        {
    96           NodeIt w=G.head(i);
    97           flow.set(i, capacity.get(i));
    98           stack[bfs.dist(w)].push(w);
    99           excess.set(w, capacity.get(i));
     96          if ( capacity.get(e) > 0 ) {
     97            NodeIt w=G.head(e);
     98            flow.set(e, capacity.get(e));
     99            stack[level.get(w)].push(w);
     100            excess.set(w, excess.get(w)+capacity.get(e));
     101          }
    100102        }
    101 
    102103
    103104      /*
    104105         End of preprocessing
    105106      */
    106 
    107107
    108108
     
    115115      while (b) {
    116116
    117         /*We decrease the bound if there is no active Node of level b.*/
     117        /*We decrease the bound if there is no active node of level b.*/
    118118        if (stack[b].empty()) {
    119119          --b;
Note: See TracChangeset for help on using the changeset viewer.