Changeset 500:1a45623b4796 in lemon-0.x for src/work/marci/bipartite_graph_wrapper.h
- Timestamp:
- 04/30/04 19:48:50 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@660
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/bipartite_graph_wrapper.h
r499 r500 47 47 48 48 BipartiteGraphWrapper(Graph& _graph, SFalseTTrueMap& _s_false_t_true_map) 49 : GraphWrapper<Graph>(_graph), s_false_t_true_map(&_s_false_t_true_map), 50 S_CLASS(false), T_CLASS(true) { } 49 : GraphWrapper<Graph>(_graph), 50 s_false_t_true_map(&_s_false_t_true_map), 51 S_CLASS(false), T_CLASS(true) { } 51 52 typedef typename GraphWrapper<Graph>::Node Node; 52 53 //using GraphWrapper<Graph>::NodeIt; … … 198 199 typedef typename Parent::Edge Edge; 199 200 BipartiteGraph() : BipartiteGraphWrapper<Graph>(), 200 gr(), bipartite_map(gr ),201 gr(), bipartite_map(gr, -1), 201 202 s_false_t_true_map(bipartite_map) { 202 203 Parent::setGraph(gr);
Note: See TracChangeset
for help on using the changeset viewer.