diff -r e71778873dd0 -r d8c28868f074 test/test_tools.h --- a/test/test_tools.h Fri Oct 07 11:05:08 2005 +0000 +++ b/test/test_tools.h Fri Oct 07 11:05:35 2005 +0000 @@ -129,33 +129,33 @@ } } -///Structure returned by \ref addSymPetersen(). +///Structure returned by \ref addUndirPetersen(). -///Structure returned by \ref addSymPetersen(). +///Structure returned by \ref addUndirPetersen(). /// -template struct SymPetStruct +template struct UndirPetStruct { ///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; + std::vector incir; ///Vector containing the edges of the outer circle. - std::vector outcir; + std::vector outcir; ///Vector containing the chord edges. - std::vector chords; + std::vector chords; }; -///Adds a Petersen graph to the symmetric \c G. +///Adds a Petersen graph to the undirected \c G. -///Adds a Petersen graph to the symmetric \c G. +///Adds a Petersen graph to the undirected \c G. ///\return The nodes and edges of the generated graph. template -SymPetStruct addSymPetersen(Graph &G,int num=5) +UndirPetStruct addUndirPetersen(Graph &G,int num=5) { - SymPetStruct n; + UndirPetStruct n; for(int i=0;i