diff -r 765619b7cbb2 -r 81cfc04531e8 lemon/dijkstra.h --- a/lemon/dijkstra.h Sun Jul 13 19:51:02 2008 +0100 +++ b/lemon/dijkstra.h Sun Jul 13 20:09:47 2008 +0100 @@ -173,7 +173,8 @@ ///Instantiates a DistMap. ///This function instantiates a \ref DistMap. - ///\param G is the digraph, to which we would like to define the \ref DistMap + ///\param G is the digraph, to which we would like to define + ///the \ref DistMap static DistMap *createDistMap(const GR &G) { return new DistMap(G); @@ -336,8 +337,8 @@ /// template struct DefPredMap - : public Dijkstra< Digraph, LengthMap, DefPredMapTraits > { - typedef Dijkstra< Digraph, LengthMap, DefPredMapTraits > Create; + : public Dijkstra< Digraph, LengthMap, DefPredMapTraits > { + typedef Dijkstra< Digraph, LengthMap, DefPredMapTraits > Create; }; template @@ -372,8 +373,8 @@ /// template struct DefProcessedMap - : public Dijkstra< Digraph, LengthMap, DefProcessedMapTraits > { - typedef Dijkstra< Digraph, LengthMap, DefProcessedMapTraits > Create; + : public Dijkstra< Digraph, LengthMap, DefProcessedMapTraits > { + typedef Dijkstra< Digraph, LengthMap, DefProcessedMapTraits > Create; }; struct DefDigraphProcessedMapTraits : public Traits { @@ -392,7 +393,8 @@ template struct DefProcessedMapToBeDefaultMap : public Dijkstra< Digraph, LengthMap, DefDigraphProcessedMapTraits> { - typedef Dijkstra< Digraph, LengthMap, DefDigraphProcessedMapTraits> Create; + typedef Dijkstra< Digraph, LengthMap, DefDigraphProcessedMapTraits> + Create; }; template @@ -415,8 +417,8 @@ /// template > struct DefHeap - : public Dijkstra< Digraph, LengthMap, DefHeapTraits > { - typedef Dijkstra< Digraph, LengthMap, DefHeapTraits > Create; + : public Dijkstra< Digraph, LengthMap, DefHeapTraits > { + typedef Dijkstra< Digraph, LengthMap, DefHeapTraits > Create; }; template @@ -440,8 +442,8 @@ ///parameter and the heap's constructor waits for the cross reference. template > struct DefStandardHeap - : public Dijkstra< Digraph, LengthMap, DefStandardHeapTraits > { - typedef Dijkstra< Digraph, LengthMap, DefStandardHeapTraits > + : public Dijkstra< Digraph, LengthMap, DefStandardHeapTraits > { + typedef Dijkstra< Digraph, LengthMap, DefStandardHeapTraits > Create; }; @@ -976,7 +978,8 @@ ///Instantiates a DistMap. ///This function instantiates a \ref DistMap. - ///\param g is the digraph, to which we would like to define the \ref DistMap + ///\param g is the digraph, to which we would like to define + ///the \ref DistMap #ifdef DOXYGEN static DistMap *createDistMap(const GR &g) #else