From fd3e1e754b3359563ce2230a3c23a26f8123a03a Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 14 Nov 2008 15:53:34 +0000
Subject: [PATCH] *** empty log message ***

---
 Common/GmshMatrix.h   | 5 +++++
 Geo/GFaceCompound.h   | 2 +-
 Mesh/meshGFaceBDS.cpp | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/Common/GmshMatrix.h b/Common/GmshMatrix.h
index f5c03b178b..de2d1e0a8a 100644
--- a/Common/GmshMatrix.h
+++ b/Common/GmshMatrix.h
@@ -91,6 +91,11 @@ class Gmsh_Matrix
       for(int j = 0; j < b.size(); j++)
 	b.data[i] += (*this)(i, j) * x(j);
   }
+  inline void blas_dgemm(const Gmsh_Matrix<SCALAR> & x, const Gmsh_Matrix<SCALAR> & b, 
+			 const double c_a = 1.0, const double c_b = 1.0)
+  {
+    // FIXME: not implemented
+  }
   inline void set_all(const double &m) 
   {
     for(int i = 0; i < r * c; i++) data[i] = m;
diff --git a/Geo/GFaceCompound.h b/Geo/GFaceCompound.h
index 14d41029d3..085c257756 100644
--- a/Geo/GFaceCompound.h
+++ b/Geo/GFaceCompound.h
@@ -70,7 +70,7 @@ public:
   ModelType getNativeType() const { return GmshModel; }
   void * getNativePtr() const { return 0; }
   SPoint2 getCoordinates (MVertex *v) const { parametrize() ; return coordinates[v]; }
-  virtual bool buildRepresentationCross(){}
+  virtual bool buildRepresentationCross(){ return false; }
 };
 
 #endif
diff --git a/Mesh/meshGFaceBDS.cpp b/Mesh/meshGFaceBDS.cpp
index 0fee960641..41011f1536 100644
--- a/Mesh/meshGFaceBDS.cpp
+++ b/Mesh/meshGFaceBDS.cpp
@@ -267,10 +267,10 @@ bool edgeSwapTestHighOrder(BDS_Edge *e,GFace *gf)
   // the generation of 2 high order elements 
   // The rationale is to consider the edges as
   // exactly matching curves and surfaces 
+  return false;
 }
 
 
-
 bool edgeSwapTestDelaunayAniso(BDS_Edge *e, GFace *gf, std::set<swapquad> &configs)
 {
   BDS_Point *op[2];
-- 
GitLab