Index: /issm/trunk/src/c/Bamgx/Mesh2.h
===================================================================
--- /issm/trunk/src/c/Bamgx/Mesh2.h	(revision 2862)
+++ /issm/trunk/src/c/Bamgx/Mesh2.h	(revision 2863)
@@ -9,5 +9,4 @@
 //From MeshIo
 #include <cstdio>
-#include <iostream>
 #include <cstring>
 #include <cstdlib>
@@ -40,5 +39,5 @@
 #ifdef RAND_MAX
  const long HalfRandMax = RAND_MAX/2;
- return rand() <HalfRandMax;
+ return rand() < HalfRandMax;
 #else
  return rand() & 16384; // 2^14 (for sun because RAND_MAX is not def in stdlib.h)
Index: /issm/trunk/src/c/Bamgx/R2.h
===================================================================
--- /issm/trunk/src/c/Bamgx/R2.h	(revision 2862)
+++ /issm/trunk/src/c/Bamgx/R2.h	(revision 2863)
@@ -1,4 +1,2 @@
-#include <iostream>
-
 namespace bamg {
 	template <class R,class RR> class P2xP2;
@@ -26,7 +24,4 @@
 	template <class R,class RR>
 	  class P2xP2 { // x ligne 1 y ligne2 
-
-		  friend std::ostream& operator <<(std::ostream& f, const P2xP2<R,RR> & c) 
-			 { f << '[' << c.x << ',' << c.y << ']' <<std::flush ; return f; }
 
 		  friend P2<R,RR> operator*(P2<R,RR> c,P2xP2<R,RR> cc)
@@ -84,7 +79,3 @@
 	  inline P2<R,RR> Orthogonal (const P2<R,RR> x) {
 		  return  P2<R,RR>(-x.y,x.x);} 
-
-	template <class R,class RR>
-	  inline  std::ostream& operator <<(std::ostream& f, const P2<R,RR> & c)
-		 { f << '[' << c.x << ',' << c.y <<']' <<std::flush ; return f; }
 }
