diff options
author | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-07-10 13:44:21 +1000 |
---|---|---|
committer | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-07-10 13:44:21 +1000 |
commit | ef4a319984d22b88a9024ff523700d657621124d (patch) | |
tree | 2821db78ccd6ce61ca64ad6fc98ba825b060ca6a /lemon/doc/dirs.dox | |
parent | d3f13fdd23e17a8f4bb4083c24fee331a28351eb (diff) |
Add the LEMON graph library source to the repo
I'll likely be using it, so this just makes it easier to get to from
elsewhere. If I end up not using it then I can just delete it.
Diffstat (limited to 'lemon/doc/dirs.dox')
-rw-r--r-- | lemon/doc/dirs.dox | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/lemon/doc/dirs.dox b/lemon/doc/dirs.dox new file mode 100644 index 0000000..c242fb2 --- /dev/null +++ b/lemon/doc/dirs.dox @@ -0,0 +1,77 @@ +/* -*- mode: C++; indent-tabs-mode: nil; -*- + * + * This file is a part of LEMON, a generic C++ optimization library. + * + * Copyright (C) 2003-2009 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * (Egervary Research Group on Combinatorial Optimization, EGRES). + * + * Permission to use, modify and distribute this software is granted + * provided that this copyright notice appears in all copies. For + * precise terms see the accompanying LICENSE file. + * + * This software is provided "AS IS" with no warranty of any kind, + * express or implied, and with no claim as to its suitability for any + * purpose. + * + */ + +/** +\dir demo +\brief A collection of demo applications. + +This directory contains several simple demo applications, mainly +for educational purposes. +*/ + +/** +\dir doc +\brief Auxiliary (and the whole generated) documentation. + +This directory contains some auxiliary pages and the whole generated +documentation. +*/ + +/** +\dir test +\brief Test programs. + +This directory contains several test programs that check the consistency +of the code. +*/ + +/** +\dir tools +\brief Some useful executables. + +This directory contains the sources of some useful complete executables. +*/ + +/** +\dir lemon +\brief Base include directory of LEMON. + +This is the base directory of LEMON includes, so each include file must be +prefixed with this, e.g. +\code +#include<lemon/list_graph.h> +#include<lemon/dijkstra.h> +\endcode +*/ + +/** +\dir concepts +\brief Concept descriptors and checking classes. + +This directory contains the concept descriptors and concept checking tools. +For more information see the \ref concept "Concepts" module. +*/ + +/** +\dir bits +\brief Auxiliary tools for implementation. + +This directory contains some auxiliary classes for implementing graphs, +maps and some other classes. +As a user you typically don't have to deal with these files. +*/ |