Changeset 1775:f19e108cb286 in lemon-0.x for demo/grid_graph_demo.cc
- Timestamp:
- 11/04/05 18:33:33 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2307
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
demo/grid_graph_demo.cc
r1763 r1775 7 7 #include <iostream> 8 8 #include <fstream> 9 10 ///\ingroup demos 11 ///\file 12 ///\brief Labirinth example with grid graph. 13 /// 14 /// Labirinth example with grid graph. 15 /// 16 /// The input file is: 17 /// 18 /// \include grid_graph_demo.in 19 /// 20 /// The result: 21 /// 22 /// \image html grid_graph_demo.png 23 /// \image latex grid_graph_demo.eps "The labirinth" width=\textwidth 24 /// 25 /// The source: 26 /// 27 /// \include grid_graph_demo.cc 9 28 10 29 using namespace lemon; … … 49 68 } 50 69 51 graphToEps(filtered, "grid_graph .eps").scaleToA4().70 graphToEps(filtered, "grid_graph_demo.eps").scaleToA4(). 52 71 title("Grid graph"). 53 72 copyright("(C) 2005 LEMON Project"). … … 59 78 run(); 60 79 61 std::cout << "The shortest path is written to grid_graph.eps" << std::endl; 80 std::cout << "The shortest path is written to grid_graph_demo.eps" 81 << std::endl; 62 82 63 83 return 0;
Note: See TracChangeset
for help on using the changeset viewer.