Oups, some renaming of variables was a bit too brutal. Fixed.
[mtp.git] / README.txt
index e814024..793710b 100644 (file)
@@ -10,15 +10,26 @@ paths to a constant K.
 
 * INSTALLATION
 
-This source code should compile with any C++ compiler. Just run "make"
-and execute the mtp executable. It should print the optimal detected
-trajectories, and save into graph.dot the result graph and
-trajectories in the dot syntax. You can produce a pdf from the latter
-with
+This source code should compile with any C++ compiler. Just execute
+
+  make
+  ./mtp_example
+
+It will create a synthetic dummy example, save its description in
+tracker.dat, and print the optimal detected trajectories.
+
+If you now execute
+
+  ./mtp tracker.dat
+
+It will load the tracker.dat example, run the detection, save the
+detected trajectories in result.trj, and the underlying graph with
+occupied edges in graph.dot. You can produce a pdf from the latter
+with the dot command from graphviz:
 
   dot < graph.dot -T pdf -o graph.pdf
 
-* DESCRIPTION
+* IMPLEMENTATION
 
 The two main classes are MTPGraph and Tracker.