diff -r 157115b5814a -r 738abd9d1262 src/test/test_tools.h --- a/src/test/test_tools.h Thu Sep 09 07:09:11 2004 +0000 +++ b/src/test/test_tools.h Thu Sep 09 07:09:41 2004 +0000 @@ -34,10 +34,16 @@ /// template struct PetStruct { - ///. - std::vector outer, inner; - ///. - std::vector outcir, incir, chords; + ///Vector containing the outer nodes. + std::vector outer; + ///Vector containing the inner nodes. + std::vector inner; + ///Vector containing the edges of the inner circle. + std::vector incir; + ///Vector containing the edges of the outer circle. + std::vector outcir; + ///Vector containing the chord edges. + std::vector chords; }; @@ -45,7 +51,7 @@ ///Adds a Petersen graph to \c G. ///Adds a Petersen graph to \c G. -///The nodes end edges will be listed in the return structure. +///\return The nodes end edges og the generated graph. template PetStruct addPetersen(Graph &G,int num=5)