time comparison for bfs iterator and iterator by hand
authormarci
Wed, 21 Apr 2004 14:50:42 +0000
changeset 358caf183989ec4
parent 357 5165a1c8633e
child 359 8cc53a6b1e61
time comparison for bfs iterator and iterator by hand
src/work/marci/bfsit_vs_byhand.cc
src/work/marci/makefile
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/work/marci/bfsit_vs_byhand.cc	Wed Apr 21 14:50:42 2004 +0000
     1.3 @@ -0,0 +1,67 @@
     1.4 +// -*- c++ -*-
     1.5 +#include <iostream>
     1.6 +#include <fstream>
     1.7 +
     1.8 +#include <list_graph.h>
     1.9 +#include <smart_graph.h>
    1.10 +#include <dimacs.h>
    1.11 +#include <time_measure.h>
    1.12 +#include <for_each_macros.h>
    1.13 +#include <bfs_iterator.h>
    1.14 +
    1.15 +using namespace hugo;
    1.16 +
    1.17 +int main() {
    1.18 +  typedef ListGraph Graph; 
    1.19 +  typedef Graph::Node Node;
    1.20 +  typedef Graph::NodeIt NodeIt;
    1.21 +  typedef Graph::Edge Edge;
    1.22 +  typedef Graph::EdgeIt EdgeIt;
    1.23 +  typedef Graph::OutEdgeIt OutEdgeIt;
    1.24 +
    1.25 +  Graph G;
    1.26 +  Node s, t;
    1.27 +  Graph::EdgeMap<int> cap(G);
    1.28 +  readDimacsMaxFlow(std::cin, G, s, t, cap);
    1.29 +  Graph::NodeMap<OutEdgeIt> pred(G);
    1.30 +  Timer ts;
    1.31 +  {
    1.32 +    ts.reset();
    1.33 +    Graph::NodeMap<bool> reached(G);
    1.34 +    /*Reverse_bfs from t, to find the starting level.*/
    1.35 +    reached.set(s, true);
    1.36 +    pred.set(s, INVALID);
    1.37 +    std::queue<Node> bfs_queue;
    1.38 +    bfs_queue.push(t);
    1.39 +    while (!bfs_queue.empty()) {
    1.40 +      Node v=bfs_queue.front();	
    1.41 +      bfs_queue.pop();
    1.42 +      OutEdgeIt e;
    1.43 +      for(G.first(e,v); G.valid(e); G.next(e)) {
    1.44 +	Node w=G.head(e);
    1.45 +	if (!reached[w]) {
    1.46 +	  bfs_queue.push(w);
    1.47 +	  reached.set(w, true);
    1.48 +	  pred.set(w, e);
    1.49 +	}
    1.50 +      }
    1.51 +    }
    1.52 +
    1.53 +    std::cout << ts << std::endl;
    1.54 +  }
    1.55 +
    1.56 +  {
    1.57 +    ts.reset();      
    1.58 +    BfsIterator5< Graph, Graph::NodeMap<bool> > bfs(G);
    1.59 +    bfs.pushAndSetReached(s);
    1.60 +    pred.set(s, INVALID);
    1.61 +    while (!bfs.finished()) { 
    1.62 +      ++bfs; 
    1.63 +      if (G.valid(bfs) && bfs.isBNodeNewlyReached()) 
    1.64 +	pred.set(bfs.bNode(), bfs);
    1.65 +    }
    1.66 +    std::cout << ts << std::endl;
    1.67 +  }
    1.68 +
    1.69 +  return 0;
    1.70 +}
     2.1 --- a/src/work/marci/makefile	Wed Apr 21 12:36:53 2004 +0000
     2.2 +++ b/src/work/marci/makefile	Wed Apr 21 14:50:42 2004 +0000
     2.3 @@ -12,7 +12,7 @@
     2.4  CXXFLAGS = -g -O -W -Wall $(INCLUDEDIRS) -ansi -pedantic -ftemplate-depth-30
     2.5  
     2.6  LEDABINARIES = leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo
     2.7 -BINARIES = edmonds_karp_demo iterator_bfs_demo macro_test lg_vs_sg
     2.8 +BINARIES = edmonds_karp_demo iterator_bfs_demo macro_test lg_vs_sg bfsit_vs_byhand
     2.9  #gw_vs_not preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda
    2.10  
    2.11  all: $(BINARIES)