automatic commit
authorFrancois Fleuret <fleuret@kitten.fleuret.org>
Sat, 27 Oct 2007 19:58:59 +0000 (21:58 +0200)
committerFrancois Fleuret <fleuret@kitten.fleuret.org>
Sat, 27 Oct 2007 19:58:59 +0000 (21:58 +0200)
19 files changed:
approximer.cc
approximer.h
dummy.cc
hit_shape.cc
intelligence.cc
intelligence.h
main.cc
map.cc
map.h
misc.cc
move_square.cc
simple_window.cc
simple_window.h
task.cc
task.h
universe.cc
universe.h
variables.cc
variables.h

index c0d0577..8a82a84 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: approximer.cc,v 1.13 2006-12-22 23:13:46 fleuret Exp $
-
 #include "approximer.h"
 
 MappingApproximer::MappingApproximer(int max_nb_weak_learners) :
index 01d8a89..20019e9 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: approximer.h,v 1.6 2006-07-22 12:34:11 fleuret Exp $
-
 #ifndef APPROXIMER_H
 #define APPROXIMER_H
 
index 8173717..73a06f3 100644 (file)
--- a/dummy.cc
+++ b/dummy.cc
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: dummy.cc,v 1.16 2006-07-21 08:28:27 fleuret Exp $
-
 #include "task.h"
 #include "universe.h"
 #include "manipulator.h"
index 66cf76d..12d4582 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: hit_shape.cc,v 1.5 2006-07-23 21:14:42 fleuret Exp $
-
 #include "task.h"
 #include "universe.h"
 #include "manipulator.h"
index 53bdab8..1f7968d 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: intelligence.cc,v 1.34 2006-12-18 15:01:09 fleuret Exp $
-
 #include "intelligence.h"
 
 Intelligence::Intelligence(Map *input,
index 0444e34..d17e305 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: intelligence.h,v 1.20 2006-07-26 06:52:30 fleuret Exp $
-
 #include "map.h"
 #include "approximer.h"
 #include "manipulator.h"
diff --git a/main.cc b/main.cc
index cb94b7f..8c98473 100644 (file)
--- a/main.cc
+++ b/main.cc
@@ -49,8 +49,6 @@ void check_opt(int argc, char **argv, int n_opt, int n, char *help) {
 }
 
 void print_help_and_exit(int e) {
-  cout << "$Id: main.cc,v 1.89 2007-06-16 13:51:53 fleuret Exp $" << endl;
-  cout << endl;
   cout << "Arguments:" << endl;
   cout << "  --no-window" << endl;
   cout << "  --nb-ticks=<int: number of ticks>" << endl;
diff --git a/map.cc b/map.cc
index 64d5ced..183218b 100644 (file)
--- a/map.cc
+++ b/map.cc
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: map.cc,v 1.4 2006-07-26 06:53:18 fleuret Exp $
-
 #include "map.h"
 
 Map::Map() { parameters = 0; }
diff --git a/map.h b/map.h
index 3202d83..ae91f28 100644 (file)
--- a/map.h
+++ b/map.h
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: map.h,v 1.5 2006-07-26 06:53:19 fleuret Exp $
-
 #ifndef MAP_H
 #define MAP_H
 
diff --git a/misc.cc b/misc.cc
index fa6e7ba..9d739dd 100644 (file)
--- a/misc.cc
+++ b/misc.cc
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: misc.cc,v 1.1 2006-07-16 10:27:35 fleuret Exp $
-
 #include "misc.h"
 
 int compare_couple(const void *a, const void *b) {
index 1722be8..4ce403b 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: move_square.cc,v 1.16 2006-07-21 08:44:16 fleuret Exp $
-
 #include "task.h"
 #include "universe.h"
 #include "manipulator.h"
index 449ca36..502e1dd 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: simple_window.cc,v 1.2 2007-04-24 21:22:52 fleuret Exp $
-
 #include "simple_window.h"
 
 SimpleEvent::SimpleEvent() : type(UNDEFINED) {}
index f42e931..3761fcd 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: simple_window.h,v 1.2 2007-04-24 21:22:52 fleuret Exp $
-
 #ifndef SIMPLE_WINDOW_H
 #define SIMPLE_WINDOW_H
 
diff --git a/task.cc b/task.cc
index 71002c3..013c70a 100644 (file)
--- a/task.cc
+++ b/task.cc
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: task.cc,v 1.8 2006-07-10 15:19:06 fleuret Exp $
-
 #include <iostream>
 #include <dlfcn.h>
 
diff --git a/task.h b/task.h
index b472f73..e5dab7d 100644 (file)
--- a/task.h
+++ b/task.h
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: task.h,v 1.18 2006-12-17 19:22:19 fleuret Exp $
-
 #ifndef TASK_H
 #define TASK_H
 
index 8d8aa71..4549461 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: universe.cc,v 1.88 2007-06-16 13:51:54 fleuret Exp $
-
 #include "universe.h"
 
 Universe::Universe(int nb_max_polygons,
index 3775daf..4ea8f2e 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id: universe.h,v 1.21 2006-12-17 19:22:19 fleuret Exp $
-
 #ifndef UNIVERSE_H
 #define UNIVERSE_H
 
index 5cd1994..9caf57b 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id$
-
 #include "variables.h"
 
 Variables::Variables() {
index 7c55599..7d4cafd 100644 (file)
@@ -13,8 +13,6 @@
 // Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
 ////////////////////////////////////////////////////////////////////////////////
 
-// $Id$
-
 #include "misc.h"
 
 class Variables {