Changeset 825:738abd9d1262 in lemon-0.x for src/test
- Timestamp:
- 09/09/04 09:09:41 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1121
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/test/test_tools.h
r774 r825 35 35 template<class Graph> struct PetStruct 36 36 { 37 ///. 38 std::vector<typename Graph::Node> outer, inner; 39 ///. 40 std::vector<typename Graph::Edge> outcir, incir, chords; 37 ///Vector containing the outer nodes. 38 std::vector<typename Graph::Node> outer; 39 ///Vector containing the inner nodes. 40 std::vector<typename Graph::Node> inner; 41 ///Vector containing the edges of the inner circle. 42 std::vector<typename Graph::Edge> incir; 43 ///Vector containing the edges of the outer circle. 44 std::vector<typename Graph::Edge> outcir; 45 ///Vector containing the chord edges. 46 std::vector<typename Graph::Edge> chords; 41 47 }; 42 48 … … 46 52 47 53 ///Adds a Petersen graph to \c G. 48 /// The nodes end edges will be listed in the return structure.54 ///\return The nodes end edges og the generated graph. 49 55 50 56 template<typename Graph>
Note: See TracChangeset
for help on using the changeset viewer.