Skip to content
Snippets Groups Projects
Commit fd3e1e75 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 0a97c923
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -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
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment