Changeset 336:052cecabcb71 in lemon-main
- Timestamp:
- 10/18/08 13:15:00 (16 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/grid_graph.h
r335 r336 185 185 class Edge { 186 186 friend class GridGraphBase; 187 friend class Arc; 187 188 188 189 protected: … … 473 474 /// [0..height()-1] range. Two nodes are connected in the graph if 474 475 /// the indexes differ exactly on one position and exactly one is 475 /// the difference. The nodes of the graph be indexed by position476 /// with \c operator()() function. The positions of the nodes can be476 /// the difference. The nodes of the graph can be indexed by position 477 /// with the \c operator()() function. The positions of the nodes can be 477 478 /// get with \c pos(), \c col() and \c row() members. The outgoing 478 479 /// arcs can be retrieved with the \c right(), \c up(), \c left() … … 481 482 /// 482 483 /// \image html grid_graph.png 483 /// \image latex grid_graph.eps "Grid digraph" row_num=\textrow_num484 /// \image latex grid_graph.eps "Grid graph" row_num=\textrow_num 484 485 /// 485 486 /// A short example about the basic usage: … … 494 495 ///\endcode 495 496 /// 496 /// Th egraph type is fully conform to the \ref concepts::Graph497 /// This graph type is fully conform to the \ref concepts::Graph 497 498 /// "Graph" concept, and it also has an important extra feature 498 /// that its maps are real \ref concepts::ReferenceMap "reference499 /// map"s.499 /// that its maps are real \ref concepts::ReferenceMap 500 /// "reference map"s. 500 501 class GridGraph : public ExtendedGridGraphBase { 501 502 public: -
test/graph_test.cc
r335 r336 193 193 Graph G(width, height); 194 194 195 check(G.width() == width, "Wrong rownumber");196 check(G.height() == height, "Wrong columnnumber");195 check(G.width() == width, "Wrong column number"); 196 check(G.height() == height, "Wrong row number"); 197 197 198 198 for (int i = 0; i < width; ++i) {
Note: See TracChangeset
for help on using the changeset viewer.