intro.dox
changeset 6 da96f28684f7
parent 3 0cf8882c7e7c
child 10 55e2f7712e87
     1.1 --- a/intro.dox	Thu Oct 23 14:06:53 2008 +0200
     1.2 +++ b/intro.dox	Thu Oct 23 14:07:30 2008 +0200
     1.3 @@ -21,25 +21,35 @@
     1.4  
     1.5  \section intro_lemon What is LEMON
     1.6  
     1.7 -LEMON stands for <b>L</b>ibrary of <b>E</b>fficient <b>M</b>odels and
     1.8 +<b>LEMON</b> stands for <b>L</b>ibrary of <b>E</b>fficient <b>M</b>odels and
     1.9  <b>O</b>ptimization in <b>N</b>etworks. It is a C++ template
    1.10 -library aimed at combinatorial optimization tasks which often involve
    1.11 -in working with graphs.
    1.12 +library aimed at combinatorial optimization tasks, especially those
    1.13 +working with graphs and networks.
    1.14  
    1.15  <b>LEMON is an <a class="el" href="http://opensource.org/">open&nbsp;source</a>
    1.16  project.
    1.17  You are free to use it in your commercial or non-commercial applications
    1.18 -under very permissive \ref license "license terms".
    1.19 -</b>
    1.20 +under very permissive \ref license "license terms".</b>
    1.21 +
    1.22 +This library helps to write programs that solve optimization problems
    1.23 +that arise frequently when designing and testing certain networks,
    1.24 +for example in telecommunication, computer networks, logistics, scheduling,
    1.25 +and other areas.
    1.26 +A very natural way of modelling these networks is by means of a graph.
    1.27 +Generally if you want to write any program that works with graphs,
    1.28 +then you might find it useful and convenient to use LEMON.
    1.29 +
    1.30 +For more information visit the LEMON web site:
    1.31 +<a href="http://lemon.cs.elte.hu/"><b>http://lemon.cs.elte.hu/</b></a>.
    1.32  
    1.33  \section intro_tutorial LEMON Tutorial
    1.34  
    1.35  This tutorial introduces the reader to the basic concepts and features of
    1.36 -LEMON, and there are some sections about advanced topics showing the power
    1.37 -of the various tools implemented in the library.
    1.38 +LEMON, and there are also some sections about advanced topics showing the
    1.39 +power of various tools implemented in the library.
    1.40  
    1.41 -After getting familiar with the basic concepts you may start using LEMON
    1.42 -with the help of the detailed documentation (that can also be used as a
    1.43 -reference manual).
    1.44 +After getting familiar with the basics of the library, you may start using
    1.45 +LEMON with the help of the detailed documentation (that can also be used
    1.46 +as a reference manual).
    1.47  
    1.48  */