Fix 'make distcheck' failure.
authoralpar
Thu, 24 Feb 2005 17:48:25 +0000
changeset 1177e41c2907fb49
parent 1176 1ba2b4c0c970
child 1178 3c176c65d33b
Fix 'make distcheck' failure.
Makefile.am
doc/Makefile.am
src/lemon/max_matching.h
     1.1 --- a/Makefile.am	Thu Feb 24 17:42:11 2005 +0000
     1.2 +++ b/Makefile.am	Thu Feb 24 17:48:25 2005 +0000
     1.3 @@ -1,3 +1,5 @@
     1.4 +EXTRA_DIST = autopackage/default.apspec.in
     1.5 +
     1.6  SUBDIRS = src doc
     1.7  
     1.8  MRPROPERFILES =								\
     2.1 --- a/doc/Makefile.am	Thu Feb 24 17:42:11 2005 +0000
     2.2 +++ b/doc/Makefile.am	Thu Feb 24 17:48:25 2005 +0000
     2.3 @@ -5,7 +5,11 @@
     2.4  htmldir = $(datadir)/doc/@PACKAGE@-@VERSION@/html
     2.5  ## htmldir = $(pkgdatadir)/doc
     2.6  
     2.7 -EXTRA_DIST = Doxyfile html coding_style.dox groups.dox mainpage.dox maps.dox
     2.8 +EXTRA_DIST = Doxyfile html mainpage.dox getstart.dox quicktour.dox \
     2.9 +	demoprograms.dox graphs.dox undir_graphs.dox named-param.dox \
    2.10 +        maps.dox coding_style.dox groups.dox namespaces.dox license.dox \
    2.11 +	developers_interface.dox graph_io.dox dirs.dox gwrappers.dox
    2.12 +
    2.13  
    2.14  ## all-local: html/index.html
    2.15  
     3.1 --- a/src/lemon/max_matching.h	Thu Feb 24 17:42:11 2005 +0000
     3.2 +++ b/src/lemon/max_matching.h	Thu Feb 24 17:48:25 2005 +0000
     3.3 @@ -59,6 +59,7 @@
     3.4  
     3.5      typedef typename Graph::Node Node;
     3.6      typedef typename Graph::Edge Edge;
     3.7 +    typedef typename Graph::UndirEdge UndirEdge;
     3.8      typedef typename Graph::UndirEdgeIt UndirEdgeIt;
     3.9      typedef typename Graph::NodeIt NodeIt;
    3.10      typedef typename Graph::IncEdgeIt IncEdgeIt;
    3.11 @@ -165,7 +166,7 @@
    3.12      template<typename NMapE>
    3.13      void readNMapEdge(NMapE& map) {
    3.14       for(NodeIt v(g); v!=INVALID; ++v) {
    3.15 -	UndirEdge e=map[v];
    3.16 +       UndirEdge e=map[v];
    3.17  	if ( e!=INVALID )
    3.18  	  _mate.set(v,g.oppositeNode(v,e));
    3.19        }