Maybe useful, feel free to remove if not.
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/doc/tutorial.dox Thu Jul 27 11:49:15 2006 +0000
1.3 @@ -0,0 +1,79 @@
1.4 +/**
1.5 +\page Tutorial LEMON Tutorial
1.6 +
1.7 +<H2>Table of Contents</H2>
1.8 +
1.9 +<OL>
1.10 + <LI><A href="#intro">Introduction</A>
1.11 + <LI><A href="#get_start">Getting Started</A>
1.12 + <UL>
1.13 + <LI><A href="#hello_world">Hello World in LEMON</A>
1.14 + <LI><A href="#compile">Compiling Hello World</A>
1.15 + </UL>
1.16 + <LI><A href="#basic">Basic concepts</A>
1.17 + <UL>
1.18 + <LI><A href="#list_graph">ListGraph - a versatile directed graph</A>
1.19 + <LI><A href="#maps1">Maps I.</A>
1.20 + </UL>
1.21 + <LI><A href="#file">Lemon Graph File Format</A>
1.22 + <LI><A href="#algos">Algorithms</A>
1.23 + <UL>
1.24 + <LI><A href="#bfs_dfs">Bfs/Dfs</A>
1.25 + <LI><A href="#dijkstra">Dijkstra</A>
1.26 + <LI><A href="#kruskal">Kruskal</A>
1.27 + </UL>
1.28 + <LI><A href="#maps2">Maps II.</A>
1.29 + <UL>
1.30 + <LI><A href="#custom_maps">Writing Custom ReadMap</A>
1.31 + <LI><A href="#map_adaptors">Map Adaptors</A>
1.32 + <LI><A href="#spec_maps">Special Purpose Maps</A>
1.33 + </UL>
1.34 + <LI><A href="#show">Show a graph</A>
1.35 + <LI><A href="#misc">Miscellaneous Tool</A>
1.36 + <UL>
1.37 + <LI><A href="#lp">LP solver</A>
1.38 + <LI><A href="#simann">Simulated Annealing</A>
1.39 + </UL>
1.40 +</OL>
1.41 +
1.42 +<H2 id="intro">Introduction</H2>
1.43 +
1.44 +<H2 id="get_start">Getting Started</H2>
1.45 +
1.46 + <H3 id="hello_world">Hello World in LEMON</H3>
1.47 +
1.48 + <H3 id="compile">Compiling Hello World</H3>
1.49 +
1.50 +<H2 id="basic">Basic concepts</H2>
1.51 +
1.52 + <H3 id="list_graph">ListGraph - a versatile directed graph</H3>
1.53 +
1.54 + <H3 id="maps1">Maps I.</H3>
1.55 +
1.56 +<H2 id="file">Lemon Graph File Format</H2>
1.57 +
1.58 +<H2 id="algos">Algorithms</H2>
1.59 +
1.60 + <H3 id="bfs_dfs">Bfs/Dfs</H3>
1.61 +
1.62 + <H3 id="dijkstra">Dijkstra</H3>
1.63 +
1.64 + <H3 id="kruskal">Kruskal</H3>
1.65 +
1.66 +<H2 id="maps2">Maps II.</H2>
1.67 +
1.68 + <H3 id="custom_maps">Writing Custom ReadMap</H3>
1.69 +
1.70 + <H3 id="map_adaptors">Map Adaptors</H3>
1.71 +
1.72 + <H3 id="spec_maps">Special Purpose Maps</H3>
1.73 +
1.74 +<H2 id="show">Show a graph</H2>
1.75 +
1.76 +<H2 id="misc">Miscellaneous Tool</H2>
1.77 +
1.78 + <H3 id="lp">LP solver</H3>
1.79 +
1.80 + <H3 id="simann">Simulated Annealing</H3>
1.81 +
1.82 +*/