automatic commit
[mlp.git] / misc.h
diff --git a/misc.h b/misc.h
index 3a8b43d..4470d45 100644 (file)
--- a/misc.h
+++ b/misc.h
@@ -1,8 +1,10 @@
 /*
  *  mlp-mnist is an implementation of a multi-layer neural network.
  *
- *  Copyright (c) 2008 Idiap Research Institute, http://www.idiap.ch/
- *  Written by Francois Fleuret <francois.fleuret@idiap.ch>
+ *  Copyright (c) 2006 École Polytechnique Fédérale de Lausanne,
+ *  http://www.epfl.ch
+ *
+ *  Written by Francois Fleuret <francois@fleuret.org>
  *
  *  This file is part of mlp-mnist.
  *
@@ -29,6 +31,8 @@
 #define ASSERT(x, s)
 #endif
 
+const int buffer_size = 1024;
+
 typedef float scalar_t;
 
 template<class T> T sq(T x) { return x*x; }