[Lemon-commits] [lemon_svn] marci: r815 - hugo/trunk/src/hugo
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:41:38 CET 2006
Author: marci
Date: Wed May 12 16:02:31 2004
New Revision: 815
Modified:
hugo/trunk/src/hugo/graph_wrapper.h
Log:
Modified: hugo/trunk/src/hugo/graph_wrapper.h
==============================================================================
--- hugo/trunk/src/hugo/graph_wrapper.h (original)
+++ hugo/trunk/src/hugo/graph_wrapper.h Wed May 12 16:02:31 2004
@@ -916,6 +916,10 @@
else
return backward_map[e/*.in*/];
}
+ void update() {
+ forward_map.update();
+ backward_map.update();
+ }
// T get(Edge e) const {
// if (e.out_or_in)
// return forward_map.get(e.out);
@@ -1251,6 +1255,10 @@
else
return backward_map[e/*.in*/];
}
+ void update() {
+ forward_map.update();
+ backward_map.update();
+ }
// T get(Edge e) const {
// if (e.out_or_in)
// return forward_map.get(e.out);
More information about the Lemon-commits
mailing list