Changeset 499:767f3da8ce0e in lemon-0.x for src/work/marci/bipartite_graph_wrapper.h
- Timestamp:
- 04/30/04 19:10:01 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@659
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/bipartite_graph_wrapper.h
r498 r499 32 32 SFalseTTrueMap* s_false_t_true_map; 33 33 34 BipartiteGraphWrapper() : GraphWrapper<Graph>( 0) { }34 BipartiteGraphWrapper() : GraphWrapper<Graph>() { } 35 35 void setSFalseTTrueMap(SFalseTTrueMap& _s_false_t_true_map) { 36 s_false_t_true_map= _s_false_t_true_map;36 s_false_t_true_map=&_s_false_t_true_map; 37 37 } 38 38 … … 197 197 typedef typename Parent::Node Node; 198 198 typedef typename Parent::Edge Edge; 199 BipartiteGraph() : BipartiteGraphWrapper<Graph>( 0),199 BipartiteGraph() : BipartiteGraphWrapper<Graph>(), 200 200 gr(), bipartite_map(gr), 201 201 s_false_t_true_map(bipartite_map) { 202 202 Parent::setGraph(gr); 203 Parent::setSFalseTTrueMap( bipartite_map);203 Parent::setSFalseTTrueMap(s_false_t_true_map); 204 204 } 205 205
Note: See TracChangeset
for help on using the changeset viewer.