alpar@2391: /* -*- C++ -*-
alpar@2391: *
alpar@2391: * This file is a part of LEMON, a generic C++ optimization library
alpar@2391: *
alpar@2553: * Copyright (C) 2003-2008
alpar@2391: * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@2391: * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@2391: *
alpar@2391: * Permission to use, modify and distribute this software is granted
alpar@2391: * provided that this copyright notice appears in all copies. For
alpar@2391: * precise terms see the accompanying LICENSE file.
alpar@2391: *
alpar@2391: * This software is provided "AS IS" with no warranty of any kind,
alpar@2391: * express or implied, and with no claim as to its suitability for any
alpar@2391: * purpose.
alpar@2391: *
alpar@2391: */
alpar@2391:
alpar@2216: namespace lemon {
ladanyi@2165: /**
ladanyi@2165: \page Tutorial LEMON Tutorial
ladanyi@2165:
alpar@2195:
Table of Contents
ladanyi@2165:
alpar@2195:
alpar@2195: - \ref intro
alpar@2195:
- \ref getting_started
alpar@2195:
alpar@2195: - \ref hello_world
alpar@2195:
- \ref compile_hw
alpar@2195:
alpar@2195: - \ref basic_concepts
alpar@2195:
alpar@2195: - \ref basic_ListGraph
alpar@2195:
- \ref maps1
alpar@2195:
alpar@2216: - \ref lemon_file_format
alpar@2216:
alpar@2216: - \ref read_write_bg
alpar@2216:
alpar@2195: - \ref algorithms
alpar@2195:
alpar@2216: - \ref algo_bfs_dfs
mqrelly@2281:
- \ref algo_dijkstra
mqrelly@2281:
- \ref algo_kruskal
alpar@2195:
alpar@2195: - \ref maps2
alpar@2195:
alpar@2195: - \ref custom_maps
alpar@2216:
- Map Adaptors
alpar@2216:
- Special Purpose Maps
alpar@2195:
mqrelly@2281: - \ref show_a_graph
alpar@2216:
- Miscellaneous Tool
alpar@2195:
alpar@2216: - LP solver
alpar@2216:
- Simulated Annealing
alpar@2195:
alpar@2195:
ladanyi@2165:
ladanyi@2166: \section intro Introduction
alpar@2195: In this tutorial we try to show you as many aspects of LEMON as possible. From
alpar@2195: the basics to the very advanced or highly optimized tools. The given examples
alpar@2195: are all available in \c demo directory, so feel free to look at them after the
alpar@2195: sections.
ladanyi@2165: */
alpar@2216: }