Changeset 2492:387f6ff851ef in lemon-0.x
- Timestamp:
- 10/09/07 19:13:17 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3331
- Location:
- demo
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
demo/arg_parser_demo.cc
r2411 r2492 16 16 * 17 17 */ 18 19 ///\ingroup demos 20 ///\file 21 ///\brief Argument parser demo 22 /// 23 /// This example shows how can the argument parser used. 24 /// 25 /// \include arg_parser.cc 18 26 19 27 #include <lemon/arg_parser.h> -
demo/mip_demo.cc
r2391 r2492 17 17 */ 18 18 19 20 ///\ingroup demos 21 ///\file 22 ///\brief Mixed integer program solver demo 23 /// 24 /// This example shows how can we solve an integer program with lemon 25 /// \c Mip interface and with default solver. 26 /// 27 /// \include mip_demo.cc 28 19 29 #include <lemon/lp.h> 20 //#include <lemon/ilp_glpk.h>21 30 22 31 using namespace lemon; 23 32 24 33 int main(){ 25 26 //MipGlpk ilp;27 34 28 35 Mip ilp; -
demo/steiner_demo.cc
r2472 r2492 16 16 * 17 17 */ 18 19 ///\ingroup demos 20 ///\file 21 ///\brief Calculating an approximate Steiner-tree. 22 /// 23 /// Calculating an approximate Steiner-tree. 24 /// 25 /// \include steiner_demo.cc 18 26 19 27 #include <lemon/smart_graph.h>
Note: See TracChangeset
for help on using the changeset viewer.