1.1 --- a/src/work/marci/bipartite_graph_wrapper.h Fri Apr 30 18:43:18 2004 +0000
1.2 +++ b/src/work/marci/bipartite_graph_wrapper.h Fri Apr 30 19:02:40 2004 +0000
1.3 @@ -40,8 +40,8 @@
1.4 public:
1.5 //marci
1.6 //FIXME vhogy igy kellene, csak az en forditom nem eszi meg
1.7 - static const bool S_CLASS=false;
1.8 - static const bool T_CLASS=true;
1.9 + static const bool S_CLASS;
1.10 + static const bool T_CLASS;
1.11
1.12 //bool S_CLASS;
1.13 //bool T_CLASS;
1.14 @@ -184,6 +184,23 @@
1.15 }
1.16 };
1.17
1.18 +
1.19 + template<typename G>
1.20 + const bool BipartiteGraphWrapper<G>::S_CLASS=false;
1.21 + template<typename G>
1.22 + const bool BipartiteGraphWrapper<G>::T_CLASS=true;
1.23 +
1.24 +
1.25 +
1.26 +
1.27 +
1.28 +
1.29 +
1.30 +
1.31 +
1.32 +
1.33 +
1.34 +
1.35 ///\bug Do not use this while the bipartitemap augmentation
1.36 /// does not work well.
1.37 template<typename Graph>
1.38 @@ -298,6 +315,7 @@
1.39 // template <typename T> friend class NodeMap;
1.40 // template <typename T> friend class EdgeMap;
1.41
1.42 + ///\todo FIXME ezt majd static-ra kell javitani
1.43 const Node S_NODE;
1.44 const Node T_NODE;
1.45