COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
08/31/04 19:54:22 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1070
Message:

graph_wrapper.h is ready for hugo 0.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/bfsit_vs_byhand.cc

    r773 r777  
    3434  cout << g.edgeNum() << endl;
    3535
    36   Graph::NodeMap<OutEdgeIt> pred(g);
     36  Graph::NodeMap<Edge> pred(g);
    3737  cout << "iteration time of bfs written by hand..." << endl;
    3838  Timer ts;
     
    7070      ++bfs;
    7171      if (g.valid(bfs) && bfs.isBNodeNewlyReached())
    72         pred.set(bfs.bNode(), bfs);
     72        pred.set(bfs.head(), Graph::Edge(bfs));
    7373    }
    7474    std::cout << ts << std::endl;
Note: See TracChangeset for help on using the changeset viewer.