Index: src/libcfa/algorithm
===================================================================
--- src/libcfa/algorithm	(revision 5721a6da612c3a9661eb16d198fe90326b196c40)
+++ src/libcfa/algorithm	(revision b4cd03b740cf2cfe5905750f3587883e5a51a654)
@@ -5,5 +5,5 @@
 // file "LICENCE" distributed with Cforall.
 //
-// alorgithm -- 
+// alorgithm --
 //
 // Author           : Peter A. Buhr
@@ -16,8 +16,8 @@
 //---------------------------------------
 
-forall( type T | { int ?<?( T, T ); } )
+forall( type T | { int ?<?( const T, const T ); } )
 T min( const T t1, const T t2 );
 
-forall( type T | { int ?>?( T, T ); } )
+forall( type T | { int ?>?( const T, const T ); } )
 T max( const T t1, const T t2 );
 
Index: src/libcfa/algorithm.c
===================================================================
--- src/libcfa/algorithm.c	(revision 5721a6da612c3a9661eb16d198fe90326b196c40)
+++ src/libcfa/algorithm.c	(revision b4cd03b740cf2cfe5905750f3587883e5a51a654)
@@ -5,21 +5,21 @@
 // file "LICENCE" distributed with Cforall.
 //
-// algorithm.c -- 
+// algorithm.c --
 //
 // Author           : Peter A. Buhr
 // Created On       : Thu Jan 28 17:10:29 2016
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Feb  1 13:42:05 2016
-// Update Count     : 52
+// Last Modified By : Rob Schluntz
+// Last Modified On : Thu Feb 04 17:19:12 2016
+// Update Count     : 54
 //
 
 #include "algorithm"
 
-forall( type T | { int ?<?( T, T ); } )
+forall( type T | { int ?<?( const T, const T ); } )
 T min( const T t1, const T t2 ) {
 	return t1 < t2 ? t1 : t2;
 } // min
 
-forall( type T | { int ?>?( T, T ); } )
+forall( type T | { int ?>?( const T, const T ); } )
 T max( const T t1, const T t2 ) {
 	return t1 > t2 ? t1 : t2;
