diff --git a/Fltk/GUI.cpp b/Fltk/GUI.cpp index fa5ee9e45f7cf215244b845d9d329d33d26f34c2..1ade4671f57fd44aa54a39c7235a80f4072e63f2 100644 --- a/Fltk/GUI.cpp +++ b/Fltk/GUI.cpp @@ -313,7 +313,7 @@ Context_Item menu_mesh[] = { #if defined(HAVE_FOURIER_MODEL) {"Reparameterize", (Fl_Callback *)mesh_parameterize_cb} , #endif - //{"Reclassify", (Fl_Callback *)mesh_classify_cb} , + {"Reclassify", (Fl_Callback *)mesh_classify_cb} , {"Save", (Fl_Callback *)mesh_save_cb} , {0} }; diff --git a/Geo/GEntity.h b/Geo/GEntity.h index f686071539f4339bc526c5cded596c18e64f5edc..7d202ec255f6f4c2d4bd0f5758ac76f4795a0f30 100644 --- a/Geo/GEntity.h +++ b/Geo/GEntity.h @@ -92,6 +92,7 @@ class GEntity { SurfaceOfRevolution, BoundaryLayerSurface, DiscreteSurface, + CompoundSurface, Volume, DiscreteVolume }; @@ -130,6 +131,7 @@ class GEntity { "Surface of Revolution", "Boundary layer surface", "Discrete surface", + "Compound surface", "Volume", "Discrete volume" }; diff --git a/Geo/GFace.cpp b/Geo/GFace.cpp index 6dfaf1e5d115cc9a2626e2584bc4eae4b5e9063d..490b237771cf21420c8806e5563995da97fb5dbc 100644 --- a/Geo/GFace.cpp +++ b/Geo/GFace.cpp @@ -611,6 +611,13 @@ bool GFace::containsParam(const SPoint2 &pt) const return false; } +SVector3 GFace::normal(const SPoint2 ¶m) const{ + Pair<SVector3,SVector3> der = firstDer(param); + SVector3 n = crossprod (der.first(),der.second()); + n.normalize(); + return n; +} + bool GFace::buildRepresentationCross() { if(geomType() != Plane){ diff --git a/Geo/GFace.h b/Geo/GFace.h index 3cd5497d2fd2ec434013c4bb3b1871a73fe4a851..946f89db423bdda30530302b41aa5c9f0406a305 100644 --- a/Geo/GFace.h +++ b/Geo/GFace.h @@ -133,19 +133,19 @@ class GFace : public GEntity virtual GPoint closestPoint(const SPoint3 & queryPoint, const double initialGuess[2]) const; // return the normal to the face at the given parameter location - virtual SVector3 normal(const SPoint2 ¶m) const = 0; + virtual SVector3 normal(const SPoint2 ¶m) const; // return the first derivate of the face at the parameter location virtual Pair<SVector3,SVector3> firstDer(const SPoint2 ¶m) const = 0; - // return the curvature i.e. the divergence of the normal + // return the curvature i.e. the divergence of the n$ormal virtual double curvature(const SPoint2 ¶m) const; // return a type-specific additional information string virtual std::string getAdditionalInfoString(); // fill the crude representation cross - bool buildRepresentationCross(); + virtual bool buildRepresentationCross(); // build a STL triangulation and fills the vertex array // va_geom_triangles diff --git a/Geo/GFaceCompound.cpp b/Geo/GFaceCompound.cpp new file mode 100644 index 0000000000000000000000000000000000000000..69e5ef2b176091d7dc43f0204c9e31b89e93e286 --- /dev/null +++ b/Geo/GFaceCompound.cpp @@ -0,0 +1,410 @@ +#include "GFaceCompound.h" +#include "gmshAssembler.h" +#include "gmshLaplace.h" +#include "Octree.h" +#include "gmshGmmLinearSystem.h" + +static void fixEdgeToValue (GEdge *ed, + double value, + gmshAssembler &myAssembler){ + myAssembler.fixVertex(ed->getBeginVertex()->mesh_vertices[0], + 0, 1, value); + myAssembler.fixVertex(ed->getEndVertex()->mesh_vertices[0], + 0, 1, value); + for (int i=0 ; i< ed->mesh_vertices.size();i++){ + myAssembler.fixVertex(ed->mesh_vertices[i],0, 1, value); + } +} + +static void fixEdgeToValueX (GEdge *ed, + gmshAssembler &myAssembler){ + for (int i=0 ; i< ed->lines.size();i++){ + myAssembler.fixVertex(ed->lines[i]->getVertex(0),0, 1, ed->lines[i]->getVertex(0)->x()); + myAssembler.fixVertex(ed->lines[i]->getVertex(1),0, 1, ed->lines[i]->getVertex(1)->x()); + } +} + +static void fixEdgeToValueY (GEdge *ed, + gmshAssembler &myAssembler){ + for (int i=0 ; i< ed->lines.size();i++){ + myAssembler.fixVertex(ed->lines[i]->getVertex(0),0, 1, ed->lines[i]->getVertex(0)->y()); + myAssembler.fixVertex(ed->lines[i]->getVertex(1),0, 1, ed->lines[i]->getVertex(1)->y()); + } +} + + +void GFaceCompound::getBoundingEdges () +{ + if (_U0.size() && !_U1.size()){ + std::list<GEdge*> :: const_iterator it = _U0.begin(); + for ( ; it != _U0.end() ; ++it){ + // printf("edge %d\n",(*it)->tag()); + l_edges.push_back(*it); + (*it)->addFace(this); + } + return; + } + + + std::set<GEdge*> _unique; + std::list<GFace*> :: iterator it = _compound.begin(); + for ( ; it != _compound.end() ; ++it){ + std::list<GEdge*> ed = (*it)->edges(); + std::list<GEdge*> :: iterator ite = ed.begin(); + for ( ; ite != ed.end() ; ++ite){ + std::set<GEdge*>::iterator itf = _unique.find(*ite); + if (itf == _unique.end())_unique.insert(*ite); + else _unique.erase(itf); + } + } + std::set<GEdge*>::iterator itf = _unique.begin(); + for ( ; itf != _unique.end() ; ++itf){ + l_edges.push_back(*itf); + (*itf)->addFace(this); + } + +} + +GFaceCompound::GFaceCompound(GModel *m, int tag, std::list<GFace*> &compound, + std::list<GEdge*> &U0, + std::list<GEdge*> &V0, + std::list<GEdge*> &U1, + std::list<GEdge*> &V1) : + GFace(m,tag),_compound(compound),_U0(U0),_U1(U1),_V0(V0),_V1(V1), oct(0) +{ + printf("%d %d %d %d \n",_U0.size(),_U1.size(),_V0.size(),_V1.size()); + getBoundingEdges(); +} +GFaceCompound::~GFaceCompound(){ + if (oct){ + Octree_Delete(oct); + delete [] _gfct; + } +} + +void GFaceCompound::parametrize (bool _isU) const +{ + gmshLinearSystemGmm lsys; + gmshAssembler myAssembler(&lsys); + + if (!_U0.size()){ + std::list<GEdge*> :: const_iterator it = l_edges.begin(); + for ( ; it != l_edges.end() ; ++it){ + if (_isU)fixEdgeToValueX (*it, myAssembler); + else fixEdgeToValueY (*it, myAssembler); + } + } + else if (!_U1.size()){ + std::list<GEdge*> :: const_iterator it = _U0.begin(); + for ( ; it != _U0.end() ; ++it){ + if (_isU)fixEdgeToValueX (*it, myAssembler); + else fixEdgeToValueY (*it, myAssembler); + } + } + else{ + if (_isU){ + std::list<GEdge*> :: const_iterator it = _U0.begin(); + for ( ; it != _U0.end() ; ++it){ + fixEdgeToValue (*it, 0.0, myAssembler); + } + it = _U1.begin(); + for ( ; it != _U1.end() ; ++it){ + fixEdgeToValue (*it, 1.0, myAssembler); + } + } + else{ + std::list<GEdge*> :: const_iterator it = _V0.begin(); + for ( ; it != _V0.end() ; ++it){ + fixEdgeToValue (*it, 0.0, myAssembler); + } + it = _V1.begin(); + for ( ; it != _V1.end() ; ++it){ + fixEdgeToValue (*it, 1.0, myAssembler); + } + } + } + + std::list<GFace*> :: const_iterator it = _compound.begin(); + for ( ; it != _compound.end() ; ++it){ + for ( int i=0;i<(*it)->triangles.size() ; ++i){ + MTriangle *t = (*it)->triangles[i]; + myAssembler.numberVertex(t->getVertex(0),0, 1); + myAssembler.numberVertex(t->getVertex(1),0, 1); + myAssembler.numberVertex(t->getVertex(2),0, 1); + } + } + printf("%d %d %d %d\n",_U0.size(),_U1.size(),_V0.size(),_V1.size()); + printf("creating term %d dofs numbered %d fixed\n", myAssembler.sizeOfR(),myAssembler.sizeOfF()); + gmshLaplaceTerm laplace (model(), 1.0, 1); + it = _compound.begin(); + for ( ; it != _compound.end() ; ++it){ + laplace.addToMatrix (myAssembler, *it); + } + lsys.systemSolve(); + + it = _compound.begin(); + for ( ; it != _compound.end() ; ++it){ + for ( int i=0;i<(*it)->triangles.size() ; ++i){ + MTriangle *t = (*it)->triangles[i]; + double uu[3],vv[3]; + for (int j=0;j<3;j++){ + MVertex *v = t->getVertex(j); + double value = myAssembler.getDofValue(v,0,1); + std::map<MVertex*,SPoint2>::iterator itf = coordinates.find(v); + if (itf == coordinates.end()){ + SPoint2 p (_isU ? value:0.0,_isU ? 0.0:value); + coordinates[v] = p; + } + else{ + if(_isU)itf->second[0]= value; + else itf->second[1]= value; + uu[j] = itf->second[0]; + vv[j] = itf->second[1]; + } + } + } + } + +} + +GPoint GFaceCompound::point(double par1, double par2) const { + parametrize(); + double U,V; + MTriangle *t; + getTriangle (par1, par2, &t, U,V); + SPoint3 p(0,0,0); + if (!t)return GPoint(p.x(),p.y(),p.z(),this); + t->pnt(U,V,0,p); + double par[2] = {par1,par2}; + return GPoint(p.x(),p.y(),p.z(),this,par); +} + +/* + computing dX/du and dX/dv + + + +*/ + +Pair<SVector3,SVector3> GFaceCompound::firstDer(const SPoint2 ¶m) const{ + parametrize(); + double U,V; + MTriangle *t; + getTriangle (param.x(), param.y(), &t, U,V); + double jac[3][3]; + t->getJacobian(U,V,0,jac); + return Pair<SVector3, SVector3>(SVector3(jac[0][0],jac[0][1],jac[0][2]), + SVector3(jac[1][0],jac[1][1],jac[1][2])); +} + +static void GFaceCompoundBB(void *a, double*mmin, double*mmax){ + GFaceCompoundTriangle *t = (GFaceCompoundTriangle *)a; + mmin[0] = std::min(std::min(t->p1.x(),t->p2.x()),t->p3.x()); + mmin[1] = std::min(std::min(t->p1.y(),t->p2.y()),t->p3.y()); + mmax[0] = std::max(std::max(t->p1.x(),t->p2.x()),t->p3.x()); + mmax[1] = std::max(std::max(t->p1.y(),t->p2.y()),t->p3.y()); + mmin[2] = -1; + mmax[2] = 1; +} +static void GFaceCompoundCentroid(void *a, double*c){ + GFaceCompoundTriangle *t = (GFaceCompoundTriangle *)a; + c[0] = (t->p1.x() + t->p2.x() + t->p3.x())/3.0; + c[1] = (t->p1.y() + t->p2.y() + t->p3.y())/3.0; + c[2] = 0.0; +} + +static int GFaceCompoundInEle(void *a, double*c){ + GFaceCompoundTriangle *t = (GFaceCompoundTriangle *)a; + double M[2][2],R[2],X[2]; + const double eps = 1.e-6; + const SPoint2 p0 = t->p1; + const SPoint2 p1 = t->p2; + const SPoint2 p2 = t->p3; + M[0][0] = p1.x() - p0.x(); + M[0][1] = p2.x() - p0.x(); + M[1][0] = p1.y() - p0.y(); + M[1][1] = p2.y() - p0.y(); + R[0] = (c[0] - p0.x()); + R[1] = (c[1] - p0.y()); + sys2x2(M,R,X); + if (X[0] > -eps && + X[1] > -eps && + 1.-X[0]-X[1] > -eps){ + return 1; + } + return 0; +} + + +void GFaceCompound::getTriangle (double u, double v, + MTriangle **t, + double &_u, double &_v)const { + parametrize(); + + double uv[3] = {u,v,0}; + GFaceCompoundTriangle *tt = (GFaceCompoundTriangle*)Octree_Search(uv, oct); + if (!tt){*t = 0; return;} + + *t = tt->t; + double M[2][2],X[2],R[2]; + const double eps = 1.e-6; + const SPoint2 p0 = tt->p1; + const SPoint2 p1 = tt->p2; + const SPoint2 p2 = tt->p3; + M[0][0] = p1.x() - p0.x(); + M[0][1] = p2.x() - p0.x(); + M[1][0] = p1.y() - p0.y(); + M[1][1] = p2.y() - p0.y(); + R[0] = (u - p0.x()); + R[1] = (v - p0.y()); + sys2x2(M,R,X); + _u = X[0]; + _v = X[1]; + return; + + + + + +// std::list<GFace*> :: const_iterator it = _compound.begin(); +// for ( ; it != _compound.end() ; ++it){ +// for ( int i=0;i<(*it)->triangles.size() ; ++i){ +// *t = (*it)->triangles[i]; +// std::map<MVertex*,SPoint2>::const_iterator it0 = +// coordinates.find((*t)->getVertex(0)); +// std::map<MVertex*,SPoint2>::const_iterator it1 = +// coordinates.find((*t)->getVertex(1)); +// std::map<MVertex*,SPoint2>::const_iterator it2 = +// coordinates.find((*t)->getVertex(2)); +// const SPoint2 p0 = it0->second; +// const SPoint2 p1 = it1->second; +// const SPoint2 p2 = it2->second; +// M[0][0] = p1.x() - p0.x(); +// M[0][1] = p2.x() - p0.x(); +// M[1][0] = p1.y() - p0.y(); +// M[1][1] = p2.y() - p0.y(); +// R[0] = (u - p0.x()); +// R[1] = (v - p0.y()); +// sys2x2(M,R,X); +// // printf("T (%g %g,%g %g,%g %g) %g %g vs %g %g\n",p0.x(),p0.y(),p1.x(),p1.y(),p2.x(),p2.y(),u,v,X[0],X[1]); +// if (X[0] > -eps && +// X[1] > -eps && +// 1.-X[0]-X[1] > -eps){ +// _u = X[0]; +// _v = X[1]; +// // printf("OK -- %g %g\n",_u,_v); +// return; +// } +// } +// } +// printf("NOT OK -- %g %g\n",u,v); +// *t = 0; +} + +void GFaceCompound::buildOct() const { + + SBoundingBox3d bb; + int count; + std::list<GFace*> :: const_iterator it = _compound.begin(); + for ( ; it != _compound.end() ; ++it){ + for ( int i=0;i<(*it)->triangles.size() ; ++i){ + MTriangle *t = (*it)->triangles[i]; + for (int j=0;j<3;j++){ + std::map<MVertex*,SPoint2>::const_iterator itj = + coordinates.find(t->getVertex(j)); + bb += SPoint3(itj->second.x(),itj->second.y(),0.0); + } + count++; + } + } + _gfct = new GFaceCompoundTriangle[count]; + double origin[3] = {bb.min().x(),bb.min().y(),bb.min().z()}; + double ssize[3] = {bb.max().x()-bb.min().x(), + bb.max().y()-bb.min().y(), + bb.max().z()-bb.min().z()}; + oct = Octree_Create(10,origin,ssize,GFaceCompoundBB,GFaceCompoundCentroid,GFaceCompoundInEle); + + it = _compound.begin(); + count = 0; + + + FILE * uvx = fopen ("UVX.pos","w"); + FILE * uvy = fopen ("UVY.pos","w"); + FILE * uvz = fopen ("UVZ.pos","w"); + FILE * xyzu = fopen("XYZU.pos","w"); + FILE * xyzv = fopen("XYZV.pos","w"); + + fprintf(uvx,"View \"\"{\n"); + fprintf(uvy,"View \"\"{\n"); + fprintf(uvz,"View \"\"{\n"); + fprintf(xyzu,"View \"\"{\n"); + fprintf(xyzv,"View \"\"{\n"); + + for ( ; it != _compound.end() ; ++it){ + for ( int i=0;i<(*it)->triangles.size() ; ++i){ + MTriangle *t = (*it)->triangles[i]; + std::map<MVertex*,SPoint2>::const_iterator it0 = + coordinates.find(t->getVertex(0)); + std::map<MVertex*,SPoint2>::const_iterator it1 = + coordinates.find(t->getVertex(1)); + std::map<MVertex*,SPoint2>::const_iterator it2 = + coordinates.find(t->getVertex(2)); + _gfct[count].p1 = it0->second; + _gfct[count].p2 = it1->second; + _gfct[count].p3 = it2->second; + _gfct[count].t = t; + fprintf(xyzu,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%g,%g,%g};\n", + t->getVertex(0)->x(), + t->getVertex(0)->y(), + t->getVertex(0)->z(), + t->getVertex(1)->x(), + t->getVertex(1)->y(), + t->getVertex(1)->z(), + t->getVertex(2)->x(), + t->getVertex(2)->y(), + t->getVertex(2)->z(), + it0->second.x(),it1->second.x(),it2->second.x()); + fprintf(xyzv,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%g,%g,%g};\n", + t->getVertex(0)->x(), + t->getVertex(0)->y(), + t->getVertex(0)->z(), + t->getVertex(1)->x(), + t->getVertex(1)->y(), + t->getVertex(1)->z(), + t->getVertex(2)->x(), + t->getVertex(2)->y(), + t->getVertex(2)->z(), + it0->second.y(),it1->second.y(),it2->second.y()); + fprintf(uvx,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%g,%g,%g};\n", + it0->second.x(),it0->second.y(),0.0, + it1->second.x(),it1->second.y(),0.0, + it2->second.x(),it2->second.y(),0.0, + t->getVertex(0)->x(),t->getVertex(1)->x(),t->getVertex(2)->x()); + fprintf(uvy,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%g,%g,%g};\n", + it0->second.x(),it0->second.y(),0.0, + it1->second.x(),it1->second.y(),0.0, + it2->second.x(),it2->second.y(),0.0, + t->getVertex(0)->y(),t->getVertex(1)->y(),t->getVertex(2)->y()); + fprintf(uvz,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%g,%g,%g};\n", + it0->second.x(),it0->second.y(),0.0, + it1->second.x(),it1->second.y(),0.0, + it2->second.x(),it2->second.y(),0.0, + t->getVertex(0)->z(),t->getVertex(1)->z(),t->getVertex(2)->z()); + + Octree_Insert(&_gfct[count], oct); + count ++; + } + } + fprintf(uvx,"};\n"); + fclose(uvx); + fprintf(uvy,"};\n"); + fclose(uvy); + fprintf(uvz,"};\n"); + fclose(uvz); + fprintf(xyzu,"};\n"); + fclose(xyzu); + fprintf(xyzv,"};\n"); + fclose(xyzv); + Octree_Arrange(oct); +} + diff --git a/Geo/GFaceCompound.h b/Geo/GFaceCompound.h new file mode 100644 index 0000000000000000000000000000000000000000..b4d142d094b8fdce72484ab5f98a0bc9dfe985c2 --- /dev/null +++ b/Geo/GFaceCompound.h @@ -0,0 +1,83 @@ +// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle +// +// See the LICENSE.txt file for license information. Please report all +// bugs and problems to <gmsh@geuz.org>. + +#ifndef _G_FACECOMPOUND_H_ +#define _G_FACECOMPOUND_H_ + +#include "Geo.h" +#include "GFace.h" + +/* +A GFaceCompound is a model face that is the +compound of model faces. + +The user selects 4 corners to the compound. + +Those 2 corners are mapped to points +(0,0), (1,0), (1,1) and (0,1) + +of the compound parametric plane. + +It is assumed that all the faces of the +compound have been meshed first. We use +this discretization to solve 2 elliptic +problems on the compound. Those 2 problems +enables to compute the parametric coordinates +of the mesh points. The parametrization of +the compound consist in a triangulation in +the (u,v) space with parameter values at nodes. + +The compound can therefore be re-meshed using +any surface mesh generator of gmsh ! + +*/ + +#include "GFace.h" +#include "GEdge.h" +typedef struct { + SPoint2 p1, p2, p3; + MTriangle *t; +} GFaceCompoundTriangle; + +class Octree; + +class GFaceCompound : public GFace { + protected: + std::list<GFace*> _compound; + std::list<GEdge*> _U0,_U1,_V0,_V1; + mutable GFaceCompoundTriangle *_gfct; + mutable Octree *oct; + mutable std::map<MVertex*,SPoint2> coordinates; + void buildOct()const ; + void parametrize(bool) const ; + void parametrize() const { + if (!oct){ + parametrize(0); + parametrize(1); + buildOct(); + } + } + void getBoundingEdges(); + void getTriangle (double u, double v, MTriangle **t, double &_u, double &_v) const; +public: + GFaceCompound(GModel *m, int tag, + std::list<GFace*> &compound, + std::list<GEdge*> &U0, + std::list<GEdge*> &U1, + std::list<GEdge*> &V0, + std::list<GEdge*> &V1); + virtual ~GFaceCompound(); + Range<double> parBounds(int i) const{return Range<double>(0, 1);} + virtual GPoint point(double par1, double par2) const; + virtual GPoint closestPoint(const SPoint3 & queryPoint, const double initialGuess[2]) const{throw;} + virtual Pair<SVector3,SVector3> firstDer(const SPoint2 ¶m) const; + virtual GEntity::GeomType geomType() const {return CompoundSurface;} + ModelType getNativeType() const { return GmshModel; } + void * getNativePtr() const { return 0; } + SPoint2 getCoordinates (MVertex *v) const { parametrize() ; return coordinates[v];} + virtual bool buildRepresentationCross(){}; +}; + +#endif diff --git a/Geo/GModelIO_Geo.cpp b/Geo/GModelIO_Geo.cpp index aef507ff238b74647b15a41f545882272a128c05..40bc11fde83ccaafe6f13fbdb38421dbcc46a969 100644 --- a/Geo/GModelIO_Geo.cpp +++ b/Geo/GModelIO_Geo.cpp @@ -12,6 +12,7 @@ #include "Message.h" #include "gmshVertex.h" #include "gmshFace.h" +#include "GFaceCompound.h" #include "gmshEdge.h" #include "gmshRegion.h" #include "Field.h" @@ -111,6 +112,7 @@ int GModel::importGEOInternals() for(int i = 0; i < List_Nbr(_geo_internals->PhysicalGroups); i++){ PhysicalGroup *p; List_Read(_geo_internals->PhysicalGroups, i, &p); + std::list<GFace*>f_compound; for(int j = 0; j < List_Nbr(p->Entities); j++){ int num; List_Read(p->Entities, j, &num); @@ -118,7 +120,10 @@ int GModel::importGEOInternals() switch(p->Typ){ case MSH_PHYSICAL_POINT: ge = getVertexByTag(abs(num)); break; case MSH_PHYSICAL_LINE: ge = getEdgeByTag(abs(num)); break; - case MSH_PHYSICAL_SURFACE: ge = getFaceByTag(abs(num)); break; + case MSH_PHYSICAL_SURFACE: + f_compound.push_back(getFaceByTag(abs(num))); + ge = getFaceByTag(abs(num)); + break; case MSH_PHYSICAL_VOLUME: ge = getRegionByTag(abs(num)); break; } int pnum = sign(num) * p->Num; @@ -126,6 +131,29 @@ int GModel::importGEOInternals() ge->physicals.end()) ge->physicals.push_back(pnum); } + // the physical is a compound i.e. we allow the meshes + // not to conform internal MEdges of the compound + if (p->Typ == MSH_PHYSICAL_SURFACE && p->Boundaries[0]){ + int i = 0; + List_T *bnd; + std::list<GEdge*> b[4]; + while(bnd = p->Boundaries[i]){ + if (i > 3)break; + for(int j = 0; j < List_Nbr(bnd); j++){ + int ie; + List_Read(bnd,j,&ie); + b[i].push_back(getEdgeByTag(abs(ie))); + } + i++; + } + GFace *gf = getFaceByTag(abs(p->Num)); + if (!gf){ + GFaceCompound *gf = new GFaceCompound (this, p->Num , f_compound, b[0], b[1], b[2], b[3]); + add (gf); + } + else + gf->resetMeshAttributes(); + } } Msg::Debug("Gmsh model imported:"); diff --git a/Geo/GModelIO_Mesh.cpp b/Geo/GModelIO_Mesh.cpp index be4d7bf54ee4b6c7eb7f7da435cae75d050c383d..d375b23e809d98e41bfcc010f83d74fa6358adc1 100644 --- a/Geo/GModelIO_Mesh.cpp +++ b/Geo/GModelIO_Mesh.cpp @@ -1248,7 +1248,7 @@ int GModel::readMESH(const std::string &name) char str[256]; int format; sscanf(buffer, "%s %d", str, &format); - if(format != 1){ + if(format == 3){ Msg::Error("Medit mesh import only available for ASCII files"); return 0; } diff --git a/Geo/Geo.cpp b/Geo/Geo.cpp index f5f334544eab68dfc3f51406198a6234452e0c40..22d0be8ba850c6237b6b255f1bb704f156debcb0 100644 --- a/Geo/Geo.cpp +++ b/Geo/Geo.cpp @@ -138,7 +138,7 @@ static void Free_Vertex(void *a, void *b) } } -PhysicalGroup *Create_PhysicalGroup(int Num, int typ, List_T *intlist) +PhysicalGroup *Create_PhysicalGroup(int Num, int typ, List_T *intlist, List_T *bndlist[4]) { PhysicalGroup *p = (PhysicalGroup *)Malloc(sizeof(PhysicalGroup)); p->Entities = List_Create(List_Nbr(intlist), 1, sizeof(int)); @@ -152,6 +152,17 @@ PhysicalGroup *Create_PhysicalGroup(int Num, int typ, List_T *intlist) List_Read(intlist, i, &j); List_Add(p->Entities, &j); } + p->Boundaries[0] = p->Boundaries[1] = p->Boundaries[2] = p->Boundaries[3] = 0; + if (bndlist){ + for(int i = 0; i < 4; i++) { + p->Boundaries[i] = List_Create(List_Nbr(bndlist[i]), 1, sizeof(int)); + for(int j = 0; j < List_Nbr(bndlist[i]); j++) { + int k; + List_Read(bndlist[i], j, &k); + List_Add(p->Boundaries[i], &k); + } + } + } return p; } diff --git a/Geo/Geo.h b/Geo/Geo.h index 7bd96d7cd5e1cc2d628013b90f048f8eb66c32df..540d219ee4ce638689786d875448d6dcae6ba7d1 100644 --- a/Geo/Geo.h +++ b/Geo/Geo.h @@ -52,6 +52,9 @@ #define MSH_PHYSICAL_SURFACE 502 #define MSH_PHYSICAL_VOLUME 503 +#define MSH_PHYSICAL_SURFACE 502 + + struct Coord{ double X, Y, Z; }; @@ -182,6 +185,7 @@ typedef struct{ int Typ; char Visible; List_T *Entities; + List_T *Boundaries[4]; }PhysicalGroup; class GEO_Internals{ @@ -222,7 +226,7 @@ Surface *Create_Surface(int Num, int Typ); Volume *Create_Volume(int Num, int Typ); EdgeLoop *Create_EdgeLoop(int Num, List_T * intlist); SurfaceLoop *Create_SurfaceLoop(int Num, List_T * intlist); -PhysicalGroup *Create_PhysicalGroup(int Num, int typ, List_T * intlist); +PhysicalGroup *Create_PhysicalGroup(int Num, int typ, List_T * intlist, List_T *bndlist[4] = 0); void End_Curve(Curve * c); void End_Surface(Surface * s); diff --git a/Geo/MVertex.cpp b/Geo/MVertex.cpp index 1214f57969d031c6722cee47886fda5bbeb31e85..ad1250cf1193af11378f353f49dbe7518a05262b 100644 --- a/Geo/MVertex.cpp +++ b/Geo/MVertex.cpp @@ -8,6 +8,7 @@ #include "MVertex.h" #include "GEdge.h" #include "GFace.h" +#include "GFaceCompound.h" #include "Message.h" #include "StringUtils.h" @@ -162,6 +163,14 @@ MVertex::linearSearch(std::set<MVertex*, MVertexLessThanLexicographic> &pos) void parametricCoordinates(const MVertex *ver, const GFace *gf, double &u, double &v) { + if (gf->geomType() == GEntity::CompoundSurface){ + GFaceCompound *gfc = (GFaceCompound*) gf; + SPoint2 p = gfc->getCoordinates((MVertex*)ver); + u = p.x(); + v = p.y(); + return; + } + GEntity *ge = ver->onWhat(); if(ge->dim() == 2){ ver->getParameter(0, u); diff --git a/Geo/Makefile b/Geo/Makefile index b09968effaaaa1acc0db2d04b820e56b13d8ffcc..74dad4f33a4a9adb2dafb600c7873cd740a06ed5 100644 --- a/Geo/Makefile +++ b/Geo/Makefile @@ -10,12 +10,12 @@ LIB = ../lib/libGmshGeo${LIBEXT} INC = ${DASH}I../Common ${DASH}I../Geo ${DASH}I../Mesh\ ${DASH}I../Post ${DASH}I../Numeric ${DASH}I../Parser ${DASH}I../Fltk\ ${DASH}I../contrib/NR ${DASH}I../contrib/ANN/include\ - ${DASH}I../contrib/MathEval + ${DASH}I../contrib/MathEval ${DASH}I../contrib/gmm CFLAGS = ${OPTIM} ${FLAGS} ${INC} ${SYSINCLUDE} SRC = GEntity.cpp\ - GVertex.cpp GEdge.cpp GEdgeLoop.cpp GFace.cpp GRegion.cpp\ + GVertex.cpp GEdge.cpp GEdgeLoop.cpp GFace.cpp GFaceCompound.cpp GRegion.cpp\ gmshVertex.cpp gmshEdge.cpp gmshFace.cpp gmshRegion.cpp gmshSurface.cpp\ OCCVertex.cpp OCCEdge.cpp OCCFace.cpp OCCRegion.cpp\ discreteEdge.cpp discreteFace.cpp discreteRegion.cpp\ @@ -72,19 +72,121 @@ GEntity.o: GEntity.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \ MVertex.h MEdge.h MFace.h ../Common/Message.h \ ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - ../Common/VertexArray.h ../Geo/SVector3.h ../Common/Context.h \ - ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/VertexArray.h ../Geo/SVector3.h \ + ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h GVertex.o: GVertex.cpp GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GFace.h GEdgeLoop.h GEdge.h \ SVector3.h Pair.h MElement.h ../Common/GmshDefines.h MVertex.h MEdge.h \ MFace.h ../Common/Message.h ../Numeric/FunctionSpace.h \ - ../Common/GmshMatrix.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h GEdge.o: GEdge.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \ MVertex.h MEdge.h MFace.h ../Common/Message.h \ ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - ../Numeric/GaussLegendre1D.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/GaussLegendre1D.h GEdgeLoop.o: GEdgeLoop.cpp GEdgeLoop.h GEdge.h GEntity.h Range.h \ SPoint3.h SBoundingBox3d.h GVertex.h GPoint.h SPoint2.h SVector3.h \ ../Common/Message.h @@ -93,14 +195,135 @@ GFace.o: GFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \ MVertex.h MEdge.h MFace.h ../Common/Message.h \ ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - ../Common/VertexArray.h ../Geo/SVector3.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h ../Numeric/GaussLegendre1D.h \ - ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/VertexArray.h ../Geo/SVector3.h \ + ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \ + ../Numeric/GaussLegendre1D.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Mesh/PartitionOptions.h +GFaceCompound.o: GFaceCompound.cpp GFaceCompound.h Geo.h \ + ../Common/GmshDefines.h gmshSurface.h Pair.h Range.h SPoint2.h \ + SPoint3.h SVector3.h SBoundingBox3d.h ../Numeric/Numeric.h \ + ../Numeric/NumericEmbedded.h ../Common/ListUtils.h \ + ../Common/TreeUtils.h ../Common/avl.h ../Common/ListUtils.h \ + ExtrudeParams.h ../Common/SmoothData.h GFace.h GEntity.h GPoint.h \ + GEdgeLoop.h GEdge.h GVertex.h ../Numeric/gmshAssembler.h \ + ../Numeric/gmshLinearSystem.h ../Numeric/gmshLaplace.h \ + ../Numeric/gmshTermOfFormulation.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Gmsh.h ../Geo/GModel.h \ + ../Geo/GVertex.h ../Geo/GEdge.h ../Geo/GFace.h ../Geo/GRegion.h \ + ../Geo/GEntity.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ + ../Geo/MElement.h ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h \ + ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \ + ../Geo/SVector3.h ../Common/Message.h ../Numeric/FunctionSpace.h \ + ../Common/Octree.h ../Common/OctreeInternals.h \ + ../Numeric/gmshGmmLinearSystem.h ../Numeric/gmshLinearSystem.h GRegion.o: GRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \ MVertex.h MEdge.h MFace.h ../Common/Message.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h gmshVertex.o: gmshVertex.cpp GFace.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h GEdgeLoop.h GEdge.h GVertex.h SPoint2.h \ SVector3.h Pair.h gmshVertex.h Geo.h ../Common/GmshDefines.h \ @@ -108,15 +331,51 @@ gmshVertex.o: gmshVertex.cpp GFace.h GEntity.h Range.h SPoint3.h \ ../Common/ListUtils.h ../Common/TreeUtils.h ../Common/avl.h \ ../Common/ListUtils.h ExtrudeParams.h ../Common/SmoothData.h \ GeoInterpolation.h ../Common/Message.h MVertex.h MElement.h MEdge.h \ - MFace.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h + MFace.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h gmshEdge.o: gmshEdge.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ - GEdgeLoop.h Pair.h GRegion.h gmshEdge.h Geo.h ../Common/GmshDefines.h \ - gmshSurface.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \ - ../Common/ListUtils.h ../Common/TreeUtils.h ../Common/avl.h \ - ../Common/ListUtils.h ExtrudeParams.h ../Common/SmoothData.h \ - GeoInterpolation.h ../Common/Message.h ../Common/Context.h \ - ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h + GEdgeLoop.h Pair.h GRegion.h GFaceCompound.h Geo.h \ + ../Common/GmshDefines.h gmshSurface.h ../Numeric/Numeric.h \ + ../Numeric/NumericEmbedded.h ../Common/ListUtils.h \ + ../Common/TreeUtils.h ../Common/avl.h ../Common/ListUtils.h \ + ExtrudeParams.h ../Common/SmoothData.h gmshEdge.h GeoInterpolation.h \ + ../Common/Message.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Mesh/PartitionOptions.h gmshFace.o: gmshFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ GEdgeLoop.h Pair.h GRegion.h gmshFace.h Geo.h ../Common/GmshDefines.h \ @@ -134,28 +393,1728 @@ gmshRegion.o: gmshRegion.cpp GModel.h GVertex.h GEntity.h Range.h \ ExtrudeParams.h ../Common/SmoothData.h ../Common/Message.h gmshSurface.o: gmshSurface.cpp gmshSurface.h Pair.h Range.h SPoint2.h \ SPoint3.h SVector3.h SBoundingBox3d.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h ../Common/Message.h + ../Numeric/NumericEmbedded.h ../Common/Message.h \ + ../contrib/MathEval/matheval.h OCCVertex.o: OCCVertex.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ GEdgeLoop.h Pair.h GRegion.h MVertex.h MElement.h \ ../Common/GmshDefines.h MEdge.h MFace.h ../Common/Message.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h OCCVertex.h \ - OCCIncludes.h OCCEdge.h OCCFace.h + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h OCCVertex.h OCCIncludes.h \ + /usr/local/opencascade//inc/config.h \ + /usr/local/opencascade//inc/BRep_Tool.hxx \ + /usr/local/opencascade//inc/Standard_Boolean.hxx \ + /usr/local/opencascade//inc/Standard_TypeDef.hxx \ + /usr/local/opencascade//inc/Standard_Macro.hxx \ + /usr/local/opencascade//inc/Standard_Stream.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Surface.hxx \ + /usr/local/opencascade//inc/Standard.hxx \ + /usr/local/opencascade//inc/Standard_Address.hxx \ + /usr/local/opencascade//inc/Standard_Integer.hxx \ + /usr/local/opencascade//inc/Standard_values.h \ + /usr/local/opencascade//inc/Standard_OStream.hxx \ + /usr/local/opencascade//inc/Standard_CString.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_PrimitiveTypes.hxx \ + /usr/local/opencascade//inc/Standard_Real.hxx \ + /usr/local/opencascade//inc/Standard_Character.hxx \ + /usr/local/opencascade//inc/Standard_ctype.hxx \ + /usr/local/opencascade//inc/Standard_ExtCharacter.hxx \ + /usr/local/opencascade//inc/Standard_ExtString.hxx \ + /usr/local/opencascade//inc/Standard_Storable.hxx \ + /usr/local/opencascade//inc/Standard_Transient_proto.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon3D.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon2D.hxx \ + /usr/local/opencascade//inc/Handle_Poly_PolygonOnTriangulation.hxx \ + /usr/local/opencascade//inc/GeomAbs_Shape.hxx \ + /usr/local/opencascade//inc/Geom_Curve.hxx \ + /usr/local/opencascade//inc/Geom_Geometry.hxx \ + /usr/local/opencascade//inc/MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_Type.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Type.hxx \ + /usr/local/opencascade//inc/Standard_KindOfType.hxx \ + /usr/local/opencascade//inc/Standard_Type.lxx \ + /usr/local/opencascade//inc/Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Geom_Surface.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPS.hxx \ + /usr/local/opencascade//inc/Adaptor3d_SurfacePtr.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElS.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.hxx \ + /usr/local/opencascade//inc/gp_Pnt.hxx \ + /usr/local/opencascade//inc/gp_XYZ.hxx \ + /usr/local/opencascade//inc/gp_XYZ.lxx \ + /usr/local/opencascade//inc/gp.hxx /usr/local/opencascade//inc/gp.lxx \ + /usr/local/opencascade//inc/gp_Mat.hxx \ + /usr/local/opencascade//inc/gp_Mat.lxx \ + /usr/local/opencascade//inc/Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_SStream.hxx \ + /usr/local/opencascade//inc/Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_Failure.lxx \ + /usr/local/opencascade//inc/Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/gp_Pnt.lxx \ + /usr/local/opencascade//inc/gp_Trsf.hxx \ + /usr/local/opencascade//inc/gp_TrsfForm.hxx \ + /usr/local/opencascade//inc/gp_Trsf.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.lxx \ + /usr/local/opencascade//inc/gp_XY.hxx \ + /usr/local/opencascade//inc/gp_XY.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.lxx \ + /usr/local/opencascade//inc/gp_Pnt2d.hxx \ + /usr/local/opencascade//inc/gp_Pnt2d.lxx \ + /usr/local/opencascade//inc/gp_Vec2d.hxx \ + /usr/local/opencascade//inc/gp_Vec2d.lxx \ + /usr/local/opencascade//inc/gp_Dir2d.hxx \ + /usr/local/opencascade//inc/gp_Dir2d.lxx \ + /usr/local/opencascade//inc/gp_Ax2d.hxx \ + /usr/local/opencascade//inc/gp_Ax2d.lxx \ + /usr/local/opencascade//inc/gp_Vec.hxx \ + /usr/local/opencascade//inc/gp_Vec.lxx \ + /usr/local/opencascade//inc/gp_Dir.hxx \ + /usr/local/opencascade//inc/gp_Dir.lxx \ + /usr/local/opencascade//inc/gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Handle_gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.lxx \ + /usr/local/opencascade//inc/Extrema_GenExtPS.hxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray2OfPnt.hxx \ + /usr/local/opencascade//inc/Extrema_FuncExtPS.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfReal.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.lxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfReal.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_SeqNode.hxx \ + /usr/local/opencascade//inc/TCollection_Sequence.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/math_FunctionSetWithDerivatives.hxx \ + /usr/local/opencascade//inc/math_FunctionSet.hxx \ + /usr/local/opencascade//inc/GeomAbs_SurfaceType.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Surface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineSurface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/Quantity_Parameter.hxx \ + /usr/local/opencascade//inc/Quantity_Length.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElC.hxx \ + /usr/local/opencascade//inc/Extrema_POnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_Point.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_EPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_PCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Extrema_SeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/math_FunctionWithDerivative.hxx \ + /usr/local/opencascade//inc/math_Function.hxx \ + /usr/local/opencascade//inc/GeomAbs_CurveType.hxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.lxx \ + /usr/local/opencascade//inc/BRepTools.hxx \ + /usr/local/opencascade//inc/Standard_IStream.hxx \ + /usr/local/opencascade//inc/TopExp.hxx \ + /usr/local/opencascade//inc/TopAbs_ShapeEnum.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShape.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.hxx \ + /usr/local/opencascade//inc/TopLoc_SListOfItemLocation.hxx \ + /usr/local/opencascade//inc/Handle_TopLoc_SListNodeOfSListOfItemLocation.hxx \ + /usr/local/opencascade//inc/TCollection_SList.lxx \ + /usr/local/opencascade//inc/Handle_TopLoc_Datum3D.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.lxx \ + /usr/local/opencascade//inc/TopLoc_ItemLocation.hxx \ + /usr/local/opencascade//inc/TopLoc_TrsfPtr.hxx \ + /usr/local/opencascade//inc/TopAbs_Orientation.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopoDS_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_MapNode.hxx \ + /usr/local/opencascade//inc/TCollection_List.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.lxx \ + /usr/local/opencascade//inc/TopAbs.hxx \ + /usr/local/opencascade//inc/TopAbs_State.hxx \ + /usr/local/opencascade//inc/TopTools_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepLib_Command.hxx \ + /usr/local/opencascade//inc/BRepLib_ShapeModification.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Command.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepOffsetAPI_Sewing.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/Handle_BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.hxx \ + /usr/local/opencascade//inc/TCollection_MapNodePtr.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.lxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedMapNodeOfIndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/TopTools_MapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_StdMapNodeOfMapOfShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.lxx \ + /usr/local/opencascade//inc/BRepLProp_SLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/TopoDS_Face.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/LProp_Status.hxx \ + /usr/local/opencascade//inc/Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt.hxx \ + /usr/local/opencascade//inc/TCollection_Array1.lxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray1OfPnt2d.hxx \ + /usr/local/opencascade//inc/Poly_Array1OfTriangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.lxx \ + /usr/local/opencascade//inc/Poly_Triangulation.lxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt2d.hxx \ + /usr/local/opencascade//inc/GProp_GProps.hxx \ + /usr/local/opencascade//inc/BRepGProp.hxx \ + /usr/local/opencascade//inc/TopoDS.hxx \ + /usr/local/opencascade//inc/TopoDS.lxx \ + /usr/local/opencascade//inc/Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/Handle_Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/TopoDS_Solid.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.hxx \ + /usr/local/opencascade//inc/TopExp_Stack.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.lxx \ + /usr/local/opencascade//inc/BRep_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder3D.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Wire.hxx \ + /usr/local/opencascade//inc/BRepTools_WireExplorer.hxx \ + /usr/local/opencascade//inc/TopoDS_Edge.hxx \ + /usr/local/opencascade//inc/TopoDS_Vertex.hxx \ + /usr/local/opencascade//inc/BRepLProp_CLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurveOnSurface.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.hxx \ + /usr/local/opencascade//inc/XSControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_XSControl_WorkSession.hxx \ + /usr/local/opencascade//inc/Handle_IFSelect_WorkSession.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/TopTools_SequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_SequenceNodeOfSequenceOfShape.hxx \ + /usr/local/opencascade//inc/IFSelect_ReturnStatus.hxx \ + /usr/local/opencascade//inc/Handle_Interface_InterfaceModel.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintCount.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESModel.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintFail.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.lxx \ + /usr/local/opencascade//inc/STEPControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_StepData_StepModel.hxx \ + /usr/local/opencascade//inc/IGESToBRep_Reader.hxx \ + /usr/local/opencascade//inc/Handle_IGESToBRep_Actor.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfTransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfProcessForTransient.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_TransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForTransient.hxx \ + /usr/local/opencascade//inc/Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Handle_MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.lxx \ + /usr/local/opencascade//inc/Interface_ParamType.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HArray1OfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfInteger.hxx \ + /usr/local/opencascade//inc/Interface_StaticSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Interface_ValueInterpret.hxx \ + /usr/local/opencascade//inc/Interface_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueType.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueInterpret.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HExtendedString.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.lxx \ + /usr/local/opencascade//inc/MoniTool_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfHAsciiString.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtCC.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.lxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.hxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.lxx \ + /usr/local/opencascade//inc/ShapeUpgrade_ShellSewing.hxx \ + /usr/local/opencascade//inc/Handle_ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_BasicMsgRegistrator.hxx \ + /usr/local/opencascade//inc/Message_Gravity.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.lxx \ + /usr/local/opencascade//inc/Precision.hxx \ + /usr/local/opencascade//inc/Precision.lxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Edge.hxx \ + /usr/local/opencascade//inc/ShapeExtend_Status.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.lxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.lxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Compound.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.lxx \ + /usr/local/opencascade//inc/ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Surface.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/ShapeFix_Face.lxx \ + /usr/local/opencascade//inc/ShapeExtend.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.lxx \ + /usr/local/opencascade//inc/ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_HSequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.lxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.lxx \ + /usr/local/opencascade//inc/BRepMesh.hxx \ + /usr/local/opencascade//inc/BRepMesh_IncrementalMesh.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_FastDiscret.hxx \ + /usr/local/opencascade//inc/BRepMesh_DataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_DataMapNodeOfDataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Bnd_Box.hxx \ + /usr/local/opencascade//inc/Bnd_Box.lxx \ + /usr/local/opencascade//inc/BRepBndLib.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis.hxx \ + /usr/local/opencascade//inc/ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/IGESControl_Writer.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_FinderProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForFinder.hxx \ + /usr/local/opencascade//inc/IGESData_BasicEditor.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_Protocol.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Protocol.hxx \ + /usr/local/opencascade//inc/Interface_GeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_NodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GeneralModule.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GlobalNodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/IGESData_SpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_NodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESEntity.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_SpecificModule.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_GlobalNodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/STEPControl_Writer.hxx \ + /usr/local/opencascade//inc/STEPControl_StepModelType.hxx \ + /usr/local/opencascade//inc/StlAPI_Writer.hxx \ + /usr/local/opencascade//inc/Handle_StlMesh_Mesh.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeTolerance.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_DataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_DataMapNodeOfDataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Fuse.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_BooleanOperation.hxx \ + /usr/local/opencascade//inc/BOP_Operation.hxx \ + /usr/local/opencascade//inc/BOPTools_PDSFiller.hxx \ + /usr/local/opencascade//inc/BOP_PBuilder.hxx \ + /usr/local/opencascade//inc/Handle_BOP_HistoryCollector.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.hxx \ + /usr/local/opencascade//inc/BRepCheck_DataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_Result.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_DataMapNodeOfDataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.lxx \ + /usr/local/opencascade//inc/BRepLib.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Plane.hxx \ + /usr/local/opencascade//inc/Handle_Geom_ElementarySurface.hxx \ + /usr/local/opencascade//inc/ShapeFix.hxx \ + /usr/local/opencascade//inc/ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.hxx \ + /usr/local/opencascade//inc/TopoDS_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/TCollection_ListIterator.lxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.lxx \ + /usr/local/opencascade//inc/Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/Handle_Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeSphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Sphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Revolution.hxx \ + /usr/local/opencascade//inc/BRepPrim_OneAxis.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.lxx \ + /usr/local/opencascade//inc/gp_Ax2.hxx \ + /usr/local/opencascade//inc/gp_Ax1.hxx \ + /usr/local/opencascade//inc/gp_Ax1.lxx \ + /usr/local/opencascade//inc/gp_Ax2.lxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeOneAxis.hxx \ + /usr/local/opencascade//inc/TopTools_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Common.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Cut.hxx OCCEdge.h OCCFace.h OCCEdge.o: OCCEdge.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ GEdgeLoop.h Pair.h GRegion.h ../Common/Message.h OCCEdge.h OCCVertex.h \ - OCCIncludes.h OCCFace.h ../Common/Context.h ../Geo/CGNSOptions.h \ - ../Mesh/PartitionOptions.h + OCCIncludes.h /usr/local/opencascade//inc/config.h \ + /usr/local/opencascade//inc/BRep_Tool.hxx \ + /usr/local/opencascade//inc/Standard_Boolean.hxx \ + /usr/local/opencascade//inc/Standard_TypeDef.hxx \ + /usr/local/opencascade//inc/Standard_Macro.hxx \ + /usr/local/opencascade//inc/Standard_Stream.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Surface.hxx \ + /usr/local/opencascade//inc/Standard.hxx \ + /usr/local/opencascade//inc/Standard_Address.hxx \ + /usr/local/opencascade//inc/Standard_Integer.hxx \ + /usr/local/opencascade//inc/Standard_values.h \ + /usr/local/opencascade//inc/Standard_OStream.hxx \ + /usr/local/opencascade//inc/Standard_CString.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_PrimitiveTypes.hxx \ + /usr/local/opencascade//inc/Standard_Real.hxx \ + /usr/local/opencascade//inc/Standard_Character.hxx \ + /usr/local/opencascade//inc/Standard_ctype.hxx \ + /usr/local/opencascade//inc/Standard_ExtCharacter.hxx \ + /usr/local/opencascade//inc/Standard_ExtString.hxx \ + /usr/local/opencascade//inc/Standard_Storable.hxx \ + /usr/local/opencascade//inc/Standard_Transient_proto.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon3D.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon2D.hxx \ + /usr/local/opencascade//inc/Handle_Poly_PolygonOnTriangulation.hxx \ + /usr/local/opencascade//inc/GeomAbs_Shape.hxx \ + /usr/local/opencascade//inc/Geom_Curve.hxx \ + /usr/local/opencascade//inc/Geom_Geometry.hxx \ + /usr/local/opencascade//inc/MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_Type.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Type.hxx \ + /usr/local/opencascade//inc/Standard_KindOfType.hxx \ + /usr/local/opencascade//inc/Standard_Type.lxx \ + /usr/local/opencascade//inc/Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Geom_Surface.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPS.hxx \ + /usr/local/opencascade//inc/Adaptor3d_SurfacePtr.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElS.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.hxx \ + /usr/local/opencascade//inc/gp_Pnt.hxx \ + /usr/local/opencascade//inc/gp_XYZ.hxx \ + /usr/local/opencascade//inc/gp_XYZ.lxx \ + /usr/local/opencascade//inc/gp.hxx /usr/local/opencascade//inc/gp.lxx \ + /usr/local/opencascade//inc/gp_Mat.hxx \ + /usr/local/opencascade//inc/gp_Mat.lxx \ + /usr/local/opencascade//inc/Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_SStream.hxx \ + /usr/local/opencascade//inc/Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_Failure.lxx \ + /usr/local/opencascade//inc/Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/gp_Pnt.lxx \ + /usr/local/opencascade//inc/gp_Trsf.hxx \ + /usr/local/opencascade//inc/gp_TrsfForm.hxx \ + /usr/local/opencascade//inc/gp_Trsf.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.lxx \ + /usr/local/opencascade//inc/gp_XY.hxx \ + /usr/local/opencascade//inc/gp_XY.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.lxx \ + /usr/local/opencascade//inc/gp_Pnt2d.hxx \ + /usr/local/opencascade//inc/gp_Pnt2d.lxx \ + /usr/local/opencascade//inc/gp_Vec2d.hxx \ + /usr/local/opencascade//inc/gp_Vec2d.lxx \ + /usr/local/opencascade//inc/gp_Dir2d.hxx \ + /usr/local/opencascade//inc/gp_Dir2d.lxx \ + /usr/local/opencascade//inc/gp_Ax2d.hxx \ + /usr/local/opencascade//inc/gp_Ax2d.lxx \ + /usr/local/opencascade//inc/gp_Vec.hxx \ + /usr/local/opencascade//inc/gp_Vec.lxx \ + /usr/local/opencascade//inc/gp_Dir.hxx \ + /usr/local/opencascade//inc/gp_Dir.lxx \ + /usr/local/opencascade//inc/gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Handle_gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.lxx \ + /usr/local/opencascade//inc/Extrema_GenExtPS.hxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray2OfPnt.hxx \ + /usr/local/opencascade//inc/Extrema_FuncExtPS.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfReal.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.lxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfReal.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_SeqNode.hxx \ + /usr/local/opencascade//inc/TCollection_Sequence.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/math_FunctionSetWithDerivatives.hxx \ + /usr/local/opencascade//inc/math_FunctionSet.hxx \ + /usr/local/opencascade//inc/GeomAbs_SurfaceType.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Surface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineSurface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/Quantity_Parameter.hxx \ + /usr/local/opencascade//inc/Quantity_Length.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElC.hxx \ + /usr/local/opencascade//inc/Extrema_POnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_Point.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_EPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_PCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Extrema_SeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/math_FunctionWithDerivative.hxx \ + /usr/local/opencascade//inc/math_Function.hxx \ + /usr/local/opencascade//inc/GeomAbs_CurveType.hxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.lxx \ + /usr/local/opencascade//inc/BRepTools.hxx \ + /usr/local/opencascade//inc/Standard_IStream.hxx \ + /usr/local/opencascade//inc/TopExp.hxx \ + /usr/local/opencascade//inc/TopAbs_ShapeEnum.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShape.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.hxx \ + /usr/local/opencascade//inc/TopLoc_SListOfItemLocation.hxx \ + /usr/local/opencascade//inc/Handle_TopLoc_SListNodeOfSListOfItemLocation.hxx \ + /usr/local/opencascade//inc/TCollection_SList.lxx \ + /usr/local/opencascade//inc/Handle_TopLoc_Datum3D.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.lxx \ + /usr/local/opencascade//inc/TopLoc_ItemLocation.hxx \ + /usr/local/opencascade//inc/TopLoc_TrsfPtr.hxx \ + /usr/local/opencascade//inc/TopAbs_Orientation.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopoDS_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_MapNode.hxx \ + /usr/local/opencascade//inc/TCollection_List.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.lxx \ + /usr/local/opencascade//inc/TopAbs.hxx \ + /usr/local/opencascade//inc/TopAbs_State.hxx \ + /usr/local/opencascade//inc/TopTools_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepLib_Command.hxx \ + /usr/local/opencascade//inc/BRepLib_ShapeModification.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Command.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepOffsetAPI_Sewing.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/Handle_BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.hxx \ + /usr/local/opencascade//inc/TCollection_MapNodePtr.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.lxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedMapNodeOfIndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/TopTools_MapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_StdMapNodeOfMapOfShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.lxx \ + /usr/local/opencascade//inc/BRepLProp_SLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/TopoDS_Face.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/LProp_Status.hxx \ + /usr/local/opencascade//inc/Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt.hxx \ + /usr/local/opencascade//inc/TCollection_Array1.lxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray1OfPnt2d.hxx \ + /usr/local/opencascade//inc/Poly_Array1OfTriangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.lxx \ + /usr/local/opencascade//inc/Poly_Triangulation.lxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt2d.hxx \ + /usr/local/opencascade//inc/GProp_GProps.hxx \ + /usr/local/opencascade//inc/BRepGProp.hxx \ + /usr/local/opencascade//inc/TopoDS.hxx \ + /usr/local/opencascade//inc/TopoDS.lxx \ + /usr/local/opencascade//inc/Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/Handle_Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/TopoDS_Solid.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.hxx \ + /usr/local/opencascade//inc/TopExp_Stack.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.lxx \ + /usr/local/opencascade//inc/BRep_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder3D.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Wire.hxx \ + /usr/local/opencascade//inc/BRepTools_WireExplorer.hxx \ + /usr/local/opencascade//inc/TopoDS_Edge.hxx \ + /usr/local/opencascade//inc/TopoDS_Vertex.hxx \ + /usr/local/opencascade//inc/BRepLProp_CLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurveOnSurface.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.hxx \ + /usr/local/opencascade//inc/XSControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_XSControl_WorkSession.hxx \ + /usr/local/opencascade//inc/Handle_IFSelect_WorkSession.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/TopTools_SequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_SequenceNodeOfSequenceOfShape.hxx \ + /usr/local/opencascade//inc/IFSelect_ReturnStatus.hxx \ + /usr/local/opencascade//inc/Handle_Interface_InterfaceModel.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintCount.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESModel.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintFail.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.lxx \ + /usr/local/opencascade//inc/STEPControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_StepData_StepModel.hxx \ + /usr/local/opencascade//inc/IGESToBRep_Reader.hxx \ + /usr/local/opencascade//inc/Handle_IGESToBRep_Actor.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfTransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfProcessForTransient.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_TransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForTransient.hxx \ + /usr/local/opencascade//inc/Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Handle_MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.lxx \ + /usr/local/opencascade//inc/Interface_ParamType.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HArray1OfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfInteger.hxx \ + /usr/local/opencascade//inc/Interface_StaticSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Interface_ValueInterpret.hxx \ + /usr/local/opencascade//inc/Interface_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueType.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueInterpret.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HExtendedString.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.lxx \ + /usr/local/opencascade//inc/MoniTool_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfHAsciiString.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtCC.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.lxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.hxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.lxx \ + /usr/local/opencascade//inc/ShapeUpgrade_ShellSewing.hxx \ + /usr/local/opencascade//inc/Handle_ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_BasicMsgRegistrator.hxx \ + /usr/local/opencascade//inc/Message_Gravity.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.lxx \ + /usr/local/opencascade//inc/Precision.hxx \ + /usr/local/opencascade//inc/Precision.lxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Edge.hxx \ + /usr/local/opencascade//inc/ShapeExtend_Status.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.lxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.lxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Compound.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.lxx \ + /usr/local/opencascade//inc/ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Surface.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/ShapeFix_Face.lxx \ + /usr/local/opencascade//inc/ShapeExtend.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.lxx \ + /usr/local/opencascade//inc/ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_HSequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.lxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.lxx \ + /usr/local/opencascade//inc/BRepMesh.hxx \ + /usr/local/opencascade//inc/BRepMesh_IncrementalMesh.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_FastDiscret.hxx \ + /usr/local/opencascade//inc/BRepMesh_DataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_DataMapNodeOfDataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Bnd_Box.hxx \ + /usr/local/opencascade//inc/Bnd_Box.lxx \ + /usr/local/opencascade//inc/BRepBndLib.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis.hxx \ + /usr/local/opencascade//inc/ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/IGESControl_Writer.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_FinderProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForFinder.hxx \ + /usr/local/opencascade//inc/IGESData_BasicEditor.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_Protocol.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Protocol.hxx \ + /usr/local/opencascade//inc/Interface_GeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_NodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GeneralModule.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GlobalNodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/IGESData_SpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_NodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESEntity.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_SpecificModule.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_GlobalNodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/STEPControl_Writer.hxx \ + /usr/local/opencascade//inc/STEPControl_StepModelType.hxx \ + /usr/local/opencascade//inc/StlAPI_Writer.hxx \ + /usr/local/opencascade//inc/Handle_StlMesh_Mesh.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeTolerance.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_DataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_DataMapNodeOfDataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Fuse.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_BooleanOperation.hxx \ + /usr/local/opencascade//inc/BOP_Operation.hxx \ + /usr/local/opencascade//inc/BOPTools_PDSFiller.hxx \ + /usr/local/opencascade//inc/BOP_PBuilder.hxx \ + /usr/local/opencascade//inc/Handle_BOP_HistoryCollector.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.hxx \ + /usr/local/opencascade//inc/BRepCheck_DataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_Result.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_DataMapNodeOfDataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.lxx \ + /usr/local/opencascade//inc/BRepLib.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Plane.hxx \ + /usr/local/opencascade//inc/Handle_Geom_ElementarySurface.hxx \ + /usr/local/opencascade//inc/ShapeFix.hxx \ + /usr/local/opencascade//inc/ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.hxx \ + /usr/local/opencascade//inc/TopoDS_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/TCollection_ListIterator.lxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.lxx \ + /usr/local/opencascade//inc/Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/Handle_Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeSphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Sphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Revolution.hxx \ + /usr/local/opencascade//inc/BRepPrim_OneAxis.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.lxx \ + /usr/local/opencascade//inc/gp_Ax2.hxx \ + /usr/local/opencascade//inc/gp_Ax1.hxx \ + /usr/local/opencascade//inc/gp_Ax1.lxx \ + /usr/local/opencascade//inc/gp_Ax2.lxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeOneAxis.hxx \ + /usr/local/opencascade//inc/TopTools_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Common.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Cut.hxx OCCFace.h \ + ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h \ + /usr/local/opencascade//inc/Geom2dLProp_CLProps2d.hxx \ + /usr/local/opencascade//inc/Geom_BezierCurve.hxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray1OfPnt.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HArray1OfReal.hxx \ + /usr/local/opencascade//inc/Geom_BoundedCurve.hxx \ + /usr/local/opencascade//inc/Geom_OffsetCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_OffsetCurve.hxx \ + /usr/local/opencascade//inc/Geom_Ellipse.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Ellipse.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Conic.hxx \ + /usr/local/opencascade//inc/Geom_Conic.hxx \ + /usr/local/opencascade//inc/Geom_Parabola.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Parabola.hxx \ + /usr/local/opencascade//inc/Geom_Hyperbola.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Hyperbola.hxx \ + /usr/local/opencascade//inc/Geom_TrimmedCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_TrimmedCurve.hxx \ + /usr/local/opencascade//inc/Geom_Circle.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Circle.hxx \ + /usr/local/opencascade//inc/Geom_Line.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Line.hxx OCCFace.o: OCCFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ - GEdgeLoop.h Pair.h GRegion.h OCCVertex.h OCCIncludes.h OCCEdge.h \ - OCCFace.h ../Common/Message.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h ../Common/VertexArray.h ../Geo/SVector3.h \ - ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h + GEdgeLoop.h Pair.h GRegion.h OCCVertex.h OCCIncludes.h \ + /usr/local/opencascade//inc/config.h \ + /usr/local/opencascade//inc/BRep_Tool.hxx \ + /usr/local/opencascade//inc/Standard_Boolean.hxx \ + /usr/local/opencascade//inc/Standard_TypeDef.hxx \ + /usr/local/opencascade//inc/Standard_Macro.hxx \ + /usr/local/opencascade//inc/Standard_Stream.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Surface.hxx \ + /usr/local/opencascade//inc/Standard.hxx \ + /usr/local/opencascade//inc/Standard_Address.hxx \ + /usr/local/opencascade//inc/Standard_Integer.hxx \ + /usr/local/opencascade//inc/Standard_values.h \ + /usr/local/opencascade//inc/Standard_OStream.hxx \ + /usr/local/opencascade//inc/Standard_CString.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_PrimitiveTypes.hxx \ + /usr/local/opencascade//inc/Standard_Real.hxx \ + /usr/local/opencascade//inc/Standard_Character.hxx \ + /usr/local/opencascade//inc/Standard_ctype.hxx \ + /usr/local/opencascade//inc/Standard_ExtCharacter.hxx \ + /usr/local/opencascade//inc/Standard_ExtString.hxx \ + /usr/local/opencascade//inc/Standard_Storable.hxx \ + /usr/local/opencascade//inc/Standard_Transient_proto.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon3D.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon2D.hxx \ + /usr/local/opencascade//inc/Handle_Poly_PolygonOnTriangulation.hxx \ + /usr/local/opencascade//inc/GeomAbs_Shape.hxx \ + /usr/local/opencascade//inc/Geom_Curve.hxx \ + /usr/local/opencascade//inc/Geom_Geometry.hxx \ + /usr/local/opencascade//inc/MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_Type.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Type.hxx \ + /usr/local/opencascade//inc/Standard_KindOfType.hxx \ + /usr/local/opencascade//inc/Standard_Type.lxx \ + /usr/local/opencascade//inc/Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Geom_Surface.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPS.hxx \ + /usr/local/opencascade//inc/Adaptor3d_SurfacePtr.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElS.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.hxx \ + /usr/local/opencascade//inc/gp_Pnt.hxx \ + /usr/local/opencascade//inc/gp_XYZ.hxx \ + /usr/local/opencascade//inc/gp_XYZ.lxx \ + /usr/local/opencascade//inc/gp.hxx /usr/local/opencascade//inc/gp.lxx \ + /usr/local/opencascade//inc/gp_Mat.hxx \ + /usr/local/opencascade//inc/gp_Mat.lxx \ + /usr/local/opencascade//inc/Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_SStream.hxx \ + /usr/local/opencascade//inc/Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_Failure.lxx \ + /usr/local/opencascade//inc/Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/gp_Pnt.lxx \ + /usr/local/opencascade//inc/gp_Trsf.hxx \ + /usr/local/opencascade//inc/gp_TrsfForm.hxx \ + /usr/local/opencascade//inc/gp_Trsf.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.lxx \ + /usr/local/opencascade//inc/gp_XY.hxx \ + /usr/local/opencascade//inc/gp_XY.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.lxx \ + /usr/local/opencascade//inc/gp_Pnt2d.hxx \ + /usr/local/opencascade//inc/gp_Pnt2d.lxx \ + /usr/local/opencascade//inc/gp_Vec2d.hxx \ + /usr/local/opencascade//inc/gp_Vec2d.lxx \ + /usr/local/opencascade//inc/gp_Dir2d.hxx \ + /usr/local/opencascade//inc/gp_Dir2d.lxx \ + /usr/local/opencascade//inc/gp_Ax2d.hxx \ + /usr/local/opencascade//inc/gp_Ax2d.lxx \ + /usr/local/opencascade//inc/gp_Vec.hxx \ + /usr/local/opencascade//inc/gp_Vec.lxx \ + /usr/local/opencascade//inc/gp_Dir.hxx \ + /usr/local/opencascade//inc/gp_Dir.lxx \ + /usr/local/opencascade//inc/gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Handle_gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.lxx \ + /usr/local/opencascade//inc/Extrema_GenExtPS.hxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray2OfPnt.hxx \ + /usr/local/opencascade//inc/Extrema_FuncExtPS.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfReal.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.lxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfReal.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_SeqNode.hxx \ + /usr/local/opencascade//inc/TCollection_Sequence.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/math_FunctionSetWithDerivatives.hxx \ + /usr/local/opencascade//inc/math_FunctionSet.hxx \ + /usr/local/opencascade//inc/GeomAbs_SurfaceType.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Surface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineSurface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/Quantity_Parameter.hxx \ + /usr/local/opencascade//inc/Quantity_Length.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElC.hxx \ + /usr/local/opencascade//inc/Extrema_POnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_Point.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_EPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_PCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Extrema_SeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/math_FunctionWithDerivative.hxx \ + /usr/local/opencascade//inc/math_Function.hxx \ + /usr/local/opencascade//inc/GeomAbs_CurveType.hxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.lxx \ + /usr/local/opencascade//inc/BRepTools.hxx \ + /usr/local/opencascade//inc/Standard_IStream.hxx \ + /usr/local/opencascade//inc/TopExp.hxx \ + /usr/local/opencascade//inc/TopAbs_ShapeEnum.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShape.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.hxx \ + /usr/local/opencascade//inc/TopLoc_SListOfItemLocation.hxx \ + /usr/local/opencascade//inc/Handle_TopLoc_SListNodeOfSListOfItemLocation.hxx \ + /usr/local/opencascade//inc/TCollection_SList.lxx \ + /usr/local/opencascade//inc/Handle_TopLoc_Datum3D.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.lxx \ + /usr/local/opencascade//inc/TopLoc_ItemLocation.hxx \ + /usr/local/opencascade//inc/TopLoc_TrsfPtr.hxx \ + /usr/local/opencascade//inc/TopAbs_Orientation.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopoDS_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_MapNode.hxx \ + /usr/local/opencascade//inc/TCollection_List.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.lxx \ + /usr/local/opencascade//inc/TopAbs.hxx \ + /usr/local/opencascade//inc/TopAbs_State.hxx \ + /usr/local/opencascade//inc/TopTools_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepLib_Command.hxx \ + /usr/local/opencascade//inc/BRepLib_ShapeModification.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Command.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepOffsetAPI_Sewing.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/Handle_BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.hxx \ + /usr/local/opencascade//inc/TCollection_MapNodePtr.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.lxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedMapNodeOfIndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/TopTools_MapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_StdMapNodeOfMapOfShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.lxx \ + /usr/local/opencascade//inc/BRepLProp_SLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/TopoDS_Face.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/LProp_Status.hxx \ + /usr/local/opencascade//inc/Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt.hxx \ + /usr/local/opencascade//inc/TCollection_Array1.lxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray1OfPnt2d.hxx \ + /usr/local/opencascade//inc/Poly_Array1OfTriangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.lxx \ + /usr/local/opencascade//inc/Poly_Triangulation.lxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt2d.hxx \ + /usr/local/opencascade//inc/GProp_GProps.hxx \ + /usr/local/opencascade//inc/BRepGProp.hxx \ + /usr/local/opencascade//inc/TopoDS.hxx \ + /usr/local/opencascade//inc/TopoDS.lxx \ + /usr/local/opencascade//inc/Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/Handle_Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/TopoDS_Solid.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.hxx \ + /usr/local/opencascade//inc/TopExp_Stack.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.lxx \ + /usr/local/opencascade//inc/BRep_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder3D.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Wire.hxx \ + /usr/local/opencascade//inc/BRepTools_WireExplorer.hxx \ + /usr/local/opencascade//inc/TopoDS_Edge.hxx \ + /usr/local/opencascade//inc/TopoDS_Vertex.hxx \ + /usr/local/opencascade//inc/BRepLProp_CLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurveOnSurface.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.hxx \ + /usr/local/opencascade//inc/XSControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_XSControl_WorkSession.hxx \ + /usr/local/opencascade//inc/Handle_IFSelect_WorkSession.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/TopTools_SequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_SequenceNodeOfSequenceOfShape.hxx \ + /usr/local/opencascade//inc/IFSelect_ReturnStatus.hxx \ + /usr/local/opencascade//inc/Handle_Interface_InterfaceModel.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintCount.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESModel.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintFail.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.lxx \ + /usr/local/opencascade//inc/STEPControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_StepData_StepModel.hxx \ + /usr/local/opencascade//inc/IGESToBRep_Reader.hxx \ + /usr/local/opencascade//inc/Handle_IGESToBRep_Actor.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfTransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfProcessForTransient.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_TransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForTransient.hxx \ + /usr/local/opencascade//inc/Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Handle_MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.lxx \ + /usr/local/opencascade//inc/Interface_ParamType.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HArray1OfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfInteger.hxx \ + /usr/local/opencascade//inc/Interface_StaticSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Interface_ValueInterpret.hxx \ + /usr/local/opencascade//inc/Interface_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueType.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueInterpret.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HExtendedString.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.lxx \ + /usr/local/opencascade//inc/MoniTool_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfHAsciiString.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtCC.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.lxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.hxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.lxx \ + /usr/local/opencascade//inc/ShapeUpgrade_ShellSewing.hxx \ + /usr/local/opencascade//inc/Handle_ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_BasicMsgRegistrator.hxx \ + /usr/local/opencascade//inc/Message_Gravity.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.lxx \ + /usr/local/opencascade//inc/Precision.hxx \ + /usr/local/opencascade//inc/Precision.lxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Edge.hxx \ + /usr/local/opencascade//inc/ShapeExtend_Status.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.lxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.lxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Compound.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.lxx \ + /usr/local/opencascade//inc/ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Surface.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/ShapeFix_Face.lxx \ + /usr/local/opencascade//inc/ShapeExtend.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.lxx \ + /usr/local/opencascade//inc/ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_HSequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.lxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.lxx \ + /usr/local/opencascade//inc/BRepMesh.hxx \ + /usr/local/opencascade//inc/BRepMesh_IncrementalMesh.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_FastDiscret.hxx \ + /usr/local/opencascade//inc/BRepMesh_DataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_DataMapNodeOfDataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Bnd_Box.hxx \ + /usr/local/opencascade//inc/Bnd_Box.lxx \ + /usr/local/opencascade//inc/BRepBndLib.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis.hxx \ + /usr/local/opencascade//inc/ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/IGESControl_Writer.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_FinderProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForFinder.hxx \ + /usr/local/opencascade//inc/IGESData_BasicEditor.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_Protocol.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Protocol.hxx \ + /usr/local/opencascade//inc/Interface_GeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_NodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GeneralModule.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GlobalNodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/IGESData_SpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_NodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESEntity.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_SpecificModule.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_GlobalNodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/STEPControl_Writer.hxx \ + /usr/local/opencascade//inc/STEPControl_StepModelType.hxx \ + /usr/local/opencascade//inc/StlAPI_Writer.hxx \ + /usr/local/opencascade//inc/Handle_StlMesh_Mesh.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeTolerance.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_DataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_DataMapNodeOfDataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Fuse.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_BooleanOperation.hxx \ + /usr/local/opencascade//inc/BOP_Operation.hxx \ + /usr/local/opencascade//inc/BOPTools_PDSFiller.hxx \ + /usr/local/opencascade//inc/BOP_PBuilder.hxx \ + /usr/local/opencascade//inc/Handle_BOP_HistoryCollector.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.hxx \ + /usr/local/opencascade//inc/BRepCheck_DataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_Result.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_DataMapNodeOfDataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.lxx \ + /usr/local/opencascade//inc/BRepLib.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Plane.hxx \ + /usr/local/opencascade//inc/Handle_Geom_ElementarySurface.hxx \ + /usr/local/opencascade//inc/ShapeFix.hxx \ + /usr/local/opencascade//inc/ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.hxx \ + /usr/local/opencascade//inc/TopoDS_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/TCollection_ListIterator.lxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.lxx \ + /usr/local/opencascade//inc/Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/Handle_Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeSphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Sphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Revolution.hxx \ + /usr/local/opencascade//inc/BRepPrim_OneAxis.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.lxx \ + /usr/local/opencascade//inc/gp_Ax2.hxx \ + /usr/local/opencascade//inc/gp_Ax1.hxx \ + /usr/local/opencascade//inc/gp_Ax1.lxx \ + /usr/local/opencascade//inc/gp_Ax2.lxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeOneAxis.hxx \ + /usr/local/opencascade//inc/TopTools_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Common.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Cut.hxx OCCEdge.h OCCFace.h \ + ../Common/Message.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \ + ../Common/VertexArray.h ../Geo/SVector3.h ../Common/Context.h \ + ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h \ + /usr/local/opencascade//inc/Geom_CylindricalSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_CylindricalSurface.hxx \ + /usr/local/opencascade//inc/Geom_ElementarySurface.hxx \ + /usr/local/opencascade//inc/gp_Ax3.hxx \ + /usr/local/opencascade//inc/gp_Ax3.lxx \ + /usr/local/opencascade//inc/Geom_ConicalSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_ConicalSurface.hxx \ + /usr/local/opencascade//inc/Geom_BSplineSurface.hxx \ + /usr/local/opencascade//inc/GeomAbs_BSplKnotDistribution.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HArray2OfReal.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HArray1OfReal.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HArray1OfInteger.hxx \ + /usr/local/opencascade//inc/Geom_BoundedSurface.hxx \ + /usr/local/opencascade//inc/Geom_SphericalSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_SphericalSurface.hxx \ + /usr/local/opencascade//inc/Geom_ToroidalSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_ToroidalSurface.hxx \ + /usr/local/opencascade//inc/Geom_SurfaceOfRevolution.hxx \ + /usr/local/opencascade//inc/Handle_Geom_SurfaceOfRevolution.hxx \ + /usr/local/opencascade//inc/Handle_Geom_SweptSurface.hxx \ + /usr/local/opencascade//inc/Geom_SweptSurface.hxx \ + /usr/local/opencascade//inc/Geom_BezierSurface.hxx \ + /usr/local/opencascade//inc/Geom_Plane.hxx \ + /usr/local/opencascade//inc/gp_Pln.hxx \ + /usr/local/opencascade//inc/gp_Pln.lxx \ + /usr/local/opencascade//inc/gp_Lin.hxx \ + /usr/local/opencascade//inc/gp_Lin.lxx \ + /usr/local/opencascade//inc/BRepMesh_FastDiscret.hxx \ + /usr/local/opencascade//inc/BRepMesh_DataMapOfVertexInteger.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_DataMapNodeOfDataMapOfVertexInteger.hxx \ + /usr/local/opencascade//inc/MeshShape_DataMapOfShapeListOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_MeshShape_DataMapNodeOfDataMapOfShapeListOfTransient.hxx \ + /usr/local/opencascade//inc/MeshShape_DataMapOfIntegerPnt.hxx \ + /usr/local/opencascade//inc/Handle_MeshShape_DataMapNodeOfDataMapOfIntegerPnt.hxx \ + /usr/local/opencascade//inc/BRepMesh_IndexedMapOfVertex.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_IndexedMapNodeOfIndexedMapOfVertex.hxx \ + /usr/local/opencascade//inc/TColStd_IndexedMapOfInteger.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_IndexedMapNodeOfIndexedMapOfInteger.hxx \ + /usr/local/opencascade//inc/BRepMesh_DataMapOfIntegerListOfXY.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_DataMapNodeOfDataMapOfIntegerListOfXY.hxx \ + /usr/local/opencascade//inc/BRepMesh_Status.hxx \ + /usr/local/opencascade//inc/TColStd_IndexedMapOfReal.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_IndexedMapNodeOfIndexedMapOfReal.hxx \ + /usr/local/opencascade//inc/Handle_BRepAdaptor_HSurface.hxx \ + /usr/local/opencascade//inc/BRepMesh_FastDiscret.lxx OCCRegion.o: OCCRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ - GEdgeLoop.h Pair.h GRegion.h OCCVertex.h OCCIncludes.h OCCEdge.h \ - OCCFace.h OCCRegion.h ../Common/Message.h + GEdgeLoop.h Pair.h GRegion.h OCCVertex.h OCCIncludes.h \ + /usr/local/opencascade//inc/config.h \ + /usr/local/opencascade//inc/BRep_Tool.hxx \ + /usr/local/opencascade//inc/Standard_Boolean.hxx \ + /usr/local/opencascade//inc/Standard_TypeDef.hxx \ + /usr/local/opencascade//inc/Standard_Macro.hxx \ + /usr/local/opencascade//inc/Standard_Stream.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Surface.hxx \ + /usr/local/opencascade//inc/Standard.hxx \ + /usr/local/opencascade//inc/Standard_Address.hxx \ + /usr/local/opencascade//inc/Standard_Integer.hxx \ + /usr/local/opencascade//inc/Standard_values.h \ + /usr/local/opencascade//inc/Standard_OStream.hxx \ + /usr/local/opencascade//inc/Standard_CString.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_PrimitiveTypes.hxx \ + /usr/local/opencascade//inc/Standard_Real.hxx \ + /usr/local/opencascade//inc/Standard_Character.hxx \ + /usr/local/opencascade//inc/Standard_ctype.hxx \ + /usr/local/opencascade//inc/Standard_ExtCharacter.hxx \ + /usr/local/opencascade//inc/Standard_ExtString.hxx \ + /usr/local/opencascade//inc/Standard_Storable.hxx \ + /usr/local/opencascade//inc/Standard_Transient_proto.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon3D.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon2D.hxx \ + /usr/local/opencascade//inc/Handle_Poly_PolygonOnTriangulation.hxx \ + /usr/local/opencascade//inc/GeomAbs_Shape.hxx \ + /usr/local/opencascade//inc/Geom_Curve.hxx \ + /usr/local/opencascade//inc/Geom_Geometry.hxx \ + /usr/local/opencascade//inc/MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_Type.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Type.hxx \ + /usr/local/opencascade//inc/Standard_KindOfType.hxx \ + /usr/local/opencascade//inc/Standard_Type.lxx \ + /usr/local/opencascade//inc/Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Geom_Surface.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPS.hxx \ + /usr/local/opencascade//inc/Adaptor3d_SurfacePtr.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElS.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.hxx \ + /usr/local/opencascade//inc/gp_Pnt.hxx \ + /usr/local/opencascade//inc/gp_XYZ.hxx \ + /usr/local/opencascade//inc/gp_XYZ.lxx \ + /usr/local/opencascade//inc/gp.hxx /usr/local/opencascade//inc/gp.lxx \ + /usr/local/opencascade//inc/gp_Mat.hxx \ + /usr/local/opencascade//inc/gp_Mat.lxx \ + /usr/local/opencascade//inc/Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_SStream.hxx \ + /usr/local/opencascade//inc/Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_Failure.lxx \ + /usr/local/opencascade//inc/Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/gp_Pnt.lxx \ + /usr/local/opencascade//inc/gp_Trsf.hxx \ + /usr/local/opencascade//inc/gp_TrsfForm.hxx \ + /usr/local/opencascade//inc/gp_Trsf.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.lxx \ + /usr/local/opencascade//inc/gp_XY.hxx \ + /usr/local/opencascade//inc/gp_XY.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.lxx \ + /usr/local/opencascade//inc/gp_Pnt2d.hxx \ + /usr/local/opencascade//inc/gp_Pnt2d.lxx \ + /usr/local/opencascade//inc/gp_Vec2d.hxx \ + /usr/local/opencascade//inc/gp_Vec2d.lxx \ + /usr/local/opencascade//inc/gp_Dir2d.hxx \ + /usr/local/opencascade//inc/gp_Dir2d.lxx \ + /usr/local/opencascade//inc/gp_Ax2d.hxx \ + /usr/local/opencascade//inc/gp_Ax2d.lxx \ + /usr/local/opencascade//inc/gp_Vec.hxx \ + /usr/local/opencascade//inc/gp_Vec.lxx \ + /usr/local/opencascade//inc/gp_Dir.hxx \ + /usr/local/opencascade//inc/gp_Dir.lxx \ + /usr/local/opencascade//inc/gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Handle_gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.lxx \ + /usr/local/opencascade//inc/Extrema_GenExtPS.hxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray2OfPnt.hxx \ + /usr/local/opencascade//inc/Extrema_FuncExtPS.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfReal.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.lxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfReal.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_SeqNode.hxx \ + /usr/local/opencascade//inc/TCollection_Sequence.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/math_FunctionSetWithDerivatives.hxx \ + /usr/local/opencascade//inc/math_FunctionSet.hxx \ + /usr/local/opencascade//inc/GeomAbs_SurfaceType.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Surface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineSurface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/Quantity_Parameter.hxx \ + /usr/local/opencascade//inc/Quantity_Length.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElC.hxx \ + /usr/local/opencascade//inc/Extrema_POnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_Point.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_EPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_PCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Extrema_SeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/math_FunctionWithDerivative.hxx \ + /usr/local/opencascade//inc/math_Function.hxx \ + /usr/local/opencascade//inc/GeomAbs_CurveType.hxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.lxx \ + /usr/local/opencascade//inc/BRepTools.hxx \ + /usr/local/opencascade//inc/Standard_IStream.hxx \ + /usr/local/opencascade//inc/TopExp.hxx \ + /usr/local/opencascade//inc/TopAbs_ShapeEnum.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShape.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.hxx \ + /usr/local/opencascade//inc/TopLoc_SListOfItemLocation.hxx \ + /usr/local/opencascade//inc/Handle_TopLoc_SListNodeOfSListOfItemLocation.hxx \ + /usr/local/opencascade//inc/TCollection_SList.lxx \ + /usr/local/opencascade//inc/Handle_TopLoc_Datum3D.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.lxx \ + /usr/local/opencascade//inc/TopLoc_ItemLocation.hxx \ + /usr/local/opencascade//inc/TopLoc_TrsfPtr.hxx \ + /usr/local/opencascade//inc/TopAbs_Orientation.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopoDS_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_MapNode.hxx \ + /usr/local/opencascade//inc/TCollection_List.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.lxx \ + /usr/local/opencascade//inc/TopAbs.hxx \ + /usr/local/opencascade//inc/TopAbs_State.hxx \ + /usr/local/opencascade//inc/TopTools_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepLib_Command.hxx \ + /usr/local/opencascade//inc/BRepLib_ShapeModification.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Command.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepOffsetAPI_Sewing.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/Handle_BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.hxx \ + /usr/local/opencascade//inc/TCollection_MapNodePtr.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.lxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedMapNodeOfIndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/TopTools_MapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_StdMapNodeOfMapOfShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.lxx \ + /usr/local/opencascade//inc/BRepLProp_SLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/TopoDS_Face.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/LProp_Status.hxx \ + /usr/local/opencascade//inc/Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt.hxx \ + /usr/local/opencascade//inc/TCollection_Array1.lxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray1OfPnt2d.hxx \ + /usr/local/opencascade//inc/Poly_Array1OfTriangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.lxx \ + /usr/local/opencascade//inc/Poly_Triangulation.lxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt2d.hxx \ + /usr/local/opencascade//inc/GProp_GProps.hxx \ + /usr/local/opencascade//inc/BRepGProp.hxx \ + /usr/local/opencascade//inc/TopoDS.hxx \ + /usr/local/opencascade//inc/TopoDS.lxx \ + /usr/local/opencascade//inc/Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/Handle_Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/TopoDS_Solid.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.hxx \ + /usr/local/opencascade//inc/TopExp_Stack.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.lxx \ + /usr/local/opencascade//inc/BRep_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder3D.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Wire.hxx \ + /usr/local/opencascade//inc/BRepTools_WireExplorer.hxx \ + /usr/local/opencascade//inc/TopoDS_Edge.hxx \ + /usr/local/opencascade//inc/TopoDS_Vertex.hxx \ + /usr/local/opencascade//inc/BRepLProp_CLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurveOnSurface.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.hxx \ + /usr/local/opencascade//inc/XSControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_XSControl_WorkSession.hxx \ + /usr/local/opencascade//inc/Handle_IFSelect_WorkSession.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/TopTools_SequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_SequenceNodeOfSequenceOfShape.hxx \ + /usr/local/opencascade//inc/IFSelect_ReturnStatus.hxx \ + /usr/local/opencascade//inc/Handle_Interface_InterfaceModel.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintCount.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESModel.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintFail.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.lxx \ + /usr/local/opencascade//inc/STEPControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_StepData_StepModel.hxx \ + /usr/local/opencascade//inc/IGESToBRep_Reader.hxx \ + /usr/local/opencascade//inc/Handle_IGESToBRep_Actor.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfTransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfProcessForTransient.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_TransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForTransient.hxx \ + /usr/local/opencascade//inc/Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Handle_MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.lxx \ + /usr/local/opencascade//inc/Interface_ParamType.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HArray1OfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfInteger.hxx \ + /usr/local/opencascade//inc/Interface_StaticSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Interface_ValueInterpret.hxx \ + /usr/local/opencascade//inc/Interface_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueType.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueInterpret.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HExtendedString.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.lxx \ + /usr/local/opencascade//inc/MoniTool_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfHAsciiString.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtCC.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.lxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.hxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.lxx \ + /usr/local/opencascade//inc/ShapeUpgrade_ShellSewing.hxx \ + /usr/local/opencascade//inc/Handle_ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_BasicMsgRegistrator.hxx \ + /usr/local/opencascade//inc/Message_Gravity.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.lxx \ + /usr/local/opencascade//inc/Precision.hxx \ + /usr/local/opencascade//inc/Precision.lxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Edge.hxx \ + /usr/local/opencascade//inc/ShapeExtend_Status.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.lxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.lxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Compound.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.lxx \ + /usr/local/opencascade//inc/ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Surface.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/ShapeFix_Face.lxx \ + /usr/local/opencascade//inc/ShapeExtend.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.lxx \ + /usr/local/opencascade//inc/ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_HSequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.lxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.lxx \ + /usr/local/opencascade//inc/BRepMesh.hxx \ + /usr/local/opencascade//inc/BRepMesh_IncrementalMesh.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_FastDiscret.hxx \ + /usr/local/opencascade//inc/BRepMesh_DataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_DataMapNodeOfDataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Bnd_Box.hxx \ + /usr/local/opencascade//inc/Bnd_Box.lxx \ + /usr/local/opencascade//inc/BRepBndLib.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis.hxx \ + /usr/local/opencascade//inc/ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/IGESControl_Writer.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_FinderProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForFinder.hxx \ + /usr/local/opencascade//inc/IGESData_BasicEditor.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_Protocol.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Protocol.hxx \ + /usr/local/opencascade//inc/Interface_GeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_NodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GeneralModule.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GlobalNodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/IGESData_SpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_NodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESEntity.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_SpecificModule.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_GlobalNodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/STEPControl_Writer.hxx \ + /usr/local/opencascade//inc/STEPControl_StepModelType.hxx \ + /usr/local/opencascade//inc/StlAPI_Writer.hxx \ + /usr/local/opencascade//inc/Handle_StlMesh_Mesh.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeTolerance.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_DataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_DataMapNodeOfDataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Fuse.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_BooleanOperation.hxx \ + /usr/local/opencascade//inc/BOP_Operation.hxx \ + /usr/local/opencascade//inc/BOPTools_PDSFiller.hxx \ + /usr/local/opencascade//inc/BOP_PBuilder.hxx \ + /usr/local/opencascade//inc/Handle_BOP_HistoryCollector.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.hxx \ + /usr/local/opencascade//inc/BRepCheck_DataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_Result.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_DataMapNodeOfDataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.lxx \ + /usr/local/opencascade//inc/BRepLib.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Plane.hxx \ + /usr/local/opencascade//inc/Handle_Geom_ElementarySurface.hxx \ + /usr/local/opencascade//inc/ShapeFix.hxx \ + /usr/local/opencascade//inc/ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.hxx \ + /usr/local/opencascade//inc/TopoDS_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/TCollection_ListIterator.lxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.lxx \ + /usr/local/opencascade//inc/Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/Handle_Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeSphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Sphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Revolution.hxx \ + /usr/local/opencascade//inc/BRepPrim_OneAxis.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.lxx \ + /usr/local/opencascade//inc/gp_Ax2.hxx \ + /usr/local/opencascade//inc/gp_Ax1.hxx \ + /usr/local/opencascade//inc/gp_Ax1.lxx \ + /usr/local/opencascade//inc/gp_Ax2.lxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeOneAxis.hxx \ + /usr/local/opencascade//inc/TopTools_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Common.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Cut.hxx OCCEdge.h OCCFace.h \ + OCCRegion.h ../Common/Message.h discreteEdge.o: discreteEdge.cpp discreteEdge.h GModel.h GVertex.h \ GEntity.h Range.h SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h \ SVector3.h GFace.h GEdgeLoop.h Pair.h GRegion.h ../Common/Message.h \ @@ -193,9 +2152,44 @@ GModel.o: GModel.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \ MVertex.h MEdge.h MFace.h ../Common/Message.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h discreteRegion.h \ - discreteFace.h discreteEdge.h discreteVertex.h gmshSurface.h \ - ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Octree.h \ + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h discreteRegion.h discreteFace.h \ + discreteEdge.h discreteVertex.h gmshSurface.h ../Numeric/Numeric.h \ + ../Numeric/NumericEmbedded.h ../Common/Octree.h \ ../Common/OctreeInternals.h ../Common/SmoothData.h ../Mesh/Field.h \ ../Post/PView.h ../Geo/SPoint3.h ../Mesh/Generator.h \ ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h @@ -206,21 +2200,491 @@ GModelIO_Geo.o: GModelIO_Geo.cpp GModel.h GVertex.h GEntity.h Range.h \ ../Common/ListUtils.h ../Common/TreeUtils.h ../Common/avl.h \ ../Common/ListUtils.h ExtrudeParams.h ../Common/SmoothData.h \ ../Common/OpenFile.h ../Common/Message.h gmshVertex.h gmshFace.h \ - gmshEdge.h gmshRegion.h ../Mesh/Field.h ../Post/PView.h \ + GFaceCompound.h gmshEdge.h gmshRegion.h ../Mesh/Field.h ../Post/PView.h \ ../Geo/SPoint3.h ../Parser/Parser.h GModelIO_Mesh.o: GModelIO_Mesh.cpp GModel.h GVertex.h GEntity.h Range.h \ SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h \ GFace.h GEdgeLoop.h Pair.h GRegion.h ../Common/GmshDefines.h MElement.h \ MVertex.h MEdge.h MFace.h ../Common/Message.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h discreteRegion.h \ - discreteFace.h ../Common/StringUtils.h + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h discreteRegion.h discreteFace.h \ + ../Common/StringUtils.h GModelIO_OCC.o: GModelIO_OCC.cpp GModelIO_OCC.h GModel.h GVertex.h \ GEntity.h Range.h SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h \ SVector3.h GFace.h GEdgeLoop.h Pair.h GRegion.h OCCIncludes.h \ - ../Common/Message.h ../Common/Context.h ../Geo/CGNSOptions.h \ - ../Mesh/PartitionOptions.h OCCVertex.h OCCEdge.h OCCFace.h OCCRegion.h \ - MElement.h ../Common/GmshDefines.h MVertex.h MEdge.h MFace.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h ../Common/OpenFile.h + /usr/local/opencascade//inc/config.h \ + /usr/local/opencascade//inc/BRep_Tool.hxx \ + /usr/local/opencascade//inc/Standard_Boolean.hxx \ + /usr/local/opencascade//inc/Standard_TypeDef.hxx \ + /usr/local/opencascade//inc/Standard_Macro.hxx \ + /usr/local/opencascade//inc/Standard_Stream.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Surface.hxx \ + /usr/local/opencascade//inc/Standard.hxx \ + /usr/local/opencascade//inc/Standard_Address.hxx \ + /usr/local/opencascade//inc/Standard_Integer.hxx \ + /usr/local/opencascade//inc/Standard_values.h \ + /usr/local/opencascade//inc/Standard_OStream.hxx \ + /usr/local/opencascade//inc/Standard_CString.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_PrimitiveTypes.hxx \ + /usr/local/opencascade//inc/Standard_Real.hxx \ + /usr/local/opencascade//inc/Standard_Character.hxx \ + /usr/local/opencascade//inc/Standard_ctype.hxx \ + /usr/local/opencascade//inc/Standard_ExtCharacter.hxx \ + /usr/local/opencascade//inc/Standard_ExtString.hxx \ + /usr/local/opencascade//inc/Standard_Storable.hxx \ + /usr/local/opencascade//inc/Standard_Transient_proto.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon3D.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Handle_Poly_Polygon2D.hxx \ + /usr/local/opencascade//inc/Handle_Poly_PolygonOnTriangulation.hxx \ + /usr/local/opencascade//inc/GeomAbs_Shape.hxx \ + /usr/local/opencascade//inc/Geom_Curve.hxx \ + /usr/local/opencascade//inc/Geom_Geometry.hxx \ + /usr/local/opencascade//inc/MMgt_TShared.hxx \ + /usr/local/opencascade//inc/Standard_Transient.hxx \ + /usr/local/opencascade//inc/Standard_Type.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Type.hxx \ + /usr/local/opencascade//inc/Standard_KindOfType.hxx \ + /usr/local/opencascade//inc/Standard_Type.lxx \ + /usr/local/opencascade//inc/Geom2d_Curve.hxx \ + /usr/local/opencascade//inc/Geom2d_Geometry.hxx \ + /usr/local/opencascade//inc/Geom_Surface.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPS.hxx \ + /usr/local/opencascade//inc/Adaptor3d_SurfacePtr.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElS.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.hxx \ + /usr/local/opencascade//inc/gp_Pnt.hxx \ + /usr/local/opencascade//inc/gp_XYZ.hxx \ + /usr/local/opencascade//inc/gp_XYZ.lxx \ + /usr/local/opencascade//inc/gp.hxx /usr/local/opencascade//inc/gp.lxx \ + /usr/local/opencascade//inc/gp_Mat.hxx \ + /usr/local/opencascade//inc/gp_Mat.lxx \ + /usr/local/opencascade//inc/Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_OutOfRange.hxx \ + /usr/local/opencascade//inc/Handle_Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_SStream.hxx \ + /usr/local/opencascade//inc/Standard_RangeError.hxx \ + /usr/local/opencascade//inc/Standard_DomainError.hxx \ + /usr/local/opencascade//inc/Standard_Failure.hxx \ + /usr/local/opencascade//inc/Standard_Failure.lxx \ + /usr/local/opencascade//inc/Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/Handle_Standard_ConstructionError.hxx \ + /usr/local/opencascade//inc/gp_Pnt.lxx \ + /usr/local/opencascade//inc/gp_Trsf.hxx \ + /usr/local/opencascade//inc/gp_TrsfForm.hxx \ + /usr/local/opencascade//inc/gp_Trsf.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.hxx \ + /usr/local/opencascade//inc/gp_Mat2d.lxx \ + /usr/local/opencascade//inc/gp_XY.hxx \ + /usr/local/opencascade//inc/gp_XY.lxx \ + /usr/local/opencascade//inc/gp_Trsf2d.lxx \ + /usr/local/opencascade//inc/gp_Pnt2d.hxx \ + /usr/local/opencascade//inc/gp_Pnt2d.lxx \ + /usr/local/opencascade//inc/gp_Vec2d.hxx \ + /usr/local/opencascade//inc/gp_Vec2d.lxx \ + /usr/local/opencascade//inc/gp_Dir2d.hxx \ + /usr/local/opencascade//inc/gp_Dir2d.lxx \ + /usr/local/opencascade//inc/gp_Ax2d.hxx \ + /usr/local/opencascade//inc/gp_Ax2d.lxx \ + /usr/local/opencascade//inc/gp_Vec.hxx \ + /usr/local/opencascade//inc/gp_Vec.lxx \ + /usr/local/opencascade//inc/gp_Dir.hxx \ + /usr/local/opencascade//inc/gp_Dir.lxx \ + /usr/local/opencascade//inc/gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Handle_gp_VectorWithNullMagnitude.hxx \ + /usr/local/opencascade//inc/Extrema_POnSurf.lxx \ + /usr/local/opencascade//inc/Extrema_GenExtPS.hxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray2OfPnt.hxx \ + /usr/local/opencascade//inc/Extrema_FuncExtPS.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfReal.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.hxx \ + /usr/local/opencascade//inc/TCollection_BaseSequence.lxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfReal.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_SeqNode.hxx \ + /usr/local/opencascade//inc/TCollection_Sequence.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnSurf.hxx \ + /usr/local/opencascade//inc/math_FunctionSetWithDerivatives.hxx \ + /usr/local/opencascade//inc/math_FunctionSet.hxx \ + /usr/local/opencascade//inc/GeomAbs_SurfaceType.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Surface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedSurface.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineSurface.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/Quantity_Parameter.hxx \ + /usr/local/opencascade//inc/Quantity_Length.hxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnSurf.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_ExtPElC.hxx \ + /usr/local/opencascade//inc/Extrema_POnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_Point.lxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfPOnCurv.hxx \ + /usr/local/opencascade//inc/Extrema_EPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Extrema_PCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/Extrema_SeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSeqPCOfPCFOfEPCOfExtPC.hxx \ + /usr/local/opencascade//inc/math_FunctionWithDerivative.hxx \ + /usr/local/opencascade//inc/math_Function.hxx \ + /usr/local/opencascade//inc/GeomAbs_CurveType.hxx \ + /usr/local/opencascade//inc/Extrema_SequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/Handle_Extrema_SequenceNodeOfSequenceOfBoolean.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Adaptor3d_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BezierCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BoundedCurve.hxx \ + /usr/local/opencascade//inc/Handle_Geom_BSplineCurve.hxx \ + /usr/local/opencascade//inc/GeomAdaptor_Curve.lxx \ + /usr/local/opencascade//inc/GeomAPI_ProjectPointOnCurve.lxx \ + /usr/local/opencascade//inc/BRepTools.hxx \ + /usr/local/opencascade//inc/Standard_IStream.hxx \ + /usr/local/opencascade//inc/TopExp.hxx \ + /usr/local/opencascade//inc/TopAbs_ShapeEnum.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeVertex.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShape.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.hxx \ + /usr/local/opencascade//inc/TopLoc_SListOfItemLocation.hxx \ + /usr/local/opencascade//inc/Handle_TopLoc_SListNodeOfSListOfItemLocation.hxx \ + /usr/local/opencascade//inc/TCollection_SList.lxx \ + /usr/local/opencascade//inc/Handle_TopLoc_Datum3D.hxx \ + /usr/local/opencascade//inc/TopLoc_Location.lxx \ + /usr/local/opencascade//inc/TopLoc_ItemLocation.hxx \ + /usr/local/opencascade//inc/TopLoc_TrsfPtr.hxx \ + /usr/local/opencascade//inc/TopAbs_Orientation.hxx \ + /usr/local/opencascade//inc/TopoDS_Shape.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.hxx \ + /usr/local/opencascade//inc/TopoDS_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopoDS_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_MapNode.hxx \ + /usr/local/opencascade//inc/TCollection_List.lxx \ + /usr/local/opencascade//inc/TopoDS_TShape.lxx \ + /usr/local/opencascade//inc/TopAbs.hxx \ + /usr/local/opencascade//inc/TopAbs_State.hxx \ + /usr/local/opencascade//inc/TopTools_ListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_ListNodeOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepLib_Command.hxx \ + /usr/local/opencascade//inc/BRepLib_ShapeModification.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Command.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeShell.hxx \ + /usr/local/opencascade//inc/BRepLib_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_ShellError.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepLib_MakeSolid.hxx \ + /usr/local/opencascade//inc/BRepOffsetAPI_Sewing.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/Handle_BRepBuilderAPI_Sewing.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.hxx \ + /usr/local/opencascade//inc/TCollection_MapNodePtr.hxx \ + /usr/local/opencascade//inc/TCollection_BasicMap.lxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedMapNodeOfIndexedMapOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_IndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_IndexedDataMapNodeOfIndexedDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeShape.hxx \ + /usr/local/opencascade//inc/TopTools_DataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_DataMapNodeOfDataMapOfShapeListOfShape.hxx \ + /usr/local/opencascade//inc/Handle_BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/TopTools_MapOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_StdMapNodeOfMapOfShape.hxx \ + /usr/local/opencascade//inc/BRepBuilderAPI_Sewing.lxx \ + /usr/local/opencascade//inc/BRepLProp_SLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.hxx \ + /usr/local/opencascade//inc/TopoDS_Face.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Surface.lxx \ + /usr/local/opencascade//inc/LProp_Status.hxx \ + /usr/local/opencascade//inc/Poly_Triangulation.hxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt.hxx \ + /usr/local/opencascade//inc/TCollection_Array1.lxx \ + /usr/local/opencascade//inc/Handle_TColgp_HArray1OfPnt2d.hxx \ + /usr/local/opencascade//inc/Poly_Array1OfTriangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.hxx \ + /usr/local/opencascade//inc/Poly_Triangle.lxx \ + /usr/local/opencascade//inc/Poly_Triangulation.lxx \ + /usr/local/opencascade//inc/TColgp_Array1OfPnt2d.hxx \ + /usr/local/opencascade//inc/GProp_GProps.hxx \ + /usr/local/opencascade//inc/BRepGProp.hxx \ + /usr/local/opencascade//inc/TopoDS.hxx \ + /usr/local/opencascade//inc/TopoDS.lxx \ + /usr/local/opencascade//inc/Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/Handle_Standard_TypeMismatch.hxx \ + /usr/local/opencascade//inc/TopoDS_Solid.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.hxx \ + /usr/local/opencascade//inc/TopExp_Stack.hxx \ + /usr/local/opencascade//inc/TopExp_Explorer.lxx \ + /usr/local/opencascade//inc/BRep_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder3D.hxx \ + /usr/local/opencascade//inc/TopoDS_Builder.hxx \ + /usr/local/opencascade//inc/TopoDS_Wire.hxx \ + /usr/local/opencascade//inc/BRepTools_WireExplorer.hxx \ + /usr/local/opencascade//inc/TopoDS_Edge.hxx \ + /usr/local/opencascade//inc/TopoDS_Vertex.hxx \ + /usr/local/opencascade//inc/BRepLProp_CLProps.hxx \ + /usr/local/opencascade//inc/BRepAdaptor_Curve.hxx \ + /usr/local/opencascade//inc/Handle_Adaptor3d_HCurveOnSurface.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.hxx \ + /usr/local/opencascade//inc/XSControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_XSControl_WorkSession.hxx \ + /usr/local/opencascade//inc/Handle_IFSelect_WorkSession.hxx \ + /usr/local/opencascade//inc/TColStd_SequenceOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_SequenceNodeOfSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/TopTools_SequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_SequenceNodeOfSequenceOfShape.hxx \ + /usr/local/opencascade//inc/IFSelect_ReturnStatus.hxx \ + /usr/local/opencascade//inc/Handle_Interface_InterfaceModel.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfTransient.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintCount.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESModel.hxx \ + /usr/local/opencascade//inc/IFSelect_PrintFail.hxx \ + /usr/local/opencascade//inc/IGESControl_Reader.lxx \ + /usr/local/opencascade//inc/STEPControl_Reader.hxx \ + /usr/local/opencascade//inc/Handle_StepData_StepModel.hxx \ + /usr/local/opencascade//inc/IGESToBRep_Reader.hxx \ + /usr/local/opencascade//inc/Handle_IGESToBRep_Actor.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfTransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ActorOfProcessForTransient.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_TransientProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForTransient.hxx \ + /usr/local/opencascade//inc/Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Static.hxx \ + /usr/local/opencascade//inc/Handle_Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Handle_MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.hxx \ + /usr/local/opencascade//inc/TCollection_AsciiString.lxx \ + /usr/local/opencascade//inc/Interface_ParamType.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HArray1OfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfInteger.hxx \ + /usr/local/opencascade//inc/Interface_StaticSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Interface_TypedValue.hxx \ + /usr/local/opencascade//inc/Interface_ValueInterpret.hxx \ + /usr/local/opencascade//inc/Interface_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/MoniTool_TypedValue.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueType.hxx \ + /usr/local/opencascade//inc/MoniTool_ValueInterpret.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_TCollection_HExtendedString.hxx \ + /usr/local/opencascade//inc/TCollection_HAsciiString.lxx \ + /usr/local/opencascade//inc/MoniTool_ValueSatisfies.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfAsciiString.hxx \ + /usr/local/opencascade//inc/Handle_Dico_DictionaryOfTransient.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfHAsciiString.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.hxx \ + /usr/local/opencascade//inc/Extrema_ExtCC.hxx \ + /usr/local/opencascade//inc/GeomAPI_ExtremaCurveCurve.lxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.hxx \ + /usr/local/opencascade//inc/Standard_ErrorHandler.lxx \ + /usr/local/opencascade//inc/ShapeUpgrade_ShellSewing.hxx \ + /usr/local/opencascade//inc/Handle_ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shape.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_BasicMsgRegistrator.hxx \ + /usr/local/opencascade//inc/Message_Gravity.hxx \ + /usr/local/opencascade//inc/ShapeFix_Root.lxx \ + /usr/local/opencascade//inc/Precision.hxx \ + /usr/local/opencascade//inc/Precision.lxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Edge.hxx \ + /usr/local/opencascade//inc/ShapeExtend_Status.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shape.lxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.hxx \ + /usr/local/opencascade//inc/ShapeFix_Solid.lxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Shell.hxx \ + /usr/local/opencascade//inc/TopoDS_Compound.hxx \ + /usr/local/opencascade//inc/ShapeFix_Shell.lxx \ + /usr/local/opencascade//inc/ShapeFix_Face.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Surface.hxx \ + /usr/local/opencascade//inc/Handle_ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/ShapeFix_Face.lxx \ + /usr/local/opencascade//inc/ShapeExtend.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wire.lxx \ + /usr/local/opencascade//inc/ShapeExtend_WireData.hxx \ + /usr/local/opencascade//inc/Handle_TopTools_HSequenceOfShape.hxx \ + /usr/local/opencascade//inc/Handle_TColStd_HSequenceOfInteger.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_Wire.lxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_Wireframe.hxx \ + /usr/local/opencascade//inc/ShapeFix_Wireframe.lxx \ + /usr/local/opencascade//inc/BRepMesh.hxx \ + /usr/local/opencascade//inc/BRepMesh_IncrementalMesh.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_FastDiscret.hxx \ + /usr/local/opencascade//inc/BRepMesh_DataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Handle_BRepMesh_DataMapNodeOfDataMapOfShapeReal.hxx \ + /usr/local/opencascade//inc/Bnd_Box.hxx \ + /usr/local/opencascade//inc/Bnd_Box.lxx \ + /usr/local/opencascade//inc/BRepBndLib.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis.hxx \ + /usr/local/opencascade//inc/ShapeBuild_ReShape.hxx \ + /usr/local/opencascade//inc/BRepTools_ReShape.hxx \ + /usr/local/opencascade//inc/IGESControl_Writer.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_FinderProcess.hxx \ + /usr/local/opencascade//inc/Handle_Transfer_ProcessForFinder.hxx \ + /usr/local/opencascade//inc/IGESData_BasicEditor.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_Protocol.hxx \ + /usr/local/opencascade//inc/Handle_Interface_Protocol.hxx \ + /usr/local/opencascade//inc/Interface_GeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_NodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GeneralModule.hxx \ + /usr/local/opencascade//inc/Handle_Interface_GlobalNodeOfGeneralLib.hxx \ + /usr/local/opencascade//inc/IGESData_SpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_NodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_IGESEntity.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_SpecificModule.hxx \ + /usr/local/opencascade//inc/Handle_IGESData_GlobalNodeOfSpecificLib.hxx \ + /usr/local/opencascade//inc/STEPControl_Writer.hxx \ + /usr/local/opencascade//inc/STEPControl_StepModelType.hxx \ + /usr/local/opencascade//inc/StlAPI_Writer.hxx \ + /usr/local/opencascade//inc/Handle_StlMesh_Mesh.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeTolerance.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_ShapeContents.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.hxx \ + /usr/local/opencascade//inc/ShapeAnalysis_CheckSmallFace.lxx \ + /usr/local/opencascade//inc/ShapeAnalysis_DataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/Handle_ShapeAnalysis_DataMapNodeOfDataMapOfShapeListOfReal.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Fuse.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_BooleanOperation.hxx \ + /usr/local/opencascade//inc/BOP_Operation.hxx \ + /usr/local/opencascade//inc/BOPTools_PDSFiller.hxx \ + /usr/local/opencascade//inc/BOP_PBuilder.hxx \ + /usr/local/opencascade//inc/Handle_BOP_HistoryCollector.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.hxx \ + /usr/local/opencascade//inc/BRepCheck_DataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_Result.hxx \ + /usr/local/opencascade//inc/Handle_BRepCheck_DataMapNodeOfDataMapOfShapeResult.hxx \ + /usr/local/opencascade//inc/BRepCheck_Analyzer.lxx \ + /usr/local/opencascade//inc/BRepLib.hxx \ + /usr/local/opencascade//inc/Handle_Geom_Plane.hxx \ + /usr/local/opencascade//inc/Handle_Geom_ElementarySurface.hxx \ + /usr/local/opencascade//inc/ShapeFix.hxx \ + /usr/local/opencascade//inc/ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/Handle_ShapeFix_FixSmallFace.hxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.hxx \ + /usr/local/opencascade//inc/TopoDS_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/TCollection_ListIterator.lxx \ + /usr/local/opencascade//inc/TopoDS_Iterator.lxx \ + /usr/local/opencascade//inc/Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/Handle_Standard_NoSuchObject.hxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeSphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Sphere.hxx \ + /usr/local/opencascade//inc/BRepPrim_Revolution.hxx \ + /usr/local/opencascade//inc/BRepPrim_OneAxis.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.hxx \ + /usr/local/opencascade//inc/BRepPrim_Builder.lxx \ + /usr/local/opencascade//inc/gp_Ax2.hxx \ + /usr/local/opencascade//inc/gp_Ax1.hxx \ + /usr/local/opencascade//inc/gp_Ax1.lxx \ + /usr/local/opencascade//inc/gp_Ax2.lxx \ + /usr/local/opencascade//inc/BRepPrimAPI_MakeOneAxis.hxx \ + /usr/local/opencascade//inc/TopTools_ListIteratorOfListOfShape.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Common.hxx \ + /usr/local/opencascade//inc/BRepAlgoAPI_Cut.hxx ../Common/Message.h \ + ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h \ + OCCVertex.h OCCEdge.h OCCFace.h OCCRegion.h MElement.h \ + ../Common/GmshDefines.h MVertex.h MEdge.h MFace.h \ + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/OpenFile.h GModelIO_Fourier.o: GModelIO_Fourier.cpp GModel.h GVertex.h GEntity.h \ Range.h SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h \ SVector3.h GFace.h GEdgeLoop.h Pair.h GRegion.h ../Common/Message.h \ @@ -270,35 +2734,247 @@ findLinks.o: findLinks.cpp ../Common/Message.h GModel.h GVertex.h \ ../Common/avl.h ../Common/ListUtils.h MVertex.o: MVertex.cpp MVertex.h SPoint3.h GEdge.h GEntity.h Range.h \ SBoundingBox3d.h GVertex.h GPoint.h SPoint2.h SVector3.h GFace.h \ - GEdgeLoop.h Pair.h ../Common/Message.h ../Common/StringUtils.h + GEdgeLoop.h Pair.h GFaceCompound.h Geo.h ../Common/GmshDefines.h \ + gmshSurface.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \ + ../Common/ListUtils.h ../Common/TreeUtils.h ../Common/avl.h \ + ../Common/ListUtils.h ExtrudeParams.h ../Common/SmoothData.h \ + ../Common/Message.h ../Common/StringUtils.h GaussQuadratureTri.o: GaussQuadratureTri.cpp MElement.h \ ../Common/GmshDefines.h MVertex.h SPoint3.h MEdge.h SVector3.h MFace.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - GaussLegendreSimplex.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h GaussLegendreSimplex.h GaussQuadratureQuad.o: GaussQuadratureQuad.cpp MElement.h \ ../Common/GmshDefines.h MVertex.h SPoint3.h MEdge.h SVector3.h MFace.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - GaussLegendreSimplex.h ../Numeric/GaussLegendre1D.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h GaussLegendreSimplex.h \ + ../Numeric/GaussLegendre1D.h GaussQuadratureTet.o: GaussQuadratureTet.cpp MElement.h \ ../Common/GmshDefines.h MVertex.h SPoint3.h MEdge.h SVector3.h MFace.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - GaussLegendreSimplex.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h GaussLegendreSimplex.h GaussQuadratureHex.o: GaussQuadratureHex.cpp MElement.h \ ../Common/GmshDefines.h MVertex.h SPoint3.h MEdge.h SVector3.h MFace.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - GaussLegendreSimplex.h ../Numeric/GaussLegendre1D.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h GaussLegendreSimplex.h \ + ../Numeric/GaussLegendre1D.h GaussLegendreSimplex.o: GaussLegendreSimplex.cpp MElement.h \ ../Common/GmshDefines.h MVertex.h SPoint3.h MEdge.h SVector3.h MFace.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - GaussLegendreSimplex.h ../Numeric/GaussLegendre1D.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h GaussLegendreSimplex.h \ + ../Numeric/GaussLegendre1D.h MFace.o: MFace.cpp MFace.h MVertex.h SPoint3.h SVector3.h \ ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \ ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h MElement.o: MElement.cpp MElement.h ../Common/GmshDefines.h MVertex.h \ SPoint3.h MEdge.h SVector3.h MFace.h ../Common/Message.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h GEntity.h Range.h \ - SBoundingBox3d.h GFace.h GPoint.h GEdgeLoop.h GEdge.h GVertex.h \ - SPoint2.h Pair.h ../Common/StringUtils.h ../Numeric/Numeric.h \ + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h GEntity.h Range.h SBoundingBox3d.h GFace.h \ + GPoint.h GEdgeLoop.h GEdge.h GVertex.h SPoint2.h Pair.h \ + ../Common/StringUtils.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h ../Numeric/GaussLegendre1D.h \ ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h \ ../Mesh/qualityMeasures.h ../Mesh/meshGFaceDelaunayInsertion.h \ diff --git a/Geo/OCCEdge.cpp b/Geo/OCCEdge.cpp index 2fead0504044df430f2df11b3bfcf9f4b3b3da02..bdff7037ac17db19d142721f503004c77b779935 100644 --- a/Geo/OCCEdge.cpp +++ b/Geo/OCCEdge.cpp @@ -92,6 +92,7 @@ SPoint2 OCCEdge::reparamOnFace(GFace *face, double epar, int dir) const // True if the edge is a seam for the given face bool OCCEdge::isSeam(GFace *face) const { + if (face->geomType() == GEntity::CompoundSurface)return false; const TopoDS_Face *s = (TopoDS_Face*) face->getNativePtr(); BRepAdaptor_Surface surface(*s); // printf("asking if edge %d is a seam of face %d\n",tag(),face->tag()); diff --git a/Geo/gmshEdge.cpp b/Geo/gmshEdge.cpp index ec185692cc0d197de5d4048119ae2fd89d718301..b8bf5ba5216701614dda862bcfbd3ffae110e012 100644 --- a/Geo/gmshEdge.cpp +++ b/Geo/gmshEdge.cpp @@ -5,6 +5,7 @@ #include "GModel.h" #include "GFace.h" +#include "GFaceCompound.h" #include "gmshEdge.h" #include "Geo.h" #include "GeoInterpolation.h" diff --git a/Graphics/Geom.cpp b/Graphics/Geom.cpp index e321c6b77d369804760a9a947404b835427e0d2d..3d257c990ead9ac5b676820505131181a65ebad9 100644 --- a/Graphics/Geom.cpp +++ b/Graphics/Geom.cpp @@ -278,6 +278,7 @@ class drawGFace { } void _drawParametricGFace(GFace *f) { + if (f->geomType() == GEntity::CompoundSurface)return; Range<double> ubounds = f->parBounds(0); Range<double> vbounds = f->parBounds(1); const double uav = 0.5 * (ubounds.high() + ubounds.low()); diff --git a/Mesh/HighOrder.cpp b/Mesh/HighOrder.cpp index ab6093049b45a8e081a956646b914c88b03e8f16..891481a725f0682d691d5ffdb5e3a6a96937906f 100644 --- a/Mesh/HighOrder.cpp +++ b/Mesh/HighOrder.cpp @@ -4,12 +4,14 @@ // bugs and problems to <gmsh@geuz.org>. #include "HighOrder.h" +#include "gmshSmoothHighOrder.h" #include "meshGFaceOptimize.h" #include "MElement.h" #include "Message.h" #include "OS.h" #include "Numeric.h" #include "Context.h" +#include "GFaceCompound.h" #include "GmshMatrix.h" #include "FunctionSpace.h" @@ -315,27 +317,103 @@ bool deformElement(MElement *ele,GEntity* ge,const std::set<MVertex*>& blocked) return true; } +static void getAllParameters (MVertex *v, GFace *gf, std::vector<SPoint2> ¶ms){ + params.clear(); + if(v->onWhat()->dim() == 0){ + GVertex *gv = (GVertex*)v->onWhat(); + std::list<GEdge*> ed = gv->edges(); + bool seam = false; + for(std::list<GEdge*>::iterator it = ed.begin(); it != ed.end(); it++) + if((*it)->isSeam(gf)) { + Range<double> range = (*it)->parBounds(0); + if (gv == (*it)->getBeginVertex()){ + params.push_back((*it)->reparamOnFace(gf, range.low(),-1)); + params.push_back((*it)->reparamOnFace(gf, range.low(), 1)); + } + else if (gv == (*it)->getEndVertex()){ + params.push_back((*it)->reparamOnFace(gf, range.high(),-1)); + params.push_back((*it)->reparamOnFace(gf, range.high(), 1)); + } + else{ + printf("Strange !\n"); + } + seam = true; + } + if (!seam) + params.push_back(gv->reparamOnFace(gf, 1)); + } + else if(v->onWhat()->dim() == 1){ + GEdge *ge = (GEdge*)v->onWhat(); + double UU; + v->getParameter(0, UU); + params.push_back(ge->reparamOnFace(gf, UU, 1)); + if(ge->isSeam(gf)) + params.push_back(ge->reparamOnFace(gf, UU, -1)); + } + else{ + double UU, VV; + if(v->onWhat() == gf && v->getParameter(0, UU) && v->getParameter(1, VV)) + params.push_back(SPoint2(UU, VV)); + } +} + +bool reparamOnFace(MVertex *v1, MVertex *v2, GFace *gf, SPoint2 ¶m1, SPoint2 ¶m2){ + std::vector<SPoint2> p1,p2; + getAllParameters (v1,gf,p1); + getAllParameters (v2,gf,p2); + if (p1.size() == 1 && p2.size() == 1){ + param1 = p1[0]; + param2 = p2[0]; + return true; + } + else if (p1.size() == 1 && p2.size() == 2){ + double d1 = (p1[0].x() - p2[0].x())*(p1[0].x() - p2[0].x())+ + (p1[0].x() - p2[0].y())*(p1[0].y() - p2[0].y()); + double d2 = (p1[0].x() - p2[1].x())*(p1[0].x() - p2[1].x())+ + (p1[0].x() - p2[1].y())*(p1[0].y() - p2[1].y()); + param1 = p1[0]; + param2 = d2 < d1 ? p2[1] : p2[0]; + return true; + } + else if (p2.size() == 1 && p1.size() == 2){ + double d1 = (p2[0].x() - p1[0].x())*(p2[0].x() - p1[0].x())+ + (p2[0].x() - p1[0].y())*(p2[0].y() - p1[0].y()); + double d2 = (p2[0].x() - p1[1].x())*(p2[0].x() - p1[1].x())+ + (p2[0].x() - p1[1].y())*(p2[0].y() - p1[1].y()); + param1 = d2 < d1 ? p1[1] : p1[0]; + param2 = p2[0]; + return true; + } + printf("%d %d \n",p1.size(),p2.size()); + return false; +} bool reparamOnFace(MVertex *v, GFace *gf, SPoint2 ¶m) { + + if (gf->geomType() == GEntity::CompoundSurface){ + GFaceCompound *gfc = (GFaceCompound*) gf; + param = gfc->getCoordinates(v); + return true; + } + if(v->onWhat()->dim() == 0){ GVertex *gv = (GVertex*)v->onWhat(); // abort if we could be on a seam - /* + std::list<GEdge*> ed = gv->edges(); for(std::list<GEdge*>::iterator it = ed.begin(); it != ed.end(); it++) if((*it)->isSeam(gf)) return false; - */ + param = gv->reparamOnFace(gf, 1); } else if(v->onWhat()->dim() == 1){ GEdge *ge = (GEdge*)v->onWhat(); // abort if we are on a seam (todo: try dir=-1 and compare) - // if(ge->isSeam(gf)){ - // printf("oops : %d %d\n",ge->tag(),gf->tag()); - // } + if(ge->isSeam(gf)) + return false; double UU; v->getParameter(0, UU); @@ -539,7 +617,8 @@ bool reparamOnEdge(MVertex *v, GEdge *ge, double ¶m) void getEdgeVertices(GEdge *ge, MElement *ele, std::vector<MVertex*> &ve, edgeContainer &edgeVertices, bool linear, int nPts = 1, - std::map<MVertex*,SVector3> *disp = 0) + gmshHighOrderSmoother *displ2D = 0, + gmshHighOrderSmoother *displ3D = 0) { for(int i = 0; i < ele->getNumEdges(); i++){ MEdge edge = ele->getEdge(i); @@ -590,9 +669,10 @@ void getEdgeVertices(GEdge *ge, MElement *ele, std::vector<MVertex*> &ve, else { GPoint pc = ge->point(US[j+1]); v = new MEdgeVertex(pc.x(), pc.y(), pc.z(), ge, US[j+1]); - if (disp){ + if (displ2D){ SPoint3 pc2 = edge.interpolate(t); - (*disp)[v] = SVector3(pc2.x(),pc2.y(),pc2.z()); + displ2D->add(v,SVector3(pc2.x(),pc2.y(),pc2.z())); + displ3D->add(v,SVector3(pc2.x(),pc2.y(),pc2.z())); } } temp.push_back(v); @@ -609,7 +689,8 @@ void getEdgeVertices(GEdge *ge, MElement *ele, std::vector<MVertex*> &ve, void getEdgeVertices(GFace *gf, MElement *ele, std::vector<MVertex*> &ve, edgeContainer &edgeVertices, bool linear, int nPts = 1, - std::map<MVertex*,SVector3> *disp = 0) + gmshHighOrderSmoother *displ2D = 0, + gmshHighOrderSmoother *displ3D = 0) { for(int i = 0; i < ele->getNumEdges(); i++){ MEdge edge = ele->getEdge(i); @@ -627,8 +708,10 @@ void getEdgeVertices(GFace *gf, MElement *ele, std::vector<MVertex*> &ve, if(!linear && gf->geomType() != GEntity::DiscreteSurface && gf->geomType() != GEntity::BoundaryLayerSurface){ - reparamOK &= reparamOnFace(v0, gf, p0); - reparamOK &= reparamOnFace(v1, gf, p1); + + reparamOK = reparamOnFace(v0, v1, gf, p0, p1); + // reparamOK &= reparamOnFace(v0, gf, p0); + // reparamOK &= reparamOnFace(v1, gf, p1); } double US[100], VS[100]; if(reparamOK && !linear && gf->geomType() != GEntity::DiscreteCurve){ @@ -645,9 +728,9 @@ void getEdgeVertices(GFace *gf, MElement *ele, std::vector<MVertex*> &ve, else{ GPoint pc = gf->point(US[j+1], VS[j+1]); v = new MFaceVertex(pc.x(), pc.y(), pc.z(), gf, US[j+1], VS[j+1]); - if (disp){ + if (displ3D){ SPoint3 pc2 = edge.interpolate(t); - (*disp)[v] = SVector3(pc2.x(),pc2.y(),pc2.z()); + displ3D->add(v,SVector3(pc2.x(),pc2.y(),pc2.z())); } } temp.push_back(v); @@ -668,7 +751,8 @@ void getEdgeVertices(GRegion *gr, MElement *ele, edgeContainer &edgeVertices, bool linear, int nPts = 1, - std::map<MVertex*,SVector3> *displ = 0) + gmshHighOrderSmoother *displ2D = 0, + gmshHighOrderSmoother *displ3D = 0) { for(int i = 0; i < ele->getNumEdges(); i++){ MEdge edge = ele->getEdge(i); @@ -706,7 +790,8 @@ void getFaceVertices(GFace *gf, std::vector<MVertex*> &vf, faceContainer &faceVertices, bool linear, int nPts = 1, - std::map<MVertex*,SVector3> *displ = 0) { + gmshHighOrderSmoother *displ2D = 0, + gmshHighOrderSmoother *displ3D = 0) { Double_Matrix points; int start = 0; @@ -801,9 +886,9 @@ void getFaceVertices(GFace *gf, else{ v = new MVertex(X,Y,Z, gf); } - if (displ){ + if (displ3D){ SPoint3 pc2 = face.interpolate(t1, t2); - (*displ)[v] = SVector3(pc2.x(),pc2.y(),pc2.z()); + displ3D->add(v,SVector3(pc2.x(),pc2.y(),pc2.z())); } } // should be expensive -> induces a new search each time @@ -1220,13 +1305,14 @@ void getRegionVertices(GRegion *gr, void setHighOrder(GEdge *ge, edgeContainer &edgeVertices, bool linear, - int nbPts = 1, std::map<MVertex*,SVector3> *displ = 0) + int nbPts = 1, gmshHighOrderSmoother *displ2D = 0, + gmshHighOrderSmoother *displ3D = 0) { std::vector<MLine*> lines2; for(unsigned int i = 0; i < ge->lines.size(); i++){ MLine *l = ge->lines[i]; std::vector<MVertex*> ve; - getEdgeVertices(ge, l, ve, edgeVertices, linear, nbPts, displ); + getEdgeVertices(ge, l, ve, edgeVertices, linear, nbPts, displ2D, displ3D); if(nbPts == 1) lines2.push_back(new MLine3(l->getVertex(0), l->getVertex(1), ve[0])); else @@ -1239,13 +1325,14 @@ void setHighOrder(GEdge *ge, edgeContainer &edgeVertices, bool linear, void setHighOrder(GFace *gf, edgeContainer &edgeVertices, faceContainer &faceVertices, bool linear, bool incomplete, - int nPts = 1, std::map<MVertex*,SVector3> *displ = 0) + int nPts = 1, gmshHighOrderSmoother *displ2D = 0, + gmshHighOrderSmoother *displ3D = 0) { std::vector<MTriangle*> triangles2; for(unsigned int i = 0; i < gf->triangles.size(); i++){ MTriangle *t = gf->triangles[i]; std::vector<MVertex*> ve, vf; - getEdgeVertices(gf, t, ve, edgeVertices, linear, nPts,displ); + getEdgeVertices(gf, t, ve, edgeVertices, linear, nPts,displ2D,displ3D); if(nPts == 1){ triangles2.push_back (new MTriangle6(t->getVertex(0), t->getVertex(1), t->getVertex(2), @@ -1264,7 +1351,7 @@ void setHighOrder(GFace *gf, edgeContainer &edgeVertices, else{ MTriangleN incpl (t->getVertex(0), t->getVertex(1), t->getVertex(2), ve, nPts + 1); - getFaceVertices(gf, &incpl, t, vf, faceVertices, linear, nPts,displ); + getFaceVertices(gf, &incpl, t, vf, faceVertices, linear, nPts,displ2D,displ3D); } ve.insert(ve.end(), vf.begin(), vf.end()); triangles2.push_back @@ -1280,7 +1367,7 @@ void setHighOrder(GFace *gf, edgeContainer &edgeVertices, for(unsigned int i = 0; i < gf->quadrangles.size(); i++){ MQuadrangle *q = gf->quadrangles[i]; std::vector<MVertex*> ve, vf; - getEdgeVertices(gf, q, ve, edgeVertices, linear, nPts,displ); + getEdgeVertices(gf, q, ve, edgeVertices, linear, nPts,displ2D,displ3D); if(incomplete){ quadrangles2.push_back (new MQuadrangle8(q->getVertex(0), q->getVertex(1), q->getVertex(2), @@ -1300,7 +1387,8 @@ void setHighOrder(GFace *gf, edgeContainer &edgeVertices, void setHighOrder(GRegion *gr, edgeContainer &edgeVertices, faceContainer &faceVertices, bool linear, bool incomplete, - int nPts = 1, std::map<MVertex*,SVector3> *displ = 0) + int nPts = 1, gmshHighOrderSmoother *displ2D = 0, + gmshHighOrderSmoother *displ3D = 0) { int nbCorr = 0; @@ -1311,7 +1399,7 @@ void setHighOrder(GRegion *gr, edgeContainer &edgeVertices, std::set<MVertex*> blocked; std::vector<MVertex*> ve,vf,vr; - getEdgeVertices(gr, t, ve, blocked,edgeVertices, linear, nPts,displ); + getEdgeVertices(gr, t, ve, blocked,edgeVertices, linear, nPts,displ2D, displ3D); if (nPts == 1){ tetrahedra2.push_back (new MTetrahedron10(t->getVertex(0), t->getVertex(1), t->getVertex(2), @@ -1363,7 +1451,7 @@ void setHighOrder(GRegion *gr, edgeContainer &edgeVertices, MHexahedron *h = gr->hexahedra[i]; std::vector<MVertex*> ve, vf; std::set<MVertex*> blocked; - getEdgeVertices(gr, h, ve, blocked, edgeVertices, linear, nPts,displ); + getEdgeVertices(gr, h, ve, blocked, edgeVertices, linear, nPts,displ2D, displ3D); if(incomplete){ hexahedra2.push_back (new MHexahedron20(h->getVertex(0), h->getVertex(1), h->getVertex(2), @@ -1393,7 +1481,7 @@ void setHighOrder(GRegion *gr, edgeContainer &edgeVertices, MPrism *p = gr->prisms[i]; std::vector<MVertex*> ve, vf; std::set<MVertex*> blocked; - getEdgeVertices(gr, p, ve, blocked, edgeVertices, linear, nPts,displ); + getEdgeVertices(gr, p, ve, blocked, edgeVertices, linear, nPts,displ2D, displ3D); if(incomplete){ prisms2.push_back (new MPrism15(p->getVertex(0), p->getVertex(1), p->getVertex(2), @@ -1417,7 +1505,7 @@ void setHighOrder(GRegion *gr, edgeContainer &edgeVertices, MPyramid *p = gr->pyramids[i]; std::vector<MVertex*> ve, vf; std::set<MVertex*> blocked; - getEdgeVertices(gr, p, ve, blocked, edgeVertices, linear, nPts,displ); + getEdgeVertices(gr, p, ve, blocked, edgeVertices, linear, nPts,displ2D, displ3D); if(incomplete){ pyramids2.push_back (new MPyramid13(p->getVertex(0), p->getVertex(1), p->getVertex(2), @@ -1515,41 +1603,14 @@ bool straightLine(std::vector<MVertex*> &l, MVertex *n1, MVertex *n2) return true; } -static double mesh_functional_distorsion(MTriangle *t, double u, double v) -{ - // compute uncurved element jacobian d_u x and d_v x - double mat[2][3]; - // t->getPrimaryJacobian(0, 0, 0, mat); - t->getJacobian(0, 0, 0, mat); - - double v1[3] = {mat[0][0], mat[0][1], mat[0][2]}; - double v2[3] = {mat[1][0], mat[1][1], mat[1][2]}; - double normal1[3]; - prodve(v1, v2, normal1); - double nn = sqrt(SQU(normal1[0]) + SQU(normal1[1]) + SQU(normal1[2])); - - // compute uncurved element jacobian d_u x and d_v x - t->getJacobian(u, v, 0, mat); - double v1b[3] = {mat[0][0], mat[0][1], mat[0][2]}; - double v2b[3] = {mat[1][0], mat[1][1], mat[1][2]}; - double normal[3]; - prodve(v1b, v2b, normal); - - double sign; - prosca(normal1, normal, &sign); - double det = norm3(normal) * (sign > 0 ? 1. : -1.) / nn; - - // compute distorsion - double dist = std::min(1. / det, det); - return dist; -} +extern double mesh_functional_distorsion(MTriangle *t, double u, double v); void getMinMaxJac (MTriangle *t, double &minJ, double &maxJ) { double mat[2][3]; int n = 3; - // t->getPrimaryJacobian(0, 0, 0, mat); - t->getJacobian(0, 0, 0, mat); + t->getPrimaryJacobian(0, 0, 0, mat); + //t->getJacobian(0, 0, 0, mat); double v1[3] = {mat[0][0], mat[0][1], mat[0][2]}; double v2[3] = {mat[1][0], mat[1][1], mat[1][2]}; double normal1[3], normal[3]; @@ -1989,9 +2050,9 @@ void checkHighOrderTriangles(GModel *m) void printJacobians(GModel *m, const char *nm) { - return; + return; - const int n = 15; + const int n = 25; double D[n][n]; double X[n][n]; double Y[n][n]; @@ -2000,37 +2061,52 @@ void printJacobians(GModel *m, const char *nm) FILE *f = fopen(nm,"w"); fprintf(f,"View \"\"{\n"); for(GModel::fiter it = m->firstFace(); it != m->lastFace(); ++it){ - for(unsigned int i = 0; i < (*it)->triangles.size(); i++){ - MTriangle *t = (*it)->triangles[i]; + for(unsigned int j = 0; j < (*it)->triangles.size(); j++){ + MTriangle *t = (*it)->triangles[j]; for(int i = 0; i < n; i++){ for(int k = 0; k < n - i; k++){ SPoint3 pt; double u = (double)i / (n - 1); double v = (double)k / (n - 1); t->pnt(u, v, 0, pt); - D[i][k] = mesh_functional_distorsion(t, u, v); + D[i][k] = mesh_functional_distorsion(t, u, v); X[i][k] = pt.x(); Y[i][k] = pt.y(); Z[i][k] = pt.z(); + // printf("X[%d][%d] = %g %g\n",i,k,X[i][k],pt.x()); } } - for(int i = 0; i < n -1; i++){ + for(int i= 0; i < n -1; i++){ for(int k = 0; k < n - i -1; k++){ - fprintf(f,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%22.15E,%22.15E,%22.15E};\n", - X[i][k],Y[i][k],Z[i][k], - X[i+1][k],Y[i+1][k],Z[i+1][k], - X[i][k+1],Y[i][k+1],Z[i][k+1], - D[i][k], - D[i+1][k], - D[i][k+1]); + fprintf(f,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%22.15E,%22.15E,%22.15E};\n", + X[i][k],Y[i][k],Z[i][k], + X[i+1][k],Y[i+1][k],Z[i+1][k], + X[i][k+1],Y[i][k+1],Z[i][k+1], + D[i][k], + D[i+1][k], + D[i][k+1]); +// fprintf(f,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%22.15E,%22.15E,%22.15E};\n", +// X[i][k],X[i+1][k],X[i][k+1], +// Y[i][k],Y[i+1][k],Y[i][k+1], +// Z[i][k],Z[i+1][k],Z[i][k+1], +// D[i][k], +// D[i+1][k], +// D[i][k+1]); if (i != n-2 && k != n - i -2) - fprintf(f,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%22.15E,%22.15E,%22.15E};\n", - X[i+1][k],Y[i+1][k],Z[i+1][k], - X[i+1][k+1],Y[i+1][k+1],Z[i+1][k+1], - X[i][k+1],Y[i][k+1],Z[i][k+1], - D[i+1][k], - D[i+1][k+1], - D[i][k+1]); + fprintf(f,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%22.15E,%22.15E,%22.15E};\n", + X[i+1][k],Y[i+1][k],Z[i+1][k], + X[i+1][k+1],Y[i+1][k+1],Z[i+1][k+1], + X[i][k+1],Y[i][k+1],Z[i][k+1], + D[i+1][k], + D[i+1][k+1], + D[i][k+1]); +// fprintf(f,"ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%22.15E,%22.15E,%22.15E};\n", +// X[i+1][k],X[i+1][k+1],X[i][k+1], +// Y[i+1][k],Y[i+1][k+1],Y[i][k+1], +// Z[i+1][k],Z[i+1][k+1],Z[i][k+1], +// D[i+1][k], +// D[i+1][k+1], +// D[i][k+1]); } } } @@ -2069,37 +2145,44 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete) // first, make sure to remove any existsing second order vertices/elements SetOrder1(m); - std::map<MVertex*,SVector3> *displ = 0; + gmshHighOrderSmoother *displ2D = 0; + gmshHighOrderSmoother *displ3D = 0; if(CTX.mesh.smooth_internal_edges){ - displ = new std::map<MVertex*,SVector3>; + displ2D = new gmshHighOrderSmoother(2); + displ3D = new gmshHighOrderSmoother(3); } // then create new second order vertices/elements edgeContainer edgeVertices; faceContainer faceVertices; for(GModel::eiter it = m->firstEdge(); it != m->lastEdge(); ++it) - setHighOrder(*it, edgeVertices, linear, nPts,displ); + setHighOrder(*it, edgeVertices, linear, nPts,displ2D,displ3D); for(GModel::fiter it = m->firstFace(); it != m->lastFace(); ++it) - setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts,displ); + setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts,displ2D, displ3D); + + + // now we smooth mesh the internal vertices of the faces + // we do that model face by model face + if (displ2D){ + checkHighOrderTriangles(m); + for(GModel::fiter it = m->firstFace(); it != m->lastFace(); ++it) + displ2D->smooth(*it); + } + + for(GModel::riter it = m->firstRegion(); it != m->lastRegion(); ++it) - setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts,displ); + setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts,displ2D, displ3D); printJacobians(m, "detjIni.pos"); - if(CTX.mesh.smooth_internal_edges){ - FILE *fl = fopen("displ.dat","w"); - std::map<MVertex*,SVector3>::iterator it = displ->begin(); - fprintf(fl,"%d\n",displ->size()); - for ( ; it!=displ->end();++it){ - fprintf(fl,"%6d %22.15E %22.15E %22.15E %22.15E %22.15E %22.15E\n",(it->first)->getNum(),(it->first)->x(),(it->first)->y(),(it->first)->z(), - it->second.x(),it->second.y(),it->second.z()); - } - fclose(fl); - delete displ; + if(displ2D){ + delete displ2D; + delete displ3D; } - if(0 && CTX.mesh.smooth_internal_edges){ + // if(0 && CTX.mesh.smooth_internal_edges){ + if(0){ checkHighOrderTriangles(m); for(GModel::fiter it = m->firstFace(); it != m->lastFace(); ++it){ Msg::Info("Smoothing internal Edges in Surface %d",(*it)->tag()); diff --git a/Mesh/HighOrder.h b/Mesh/HighOrder.h index 02fa83a295029c8028af9d8ba8e328bad7e9b903..98d2d6265308a9780b79b28ad4de6481635f78cb 100644 --- a/Mesh/HighOrder.h +++ b/Mesh/HighOrder.h @@ -11,5 +11,6 @@ void SetOrder1(GModel *m); void SetOrderN(GModel *m, int order, bool linear=true, bool incomplete=false); void checkHighOrderTriangles(GModel *m); +bool reparamOnFace(MVertex *v, GFace *gf, SPoint2 ¶m); #endif diff --git a/Mesh/Makefile b/Mesh/Makefile index 26cc27a68acbe568efdda79846d1d1010b0bea7b..b1a8bcb0de6ace530fe4236d58f334058731142a 100644 --- a/Mesh/Makefile +++ b/Mesh/Makefile @@ -14,12 +14,14 @@ INC = ${DASH}I../Numeric ${DASH}I../Common ${DASH}I../Geo\ ${DASH}I../contrib/Netgen/libsrc/include\ ${DASH}I../contrib/Netgen/libsrc/interface\ ${DASH}I../contrib/ANN/include ${DASH}I../contrib/Metis\ - ${DASH}I../contrib/MathEval + ${DASH}I../contrib/MathEval ${DASH}I../contrib/gmm + CFLAGS = ${OPTIM} ${FLAGS} ${INC} ${SYSINCLUDE} SRC = Generator.cpp \ Field.cpp\ + gmshSmoothHighOrder.cpp \ meshGEdge.cpp \ meshGEdgeExtruded.cpp \ meshGFace.cpp \ @@ -86,16 +88,52 @@ Generator.o: Generator.cpp ../Common/Message.h ../Numeric/Numeric.h \ ../Geo/SBoundingBox3d.h ../Geo/MElement.h ../Common/GmshDefines.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h meshGEdge.h \ - meshGFace.h meshGFaceBDS.h meshGRegion.h BackgroundMesh.h \ - BoundaryLayers.h HighOrder.h ../Post/PView.h ../Post/PViewData.h -Field.o: Field.cpp ../Common/Context.h ../Geo/CGNSOptions.h \ - ../Mesh/PartitionOptions.h Field.h ../Post/PView.h ../Geo/SPoint3.h \ - ../Geo/GeoInterpolation.h ../Geo/Geo.h ../Common/GmshDefines.h \ - ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h \ - ../Geo/SPoint3.h ../Geo/SVector3.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h ../Common/ListUtils.h \ + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h meshGEdge.h meshGFace.h meshGFaceBDS.h \ + meshGRegion.h BackgroundMesh.h BoundaryLayers.h HighOrder.h \ + ../Post/PView.h ../Post/PViewData.h +Field.o: Field.cpp ../contrib/MathEval/matheval.h \ + ../contrib/ANN/include/ANN/ANN.h ../Common/Context.h \ + ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h Field.h ../Post/PView.h \ + ../Geo/SPoint3.h ../Geo/GeoInterpolation.h ../Geo/Geo.h \ + ../Common/GmshDefines.h ../Geo/gmshSurface.h ../Geo/Pair.h \ + ../Geo/Range.h ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \ + ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ + ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/ListUtils.h \ ../Common/TreeUtils.h ../Common/avl.h ../Common/ListUtils.h \ ../Geo/SPoint2.h ../Geo/ExtrudeParams.h ../Common/SmoothData.h \ ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \ @@ -107,7 +145,94 @@ Field.o: Field.cpp ../Common/Context.h ../Geo/CGNSOptions.h \ ../Geo/GEntity.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ ../Common/Message.h ../Post/OctreePost.h ../Common/Octree.h \ ../Common/OctreeInternals.h ../Post/PViewDataList.h ../Post/PViewData.h \ - ../Geo/MVertex.h ../Geo/SPoint3.h + ../Geo/MVertex.h ../Geo/SPoint3.h /sw/include/gsl/gsl_math.h \ + /sw/include/gsl/gsl_sys.h /sw/include/gsl/gsl_machine.h \ + /sw/include/gsl/gsl_precision.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_nan.h /sw/include/gsl/gsl_pow_int.h \ + /sw/include/gsl/gsl_eigen.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_complex.h \ + /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h +gmshSmoothHighOrder.o: gmshSmoothHighOrder.cpp gmshSmoothHighOrder.h \ + ../Geo/SVector3.h ../Geo/SPoint3.h ../Numeric/gmshAssembler.h \ + ../Numeric/gmshLinearSystem.h ../Numeric/gmshLaplace.h \ + ../Numeric/gmshTermOfFormulation.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Gmsh.h ../Geo/GModel.h \ + ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ + ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ + ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \ + ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h \ + ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ + ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Geo/GRegion.h \ + ../Geo/GEntity.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ + ../Geo/MElement.h ../Common/GmshDefines.h ../Geo/MVertex.h \ + ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ + ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Message.h \ + ../Numeric/FunctionSpace.h ../Numeric/gmshElasticity.h \ + ../Numeric/gmshTermOfFormulation.h ../Numeric/gmshGmmLinearSystem.h \ + ../Numeric/gmshLinearSystem.h meshGEdge.o: meshGEdge.cpp ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -120,9 +245,44 @@ meshGEdge.o: meshGEdge.cpp ../Geo/GModel.h ../Geo/GVertex.h \ ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/SPoint3.h \ ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h \ ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Message.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h BackgroundMesh.h \ - ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \ - ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h BackgroundMesh.h ../Numeric/Numeric.h \ + ../Numeric/NumericEmbedded.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Mesh/PartitionOptions.h meshGEdgeExtruded.o: meshGEdgeExtruded.cpp ../Geo/GModel.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -135,25 +295,94 @@ meshGEdgeExtruded.o: meshGEdgeExtruded.cpp ../Geo/GModel.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Geo/ExtrudeParams.h \ + ../Common/SmoothData.h meshGFace.o: meshGFace.cpp meshGFace.h meshGFaceBDS.h \ meshGFaceDelaunayInsertion.h ../Geo/MElement.h ../Common/GmshDefines.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/MFace.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Common/Message.h ../Numeric/FunctionSpace.h \ - ../Common/GmshMatrix.h meshGFaceQuadrilateralize.h meshGFaceOptimize.h \ - DivideAndConquer.h BackgroundMesh.h ../Geo/GVertex.h ../Geo/GEntity.h \ - ../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \ - ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \ - ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h \ - ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/Pair.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEdge.h \ - ../Geo/GFace.h ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Common/Context.h ../Geo/CGNSOptions.h \ - ../Mesh/PartitionOptions.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h BDS.h ../Post/PView.h qualityMeasures.h \ - Field.h ../Common/OS.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h meshGFaceQuadrilateralize.h \ + meshGFaceOptimize.h DivideAndConquer.h BackgroundMesh.h \ + ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ + ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ + ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \ + ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h \ + ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ + ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Geo/GModel.h \ + ../Geo/GVertex.h ../Geo/GEdge.h ../Geo/GFace.h ../Geo/GRegion.h \ + ../Geo/GEntity.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ + ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h \ + ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h BDS.h ../Post/PView.h \ + qualityMeasures.h Field.h ../Common/OS.h HighOrder.h meshGFaceTransfinite.o: meshGFaceTransfinite.cpp meshGFace.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -165,7 +394,41 @@ meshGFaceTransfinite.o: meshGFaceTransfinite.cpp meshGFace.h \ ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/MEdge.h \ ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Common/Message.h ../Numeric/FunctionSpace.h \ - ../Common/GmshMatrix.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ ../Mesh/PartitionOptions.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h meshGFaceExtruded.o: meshGFaceExtruded.cpp ../Geo/GModel.h \ @@ -180,25 +443,95 @@ meshGFaceExtruded.o: meshGFaceExtruded.cpp ../Geo/GModel.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Common/Context.h \ - ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Geo/ExtrudeParams.h \ + ../Common/SmoothData.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Mesh/PartitionOptions.h meshGFaceBDS.o: meshGFaceBDS.cpp meshGFace.h meshGFaceOptimize.h \ ../Geo/MElement.h ../Common/GmshDefines.h ../Geo/MVertex.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - meshGFaceDelaunayInsertion.h BackgroundMesh.h ../Geo/GVertex.h \ - ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ - ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \ - ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h \ - ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Common/Context.h \ - ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h ../Geo/GModel.h \ - ../Geo/GVertex.h ../Geo/GEdge.h ../Geo/GFace.h ../Geo/GRegion.h \ - ../Geo/GEntity.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ - ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h BDS.h ../Post/PView.h \ - qualityMeasures.h Field.h ../Common/OS.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h meshGFaceDelaunayInsertion.h \ + BackgroundMesh.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \ + ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ + ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h \ + ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \ + ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \ + ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ + ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h \ + ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEdge.h ../Geo/GFace.h \ + ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SPoint3.h \ + ../Geo/SBoundingBox3d.h ../Numeric/Numeric.h \ + ../Numeric/NumericEmbedded.h BDS.h ../Post/PView.h qualityMeasures.h \ + Field.h ../Common/OS.h meshGFaceDelaunayInsertion.o: meshGFaceDelaunayInsertion.cpp BDS.h \ ../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -210,7 +543,41 @@ meshGFaceDelaunayInsertion.o: meshGFaceDelaunayInsertion.cpp BDS.h \ ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/SPoint3.h \ ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h \ ../Geo/MVertex.h ../Geo/SVector3.h ../Numeric/FunctionSpace.h \ - ../Common/GmshMatrix.h meshGFaceOptimize.h meshGFace.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h meshGFaceOptimize.h meshGFace.h \ ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \ ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h meshGFaceOptimize.o: meshGFaceOptimize.cpp meshGFaceOptimize.h \ @@ -218,32 +585,136 @@ meshGFaceOptimize.o: meshGFaceOptimize.cpp meshGFaceOptimize.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - meshGFaceDelaunayInsertion.h qualityMeasures.h ../Geo/GFace.h \ - ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ - ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \ - ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/Pair.h BackgroundMesh.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h meshGFaceDelaunayInsertion.h \ + qualityMeasures.h ../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h \ + ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ + ../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/GEntity.h \ + ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/SPoint2.h \ + ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/SPoint2.h \ + ../Geo/SVector3.h ../Geo/Pair.h BackgroundMesh.h meshGFaceQuadrilateralize.o: meshGFaceQuadrilateralize.cpp \ meshGFaceQuadrilateralize.h ../Common/Message.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h meshGFaceDelaunayInsertion.h \ ../Geo/MElement.h ../Common/GmshDefines.h ../Geo/MVertex.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h meshGFaceOptimize.h \ - meshGFaceBDS.h BDS.h ../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/GEntity.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/Pair.h ../Post/PView.h + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h meshGFaceOptimize.h meshGFaceBDS.h BDS.h \ + ../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ + ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ + ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \ + ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/SVector3.h \ + ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/SPoint2.h ../Geo/SVector3.h \ + ../Geo/Pair.h ../Post/PView.h meshGRegion.o: meshGRegion.cpp meshGRegion.h \ meshGRegionDelaunayInsertion.h ../Geo/MElement.h \ ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/SPoint3.h \ ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \ ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Message.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h ../Numeric/Numeric.h \ + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h BackgroundMesh.h qualityMeasures.h \ ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \ ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ @@ -258,14 +729,51 @@ meshGRegion.o: meshGRegion.cpp meshGRegion.h \ ../Common/ListUtils.h ../Common/TreeUtils.h ../Common/avl.h \ ../Common/ListUtils.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h \ ../Common/SmoothData.h ../Geo/GRegion.h BDS.h ../Post/PView.h \ - ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h + ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h \ + ../contrib/Tetgen/tetgen.h ../contrib/Netgen/libsrc/interface/nglib.h \ + ../contrib/Netgen/nglib_addon.h meshGRegionDelaunayInsertion.o: meshGRegionDelaunayInsertion.cpp \ ../Common/OS.h BackgroundMesh.h meshGRegion.h meshGRegionLocalMeshMod.h \ meshGRegionDelaunayInsertion.h ../Geo/MElement.h \ ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/SPoint3.h \ ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \ ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Message.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h ../Numeric/Numeric.h \ + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h qualityMeasures.h ../Geo/GModel.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -285,7 +793,41 @@ meshGRegionTransfinite.o: meshGRegionTransfinite.cpp meshGFace.h \ ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/MEdge.h \ ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Common/Message.h ../Numeric/FunctionSpace.h \ - ../Common/GmshMatrix.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ ../Mesh/PartitionOptions.h meshGRegionExtruded.o: meshGRegionExtruded.cpp ../Geo/GModel.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ @@ -299,8 +841,43 @@ meshGRegionExtruded.o: meshGRegionExtruded.cpp ../Geo/GModel.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h meshGFace.h meshGRegion.h \ - ../Common/Context.h ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Geo/ExtrudeParams.h \ + ../Common/SmoothData.h meshGFace.h meshGRegion.h ../Common/Context.h \ + ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h meshGRegionCarveHole.o: meshGRegionCarveHole.cpp ../Geo/GModel.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -312,15 +889,85 @@ meshGRegionCarveHole.o: meshGRegionCarveHole.cpp ../Geo/GModel.h \ ../Geo/SBoundingBox3d.h ../Geo/MElement.h ../Common/GmshDefines.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h + ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../contrib/ANN/include/ANN/ANN.h meshGRegionLocalMeshMod.o: meshGRegionLocalMeshMod.cpp \ meshGRegionLocalMeshMod.h meshGRegionDelaunayInsertion.h \ ../Geo/MElement.h ../Common/GmshDefines.h ../Geo/MVertex.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h BackgroundMesh.h \ - qualityMeasures.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/Numeric.h \ + ../Numeric/NumericEmbedded.h BackgroundMesh.h qualityMeasures.h \ + ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GRegion.h \ ../Geo/GEntity.h DivideAndConquer.o: DivideAndConquer.cpp ../Common/Message.h \ @@ -349,7 +996,42 @@ qualityMeasures.o: qualityMeasures.cpp qualityMeasures.h BDS.h \ ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/MEdge.h \ ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/Numeric.h \ + ../Numeric/NumericEmbedded.h BoundaryLayers.o: BoundaryLayers.cpp ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -362,8 +1044,42 @@ BoundaryLayers.o: BoundaryLayers.cpp ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Common/Message.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - BoundaryLayers.h ../Geo/ExtrudeParams.h ../Common/SmoothData.h \ - meshGEdge.h meshGFace.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h BoundaryLayers.h ../Geo/ExtrudeParams.h \ + ../Common/SmoothData.h meshGEdge.h meshGFace.h BDS.o: BDS.cpp ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h BDS.h \ ../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -374,7 +1090,42 @@ BDS.o: BDS.cpp ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h BDS.h \ meshGFaceDelaunayInsertion.h ../Geo/MElement.h ../Common/GmshDefines.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h qualityMeasures.h + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h qualityMeasures.h HighOrder.o: HighOrder.cpp HighOrder.h ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -388,9 +1139,49 @@ HighOrder.o: HighOrder.cpp HighOrder.h ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h \ ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Message.h \ ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ - meshGFaceDelaunayInsertion.h ../Common/OS.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h ../Common/Context.h ../Geo/CGNSOptions.h \ - ../Mesh/PartitionOptions.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h meshGFaceDelaunayInsertion.h ../Common/OS.h \ + ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \ + ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h ../Geo/GFaceCompound.h \ + ../Geo/Geo.h ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h \ + ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \ + ../Geo/SBoundingBox3d.h ../Common/ListUtils.h ../Common/TreeUtils.h \ + ../Common/avl.h ../Common/ListUtils.h ../Geo/SPoint2.h \ + ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ + ../Geo/GFace.h ../Geo/GEdge.h Partition.o: Partition.cpp ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -403,4 +1194,39 @@ Partition.o: Partition.cpp ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/MElement.h ../Common/GmshDefines.h ../Geo/MVertex.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Message.h \ - ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h PartitionOptions.h + ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h PartitionOptions.h diff --git a/Mesh/gmshSmoothHighOrder.cpp b/Mesh/gmshSmoothHighOrder.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e57c8841f6fc3615342b47b18a920989c5bd7f35 --- /dev/null +++ b/Mesh/gmshSmoothHighOrder.cpp @@ -0,0 +1,103 @@ +#include "gmshSmoothHighOrder.h" + +#include "gmshAssembler.h" +#include "gmshLaplace.h" +#include "gmshElasticity.h" +#include "gmshGmmLinearSystem.h" +#include "GFace.h" +#include "GRegion.h" + +void gmshHighOrderSmoother::smooth ( GFace *gf) { + std::vector<MElement*> v; + + v.insert(v.begin(), gf->triangles.begin(),gf->triangles.end()); + v.insert(v.begin(), gf->quadrangles.begin(),gf->quadrangles.end()); + Msg::Info("Smoothing high order mesh face %d (%d elements)", gf->tag(), + v.size()); + smooth(v); +} +void gmshHighOrderSmoother::smooth ( GRegion *gr) { + std::vector<MElement*> v; + v.insert(v.begin(), gr->tetrahedra.begin(),gr->tetrahedra.end()); + v.insert(v.begin(), gr->hexahedra.begin(),gr->hexahedra.end()); + v.insert(v.begin(), gr->prisms.begin(),gr->prisms.end()); + smooth(v); +} + +void gmshHighOrderSmoother::smooth ( std::vector<MElement*> & v) { + + gmshLinearSystemGmm *lsys = new gmshLinearSystemGmm; + gmshAssembler myAssembler(lsys); + gmshElasticityTerm El(0,1.0,.333,getTag()); + + std::map<MVertex*,SVector3>::iterator it; + std::map<MVertex*,SVector3> verticesToMove; + + // printf("%d vertices \n", _displ.size()); + + for (int i=0;i<v.size() ; i++){ + for (int j=0;j<v[i]->getNumVertices(); j++){ + MVertex *vert = v[i]->getVertex(j); + // printf("%d %d %d v\n",i,j,v[i]->getNumVertices()); + it = _displ.find(vert); + if (it != _displ.end()){ + myAssembler.fixVertex ( vert , 0 , getTag() , vert->x()-it->second.x()); + myAssembler.fixVertex ( vert , 1 , getTag() , vert->y()-it->second.y()); + myAssembler.fixVertex ( vert , 2 , getTag() , vert->z()-it->second.z()); + // printf("%g %g vs %g %g\n", it->second.x(), it->second.y(),vert->x(),vert->y()); + verticesToMove[vert] = it->second; + } + // ensure we do not touch any vertex that is on the boundary + else if (vert->onWhat()->dim() < _dim){ + myAssembler.fixVertex ( vert , 0 , getTag() , 0); + myAssembler.fixVertex ( vert , 1 , getTag() , 0); + myAssembler.fixVertex ( vert , 2 , getTag() , 0); + } + } + } + + + + // move back high order nodes to their straight sided + // location + for (it = verticesToMove.begin() ; it != verticesToMove.end() ; ++it){ + it->first->x() = it->second.x(); + it->first->y() = it->second.y(); + it->first->z() = it->second.z(); + } + + // number the other DOFs + for (int i=0;i<v.size() ; i++){ + for (int j=0;j<v[i]->getNumVertices(); j++){ + MVertex *vert = v[i]->getVertex(j); + myAssembler.numberVertex ( vert , 0 , getTag() ); + myAssembler.numberVertex ( vert , 1 , getTag() ); + myAssembler.numberVertex ( vert , 2 , getTag() ); + // gather all vertices that are supposed to move + verticesToMove[vert] = SVector3(0.0,0.0,0.0); + } + } + + Msg::Info("%d vertices FIXED %d NUMBERED", myAssembler.sizeOfF() + , myAssembler.sizeOfR()); + + // assembly of the elasticity term on the + // set of elements + El.addToMatrix(myAssembler,v); + + // solve the system + lsys->systemSolve(); + + // move the nodes that were involved in the process + // to their new lcation + for (it = verticesToMove.begin() ; it != verticesToMove.end() ; ++it){ + it->first->x() = it->first->x() + myAssembler.getDofValue (it->first, 0 ,getTag()); + it->first->y() = it->first->y() + myAssembler.getDofValue (it->first, 1 ,getTag()); + it->first->z() = it->first->z() + myAssembler.getDofValue (it->first, 2 ,getTag()); + // printf("%g %g\n", myAssembler.getDofValue (it->first, 0 ,getTag()), myAssembler.getDofValue (it->first, 1 ,getTag())); + } + + // delete matrices and vectors + delete lsys; + +} diff --git a/Mesh/gmshSmoothHighOrder.h b/Mesh/gmshSmoothHighOrder.h new file mode 100644 index 0000000000000000000000000000000000000000..49be8007d9125285917552a7784e4cfdd2c39dd7 --- /dev/null +++ b/Mesh/gmshSmoothHighOrder.h @@ -0,0 +1,32 @@ +// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle +// +// See the LICENSE.txt file for license information. Please report all +// bugs and problems to <gmsh@geuz.org>. + +#ifndef _GMSH_SMOOTH_HIGHORDER_H_ +#define _GMSH_SMOOTH_HIGHORDER_H_ + +#include <map> +#include <vector> +#include "SVector3.h" +class MVertex; +class MElement; +class GFace; +class GRegion; + +class gmshHighOrderSmoother +{ + const int _tag; + std::map<MVertex*,SVector3> _displ; + int _dim; + void _clean () {_displ.clear();} +public: + gmshHighOrderSmoother (int dim) : _tag(111), _dim(dim) {_clean();} + void add ( MVertex * v, const SVector3 &d ) {_displ[v] = d;} + void smooth ( std::vector<MElement*> & ); + void smooth ( GFace* ); + void smooth ( GRegion* ); + int getTag() const {return _tag;} +}; + +#endif diff --git a/Mesh/meshGFace.cpp b/Mesh/meshGFace.cpp index 03bf5c2761550e2c4548abb2cbcea80b0a7a5a37..727c34af49042f4107d43159d5c08d134129e43c 100644 --- a/Mesh/meshGFace.cpp +++ b/Mesh/meshGFace.cpp @@ -25,6 +25,7 @@ #include "qualityMeasures.h" #include "Field.h" #include "OS.h" +#include "HighOrder.h" extern Context_T CTX; @@ -337,12 +338,17 @@ static bool gmsh2DMeshGenerator(GFace *gf, int RECUR_ITER, bool debug = true) while(it != edges.end()){ if ((*it)->isSeam(gf)) return false; if(!(*it)->isMeshDegenerated()){ - all_vertices.insert((*it)->mesh_vertices.begin(), - (*it)->mesh_vertices.end()); - all_vertices.insert((*it)->getBeginVertex()->mesh_vertices.begin(), - (*it)->getBeginVertex()->mesh_vertices.end()); - all_vertices.insert((*it)->getEndVertex()->mesh_vertices.begin(), - (*it)->getEndVertex()->mesh_vertices.end()); + + for (int i=0 ; i< (*it)->lines.size();i++){ + all_vertices.insert((*it)->lines[i]->getVertex(0)); + all_vertices.insert((*it)->lines[i]->getVertex(1)); + } + // all_vertices.insert((*it)->mesh_vertices.begin(), + // (*it)->mesh_vertices.end()); + // all_vertices.insert((*it)->getBeginVertex()->mesh_vertices.begin(), + // (*it)->getBeginVertex()->mesh_vertices.end()); + // all_vertices.insert((*it)->getEndVertex()->mesh_vertices.begin(), + // (*it)->getEndVertex()->mesh_vertices.end()); } ++it; } @@ -384,28 +390,7 @@ static bool gmsh2DMeshGenerator(GFace *gf, int RECUR_ITER, bool debug = true) SBoundingBox3d bbox; while(itv != all_vertices.end()){ MVertex *here = *itv; - SPoint2 param; - if(here->onWhat()->geomType() == GEntity::DiscreteCurve || - here->onWhat()->geomType() == GEntity::BoundaryLayerCurve){ - param = gf->parFromPoint(SPoint3(here->x(), here->y(), here->z())); - } - else if(here->onWhat()->dim() == 0){ - GVertex *gv = (GVertex*)here->onWhat(); - param = gv->reparamOnFace(gf,1); - } - else if(here->onWhat()->dim() == 1){ - GEdge *ge = (GEdge*)here->onWhat(); - double UU; - here->getParameter(0, UU); - param = ge->reparamOnFace(gf, UU, 1); - } - else{ - double UU, VV; - if(here->onWhat() == gf && here->getParameter(0, UU) && here->getParameter(1, VV)) - param = SPoint2(UU, VV); - else - param = gf->parFromPoint(SPoint3(here->x(), here->y(), here->z())); - } + SPoint2 param ; reparamOnFace (here,gf,param);; U_[count] = param.x(); V_[count] = param.y(); (*itv)->setIndex(count); @@ -427,6 +412,7 @@ static bool gmsh2DMeshGenerator(GFace *gf, int RECUR_ITER, bool debug = true) m->scalingU = 1; m->scalingV = 1; + // Use a divide & conquer type algorithm to create a triangulation. // We add to the triangulation a box with 4 points that encloses the // domain. @@ -1332,9 +1318,9 @@ void meshGFace::operator() (GFace *gf) // compute loops on the fly (indices indicate start and end points // of a loop; loops are not yet oriented) Msg::Debug("Computing edge loops"); - std::vector<MVertex*> points; - std::vector<int> indices; - computeEdgeLoops(gf, points, indices); + // std::vector<MVertex*> points; + // std::vector<int> indices; + // computeEdgeLoops(gf, points, indices); Msg::Debug("Generating the mesh"); if(noseam(gf) || gf->getNativeType() == GEntity::GmshModel || gf->edgeLoops.empty()){ diff --git a/Mesh/meshGFaceBDS.cpp b/Mesh/meshGFaceBDS.cpp index f267f904fa05546377033ffe938c7a9e57a408d8..0fee960641274709257f211d76ff41ef955f0d4a 100644 --- a/Mesh/meshGFaceBDS.cpp +++ b/Mesh/meshGFaceBDS.cpp @@ -260,6 +260,17 @@ bool edgeSwapTestDelaunay(BDS_Edge *e,GFace *gf) return result > 0.; } + +bool edgeSwapTestHighOrder(BDS_Edge *e,GFace *gf) +{ + // must evaluate the swap with the perspectve of + // the generation of 2 high order elements + // The rationale is to consider the edges as + // exactly matching curves and surfaces +} + + + bool edgeSwapTestDelaunayAniso(BDS_Edge *e, GFace *gf, std::set<swapquad> &configs) { BDS_Point *op[2]; diff --git a/Mesh/meshGFaceOptimize.cpp b/Mesh/meshGFaceOptimize.cpp index 240502049fe8b0ced0d33bd9a42afd93cba9a3ba..f899bc5302835cc0a0264cfddf7d889ca7ce2bd6 100644 --- a/Mesh/meshGFaceOptimize.cpp +++ b/Mesh/meshGFaceOptimize.cpp @@ -768,3 +768,5 @@ int edgeCollapsePass(double minLC, GFace *gf, std::set<MTri3*,compareTri3Ptr> &a printf("A %d %d tris\n", (int)allTris.size(), (int)newTris.size()); return nbCollapse; } + + diff --git a/Mesh/qualityMeasures.cpp b/Mesh/qualityMeasures.cpp index 157bdd3cbac18ba4d83129e3af2cd3cb07b0dd80..e5c4b18278f92bc1ffe37d8103d263f6d1620e78 100644 --- a/Mesh/qualityMeasures.cpp +++ b/Mesh/qualityMeasures.cpp @@ -174,7 +174,7 @@ double qmTet(const double &x1, const double &y1, const double &z1, } -static double mesh_functional_distorsion(MTriangle *t, double u, double v) +double mesh_functional_distorsion(MTriangle *t, double u, double v) { // compute uncurved element jacobian d_u x and d_v x double mat[3][3]; @@ -210,7 +210,7 @@ static double mesh_functional_distorsion(MTriangle *t, double u, double v) double qmDistorsionOfMapping (MTriangle *e) { - return 1.0; + // return 1.0; if (e->getPolynomialOrder() == 1)return 1.0; IntPt *pts; int npts; @@ -223,10 +223,11 @@ double qmDistorsionOfMapping (MTriangle *e) const double di = mesh_functional_distorsion (e,u,v); dmin = (i==0)? di : std::min(dmin,di); } - double p[3][2] = {{0,0},{0,1},{1,0}}; - for (int i=0;i<3;i++){ - const double u = p[i][0]; - const double v = p[i][1]; + const Double_Matrix& points = e->getFunctionSpace()->points; + + for (int i=0;i<e->getNumPrimaryVertices();i++) { + const double u = points(i,0); + const double v = points(i,1); const double di = mesh_functional_distorsion (e,u,v); dmin = std::min(dmin,di); } diff --git a/Numeric/Makefile b/Numeric/Makefile index 9595affa9ca3d3879c45e3f7cad13d93173e5e9f..07cb1956639063924cf6d2f4b842c64ff69bfdcc 100644 --- a/Numeric/Makefile +++ b/Numeric/Makefile @@ -7,12 +7,16 @@ include ../variables LIB = ../lib/libGmshNumeric${LIBEXT} -INC = ${DASH}I../Common ${DASH}I../Numeric ${DASH}I../contrib/NR +INC = ${DASH}I../Common ${DASH}I../Numeric ${DASH}I../contrib/NR ${DASH}I../Geo CFLAGS = ${OPTIM} ${FLAGS} ${INC} ${SYSINCLUDE} SRC = Numeric.cpp\ - NumericEmbedded.cpp\ + NumericEmbedded.cpp\ + gmshAssembler.cpp\ + gmshTermOfFormulation.cpp\ + gmshLaplace.cpp\ + gmshElasticity.cpp\ EigSolve.cpp\ FunctionSpace.cpp\ gmsh_predicates.cpp\ @@ -46,14 +50,255 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -Numeric.o: Numeric.cpp ../Common/Message.h Numeric.h NumericEmbedded.h +Numeric.o: Numeric.cpp ../Common/Message.h Numeric.h NumericEmbedded.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h NumericEmbedded.o: NumericEmbedded.cpp NumericEmbedded.h \ ../Common/Message.h +gmshAssembler.o: gmshAssembler.cpp gmshAssembler.h gmshLinearSystem.h +gmshTermOfFormulation.o: gmshTermOfFormulation.cpp \ + gmshTermOfFormulation.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h gmshFunction.h ../Common/Gmsh.h \ + ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \ + ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ + ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h \ + ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h \ + ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h \ + ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h \ + ../Geo/Pair.h ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SPoint3.h \ + ../Geo/SBoundingBox3d.h ../Geo/MElement.h ../Common/GmshDefines.h \ + ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ + ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ + ../Common/Message.h ../Numeric/FunctionSpace.h gmshLinearSystem.h \ + gmshAssembler.h +gmshLaplace.o: gmshLaplace.cpp gmshLaplace.h gmshTermOfFormulation.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Gmsh.h ../Geo/GModel.h \ + ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ + ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ + ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \ + ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \ + ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \ + ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ + ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SPoint3.h \ + ../Geo/SBoundingBox3d.h ../Geo/MElement.h ../Common/GmshDefines.h \ + ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h \ + ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ + ../Common/Message.h ../Numeric/FunctionSpace.h EigSolve.o: EigSolve.cpp FunctionSpace.o: FunctionSpace.cpp FunctionSpace.h ../Common/GmshMatrix.h \ - ../Common/GmshDefines.h ../Common/Message.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/GmshDefines.h ../Common/Message.h gmsh_predicates.o: gmsh_predicates.cpp -gsl_newt.o: gsl_newt.cpp ../Common/Message.h Numeric.h NumericEmbedded.h -gsl_min.o: gsl_min.cpp ../Common/Message.h Numeric.h NumericEmbedded.h +gsl_newt.o: gsl_newt.cpp ../Common/Message.h Numeric.h NumericEmbedded.h \ + /sw/include/gsl/gsl_math.h /sw/include/gsl/gsl_sys.h \ + /sw/include/gsl/gsl_machine.h /sw/include/gsl/gsl_precision.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_nan.h \ + /sw/include/gsl/gsl_pow_int.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_multiroots.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h +gsl_min.o: gsl_min.cpp ../Common/Message.h Numeric.h NumericEmbedded.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_math.h /sw/include/gsl/gsl_sys.h \ + /sw/include/gsl/gsl_machine.h /sw/include/gsl/gsl_precision.h \ + /sw/include/gsl/gsl_nan.h /sw/include/gsl/gsl_pow_int.h \ + /sw/include/gsl/gsl_multimin.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_min.h gsl_brent.o: gsl_brent.cpp ../Common/Message.h Numeric.h \ - NumericEmbedded.h + NumericEmbedded.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_math.h \ + /sw/include/gsl/gsl_sys.h /sw/include/gsl/gsl_machine.h \ + /sw/include/gsl/gsl_precision.h /sw/include/gsl/gsl_nan.h \ + /sw/include/gsl/gsl_pow_int.h /sw/include/gsl/gsl_min.h diff --git a/Numeric/gmshAssembler.cpp b/Numeric/gmshAssembler.cpp new file mode 100644 index 0000000000000000000000000000000000000000..a00d99505d05b9785928122f4f203321221fb15d --- /dev/null +++ b/Numeric/gmshAssembler.cpp @@ -0,0 +1,61 @@ +#include <gmsh/MVertex.h> +#include "gmshAssembler.h" +#include "gmshLinearSystem.h" + +void gmshAssembler::assemble ( MVertex *vR , int iCompR, int iFieldR, + MVertex *vC , int iCompC, int iFieldC, + double val){ + if (!lsys->isAllocated()){ + lsys->allocate(numbering.size()); + } + + std::map<gmshDofKey, int> :: iterator itR = numbering.find(gmshDofKey(vR,iCompR,iFieldR)); + if (itR != numbering.end()){ + std::map<gmshDofKey, int> :: iterator itC = numbering.find(gmshDofKey(vC,iCompC,iFieldC)); + if (itC != numbering.end()){ + lsys->addToMatrix ( itR->second, itC->second, val ); + } + else { + std::map<gmshDofKey, double> :: iterator itF = fixed.find(gmshDofKey(vC,iCompC,iFieldC)); + if (itF != fixed.end()){ + lsys->addToRightHandSide ( itR->second, -val*itF->second ); + } + else{ + std::map<gmshDofKey, std::vector<std::pair<gmshDofKey,double> > > :: iterator itConstrC = + constraints.find(gmshDofKey(vC,iCompC,iFieldC)); + if (itConstrC != constraints.end()){ + for (int i=0;i<itConstrC->second.size();i++){ + gmshDofKey &dofKeyConstrC = itConstrC->second[i].first; + double valConstrC = itConstrC->second[i].second; + assemble ( vR , iCompR, iFieldR, + dofKeyConstrC.v,dofKeyConstrC.comp , dofKeyConstrC.field, + val*valConstrC); + } + } + } + } + } + else{ + std::map<gmshDofKey, std::vector<std::pair<gmshDofKey,double> > > :: iterator itConstrR = + constraints.find(gmshDofKey(vR,iCompR,iFieldR)); + if (itConstrR != constraints.end()){ + for (int i=0;i<itConstrR->second.size();i++){ + gmshDofKey &dofKeyConstrR = itConstrR->second[i].first; + double valConstrR = itConstrR->second[i].second; + assemble ( dofKeyConstrR.v,dofKeyConstrR.comp , dofKeyConstrR.field, + vC , iCompC, iFieldC, + val*valConstrR); + } + } + } +} + +void gmshAssembler::assemble ( MVertex *vR , int iCompR, int iFieldR, + double val ){ + if (!lsys->isAllocated())lsys->allocate(numbering.size()); + std::map<gmshDofKey, int> :: iterator itR = numbering.find(gmshDofKey(vR,iCompR,iFieldR)); + if (itR != numbering.end()){ + lsys->addToRightHandSide ( itR->second, val); + } +} + diff --git a/Numeric/gmshAssembler.h b/Numeric/gmshAssembler.h new file mode 100644 index 0000000000000000000000000000000000000000..62ee4565599c0be69202cc4c5b44e4f46dcddb98 --- /dev/null +++ b/Numeric/gmshAssembler.h @@ -0,0 +1,112 @@ +#ifndef _GMSH_ASSEMBLER_H_ +#define _GMSH_ASSEMBLER_H_ + +#include <map> +#include <vector> + +class MVertex; +class MElement; +class gmshLinearSystem; + +#include "gmshLinearSystem.h" + +struct gmshDofKey{ + MVertex *v; + int comp; + int field; + gmshDofKey (MVertex *V, int iComp , int iField) : v(V),comp(iComp),field(iField) + {} + bool operator < (const gmshDofKey& d) const{ + if (v < d.v) return true; + if (v > d.v) return false; + if (comp < d.comp) return true; + if (comp > d.comp) return false; + if (field < d.field) return true; + return false; + } +}; + +class gmshAssembler { + std::map<gmshDofKey, int> numbering; + std::map<gmshDofKey, double> fixed; + std::map<gmshDofKey, std::vector<std::pair<gmshDofKey,double> > > constraints; + gmshLinearSystem *lsys; +public: + gmshAssembler (gmshLinearSystem *l) : lsys(l){} + inline void constraintVertex (MVertex*v, int iComp, int iField, + std::vector<MVertex *>&verts, + std::vector<double> &coeffs ){ + std::vector<std::pair<gmshDofKey,double> > constraint; + gmshDofKey key (v,iComp,iField); + for (int i=0;i<verts.size();i++){ + gmshDofKey key2 (verts[i],iComp,iField); + constraint.push_back(std::make_pair(key2,coeffs[i])); + } + constraints[key] = constraint; + } + inline void numberVertex (MVertex*v, int iComp, int iField){ + gmshDofKey key (v,iComp,iField); + if (fixed.find(key) != fixed.end())return; + if (constraints.find(key) != constraints.end())return; + std::map<gmshDofKey, int> :: iterator it = numbering.find(key); + if (it == numbering.end()){ + int size = numbering.size(); + numbering[key] = size; + } + } + + inline void numberVertex (MVertex*v, int iComp, int iField, int iField2){ + gmshDofKey key (v,iComp,iField); + gmshDofKey key2 (v,iComp,iField2); + if (fixed.find(key) != fixed.end())return; + if (fixed.find(key2) != fixed.end())return; + if (constraints.find(key) != constraints.end())return; + std::map<gmshDofKey, int> :: iterator it = numbering.find(key); + if (it == numbering.end()){ + int size = numbering.size(); + numbering[key] = size; + } + } + + inline void fixVertex (MVertex*v, int iComp, int iField, double val){ + fixed[gmshDofKey(v,iComp,iField)] = val; + } + inline double getDofValue (MVertex*v, int iComp, int iField) const{ + gmshDofKey key (v,iComp,iField); + { + std::map<gmshDofKey, double> :: const_iterator it = fixed.find(key); + if (it != fixed.end())return it->second; + } + { + std::map<gmshDofKey, int> :: const_iterator it = numbering.find(key); + if (it != numbering.end()) + return lsys->getFromSolution (it->second); + } + { + std::map<gmshDofKey, std::vector<std::pair<gmshDofKey,double> > > :: const_iterator itConstr = + constraints.find(key); + if (itConstr != constraints.end()){ + double val = 0; + for (int i=0;i<itConstr->second.size();i++){ + const gmshDofKey &dofKeyConstr = itConstr->second[i].first; + double valConstr = itConstr->second[i].second; + val += getDofValue (dofKeyConstr.v,dofKeyConstr.comp , dofKeyConstr.field) + * valConstr; + } + return val; + } + } + return 0.0; + } + void assemble ( MVertex *vR , int iCompR, int iFieldR, + MVertex *vC , int iCompC, int iFieldC, + double val); + void assemble ( MVertex *vR , int iCompR, int iFieldR, + double val); + int sizeOfR () const {return numbering.size();} + int sizeOfF () const {return fixed.size();} +}; + + +#endif + diff --git a/Numeric/gmshElasticity.cpp b/Numeric/gmshElasticity.cpp new file mode 100644 index 0000000000000000000000000000000000000000..0d15d0455927e4fe130f42121426498d39e5a624 --- /dev/null +++ b/Numeric/gmshElasticity.cpp @@ -0,0 +1,70 @@ +#include "gmshElasticity.h" + +extern double inv3x3 (double a[3][3], double a[3][3]); + +void gmshElasticityTerm:: elementMatrix ( MElement *e, Double_Matrix & m) const{ + int nbNodes = e->getNumVertices(); + int integrationOrder = 2*(e->getPolynomialOrder()-1); + int npts; + IntPt *GP; + double jac [3][3]; + double invjac [3][3]; + double Grads[256][3],grads[100][3]; + e->getIntegrationPoints(integrationOrder, &npts, &GP); + + m.set_all(0.0); + + double FACT = _E / (1 + _nu); + double C11 = FACT * (1 - _nu) / (1 - 2 * _nu); + double C12 = FACT * _nu / (1 - 2 * _nu); + double C44 = (C11 - C12) / 2; + const double C[6][6] = + { {C11, C12, C12, 0, 0, 0}, + {C12, C11, C12, 0, 0, 0}, + {C12, C12, C11, 0, 0, 0}, + { 0, 0, 0, C44, 0, 0}, + { 0, 0, 0, 0, C44, 0}, + { 0, 0, 0, 0, 0, C44} }; + + Double_Matrix H(6,6); + Double_Matrix B (6,3*nbNodes); + Double_Matrix BTH (3*nbNodes,6); + Double_Matrix BT (3*nbNodes,6); + for (int i=0;i<6;i++) + for (int j=0;j<6;j++) + H(i,j) = C[i][j]; + + const gmshFunctionSpace* fs = e->getFunctionSpace(); + + for (int i=0;i<npts;i++){ + const double u = GP[i].pt[0]; + const double v = GP[i].pt[1]; + const double w = GP[i].pt[2]; + const double weight = GP[i].weight; + const double detJ = e->getJacobian (u,v,w,jac); + fs->df (u,v,w,grads); + inv3x3 ( jac, invjac) ; + B.set_all(0.0); + BT.set_all(0.0); + for (int j=0;j<nbNodes;j++){ + Grads[j][0] = invjac[0][0] * grads[j][0] + invjac[0][1] * grads[j][1] + invjac[0][2] * grads[j][2]; + Grads[j][1] = invjac[1][0] * grads[j][0] + invjac[1][1] * grads[j][1] + invjac[1][2] * grads[j][2]; + Grads[j][2] = invjac[2][0] * grads[j][0] + invjac[2][1] * grads[j][1] + invjac[2][2] * grads[j][2]; + + BT(j,0) = B(0,j) = Grads[j][0]; + BT(j,3) = B(3,j) = Grads[j][1]; + BT(j,4) = B(4,j) = Grads[j][2]; + + BT(j+nbNodes,1) = B(1,j+nbNodes) = Grads[j][1]; + BT(j+nbNodes,3) = B(3,j+nbNodes) = Grads[j][0]; + BT(j+nbNodes,5) = B(5,j+nbNodes) = Grads[j][2]; + + BT(j+2*nbNodes,2) = B(2,j+2*nbNodes) = Grads[j][2]; + BT(j+2*nbNodes,4) = B(4,j+2*nbNodes) = Grads[j][0]; + BT(j+2*nbNodes,5) = B(5,j+2*nbNodes) = Grads[j][1]; + } + BTH.set_all(0.0); + BTH.blas_dgemm (BT,H); + m.blas_dgemm (BTH,B,weight*detJ,1.0); + } +} diff --git a/Numeric/gmshElasticity.h b/Numeric/gmshElasticity.h new file mode 100644 index 0000000000000000000000000000000000000000..3bb3526559727564ee546d7898effafc90938227 --- /dev/null +++ b/Numeric/gmshElasticity.h @@ -0,0 +1,27 @@ +#ifndef _GMSH_ELASTICITY_H_ +#define _GMSH_ELASTICITY_H_ +#include "gmshTermOfFormulation.h" +#include "Gmsh.h" +#include "GModel.h" +#include "MElement.h" +#include "GmshMatrix.h" + +class gmshElasticityTerm : public gmshNodalFemTerm { + double _E,_nu; + int _iField; +protected: + virtual int sizeOfR (MElement *e) const {return 3*e->getNumVertices();} + virtual int sizeOfC (MElement *e) const {return 3*e->getNumVertices();} + void getLocalDofR (MElement *e, int iRow, MVertex **vR, int *iCompR, int *iFieldR) const { + *iCompR = iRow/e->getNumVertices(); + int ithLocalVertex = iRow%e->getNumVertices(); + *vR = e->getVertex (ithLocalVertex); + *iFieldR = _iField; + } +public: + gmshElasticityTerm (GModel *gm, double E, double nu, int iField = 1) : + gmshNodalFemTerm(gm),_E(E),_nu(nu),_iField(iField){} + void elementMatrix ( MElement *e, Double_Matrix & m) const; +}; + +#endif diff --git a/Numeric/gmshFunction.h b/Numeric/gmshFunction.h new file mode 100644 index 0000000000000000000000000000000000000000..57ad7503597f5ac69c680dd64a345a90ec83949c --- /dev/null +++ b/Numeric/gmshFunction.h @@ -0,0 +1,11 @@ +#ifndef _GMSH_FUNCTION_H_ +#define _GMSH_FUNCTION_H_ +class gmshFunction +{ + double _val; + public : + gmshFunction(double val = 0):_val(val){} + virtual double operator () (double x, double y, double z) const {return _val;} +}; + +#endif diff --git a/Numeric/gmshGmmLinearSystem.h b/Numeric/gmshGmmLinearSystem.h new file mode 100644 index 0000000000000000000000000000000000000000..7e05cc96407c50b35280f11b06c3c423863d366f --- /dev/null +++ b/Numeric/gmshGmmLinearSystem.h @@ -0,0 +1,82 @@ +#ifndef _GMSH_LINEAR_SYSTEM_GMM_H_ +#define _GMSH_LINEAR_SYSTEM_GMM_H_ +/* +Interface to GMM++ +*/ +#include "Message.h" + +#ifdef HAVE_GMM +#include "gmshLinearSystem.h" +#include "gmm.h" + +class gmshLinearSystemGmm : public gmshLinearSystem { + gmm::row_matrix< gmm::wsvector<double> > *_a; + std::vector<double> *_x; + std::vector<double> *_b; +public : + gmshLinearSystemGmm () : _a(0),_b(0),_x(0) { + } + virtual bool isAllocated () const {return _a != 0;} + virtual void allocate (int _nbRows){ + if (_a) delete _a; + if (_x) delete _x; + if (_b) delete _b; + _a = new gmm::row_matrix< gmm::wsvector<double> >(_nbRows,_nbRows); + _b = new std::vector<double>(_nbRows); + _x = new std::vector<double>(_nbRows); + } + virtual ~gmshLinearSystemGmm (){ + delete _a; + delete _b; + delete _x; + } + virtual void addToMatrix (int _row, int _col, double _val) { + if (_val != 0.0) (*_a)(_row, _col) += _val; + } + virtual double getFromMatrix (int _row, int _col) const{ + return (*_a)(_row, _col); + } + virtual void addToRightHandSide (int _row, double _val) { + if (_val != 0.0) (*_b)[_row]+=_val; + } + virtual double getFromRightHandSide (int _row) const { + return (*_b)[_row]; + } + virtual double getFromSolution (int _row) const { + return (*_x)[_row]; + } + virtual void zeroMatrix () { + gmm::clear(*_a); + } + virtual void zeroRightHandSide () { + for (int i=0;i<_b->size();i++)(*_b)[i] = 0; + } + virtual int systemSolve () { + // gmm::ilutp_precond< gmm::row_matrix< gmm::rsvector<double> > > P(*_a, 10,0.); + gmm::ildltt_precond< gmm::row_matrix< gmm::wsvector<double> > > P(*_a, 2, 1.e-10); + gmm::iteration iter(1E-8); // defines an iteration object, with a max residu of 1E-8 + //iter.set_noisy(2); + //gmm::gmres(*_a, *_x, *_b, P, 100, iter); // execute the GMRES algorithm + gmm::cg(*_a, *_x, *_b, P, iter); // execute the CG algorithm + } +}; +#else +class gmshLinearSystemGmm : public gmshLinearSystem { +public : + gmshGmmSystem (){ + Msg::Error("Gmm++ is not available on this version of gmsh"); + } + virtual bool isAllocated () const {} + virtual void allocate (int nbRows) {} + virtual void addToMatrix (int _row, int _col, double val) {} + virtual double getFromMatrix (int _row, int _col) const {} + virtual void addToRightHandSide (int _row, double val) {} + virtual double getFromRightHandSide (int _row) const {} + virtual double getFromSolution (int _row) const {} + virtual void zeroMatrix () {} + virtual void zeroRightHandSide () {} + virtual int systemSolve () {} +}; + +#endif +#endif diff --git a/Numeric/gmshLaplace.cpp b/Numeric/gmshLaplace.cpp new file mode 100644 index 0000000000000000000000000000000000000000..f3e91e5ca35549e26eb15a387414d96aa42b316c --- /dev/null +++ b/Numeric/gmshLaplace.cpp @@ -0,0 +1,44 @@ +#include "gmshLaplace.h" + +extern double inv3x3 (double a[3][3], double a[3][3]); + +void gmshLaplaceTerm:: elementMatrix ( MElement *e, Double_Matrix & m) const{ + int nbNodes = e->getNumVertices(); + int integrationOrder = 2*(e->getPolynomialOrder()-1); + int npts; + IntPt *GP; + double jac [3][3]; + double invjac [3][3]; + double Grads[256][3],grads[256][3]; + e->getIntegrationPoints(integrationOrder, &npts, &GP); + + m.set_all(0.0); + + for (int i=0;i<npts;i++){ + const double u = GP[i].pt[0]; + const double v = GP[i].pt[1]; + const double w = GP[i].pt[2]; + const double weight = GP[i].weight; + const double detJ = e->getJacobian (u,v,w,jac); + inv3x3 ( jac, invjac) ; + e->getGradShapeFunctions (u,v,w,grads); + for (int j=0;j<nbNodes;j++){ + Grads[j][0] = invjac[0][0] * grads[j][0] + invjac[0][1] * grads[j][1] + invjac[0][2] * grads[j][2]; + Grads[j][1] = invjac[1][0] * grads[j][0] + invjac[1][1] * grads[j][1] + invjac[1][2] * grads[j][2]; + Grads[j][2] = invjac[2][0] * grads[j][0] + invjac[2][1] * grads[j][1] + invjac[2][2] * grads[j][2]; + } + for (int j=0;j<nbNodes;j++){ + for (int k=0;k<=j;k++){ + m(j,k) += (Grads[j][0]*Grads[k][0]+ + Grads[j][1]*Grads[k][1]+ + Grads[j][2]*Grads[k][2]) * weight * detJ * _diffusivity*0.5; + } + } + } + + for (int j=0;j<nbNodes;j++) + for (int k=0;k<j;k++) + m(k,j) = m(j,k); + +} + diff --git a/Numeric/gmshLaplace.h b/Numeric/gmshLaplace.h new file mode 100644 index 0000000000000000000000000000000000000000..95f8d48c9b6d6b834a61fcbf372fe4c1266197ca --- /dev/null +++ b/Numeric/gmshLaplace.h @@ -0,0 +1,25 @@ +#ifndef _GMSH_LAPLACE_H_ +#define _GMSH_LAPLACE_H_ +#include "gmshTermOfFormulation.h" +#include "Gmsh.h" +#include "GModel.h" +#include "MElement.h" +#include "GmshMatrix.h" +class gmshLaplaceTerm : public gmshNodalFemTerm { + const double _diffusivity; + const int _iField ; +protected: + virtual int sizeOfR (MElement *e) const {return e->getNumVertices();} + virtual int sizeOfC (MElement *e) const {return e->getNumVertices();} + void getLocalDofR (MElement *e, int iRow, MVertex **vR, int *iCompR, int *iFieldR) const { + *vR = e->getVertex (iRow); + *iCompR = 0; + *iFieldR = _iField; + } +public: + gmshLaplaceTerm (GModel *gm, double diffusivity = 1.0, int iField = 0) : + gmshNodalFemTerm(gm),_diffusivity (diffusivity),_iField(iField){} + void elementMatrix ( MElement *e, Double_Matrix & m) const; + double getDiffusivity () const {return _diffusivity;} +}; +#endif diff --git a/Numeric/gmshLinearSystem.h b/Numeric/gmshLinearSystem.h new file mode 100644 index 0000000000000000000000000000000000000000..17c0c25f9d3c1220d70e01ab9743fc74c766534e --- /dev/null +++ b/Numeric/gmshLinearSystem.h @@ -0,0 +1,25 @@ +#ifndef _GMSH_LINEAR_SYSTEM_H_ +#define _GMSH_LINEAR_SYSTEM_H_ +/* +A clas that encapsulate a linear system +solver interface : building a sparse matrix, +solving a linear system +*/ + +class gmshLinearSystem { +public : + gmshLinearSystem (){} + virtual bool isAllocated () const = 0; + virtual void allocate (int nbRows) = 0; + virtual ~gmshLinearSystem () {} + virtual void addToMatrix (int _row, int _col, double val) = 0; + virtual double getFromMatrix (int _row, int _col) const = 0; + virtual void addToRightHandSide (int _row, double val) = 0; + virtual double getFromRightHandSide (int _row) const = 0; + virtual double getFromSolution (int _row) const = 0; + virtual void zeroMatrix () = 0; + virtual void zeroRightHandSide () = 0; + virtual int systemSolve () = 0; +}; +#endif + diff --git a/Numeric/gmshTermOfFormulation.cpp b/Numeric/gmshTermOfFormulation.cpp new file mode 100644 index 0000000000000000000000000000000000000000..88d21a11a8292163765bdd45753fbd6c81ae19fd --- /dev/null +++ b/Numeric/gmshTermOfFormulation.cpp @@ -0,0 +1,100 @@ +#include "gmshTermOfFormulation.h" +#include "gmshFunction.h" + +#include "Gmsh.h" +#include "GModel.h" +#include "MElement.h" +#include "GmshMatrix.h" + +#include "gmshLinearSystem.h" +#include "gmshAssembler.h" + +gmshNodalFemTerm::~gmshNodalFemTerm () { +} + + +void gmshNodalFemTerm::addDirichlet(int physical, + int dim, + int comp, + int field, + const gmshFunction & e, + gmshAssembler &lsys) { +} + +void gmshNodalFemTerm::addNeumann(int physical, + int dim, + int comp, + int field, + const gmshFunction & fct, + gmshAssembler &lsys) { +} + +void gmshNodalFemTerm::addToMatrix (gmshAssembler &lsys) const { + if (_gm->getNumRegions()){ + for(GModel::riter it = _gm->firstRegion(); it != _gm->lastRegion(); ++it){ + addToMatrix(lsys,*it); + } + } + else if(_gm->getNumFaces()){ + for(GModel::fiter it = _gm->firstFace(); it != _gm->lastFace(); ++it){ + addToMatrix(lsys,*it); + } + } +} + + +void gmshNodalFemTerm::addToMatrix (gmshAssembler &lsys,const std::vector<MElement*> &v) const { + for (int i=0;i<v.size();i++) + addToMatrix (lsys,v[i]); +} + + +void gmshNodalFemTerm::addToMatrix (gmshAssembler &lsys, + Double_Matrix &localMatrix, + MElement *e) const { + const int nbR = sizeOfR(e); + const int nbC = sizeOfC(e); + for (int j=0;j<nbR;j++){ + MVertex *vR;int iCompR,iFieldR; + getLocalDofR (e,j,&vR,&iCompR,&iFieldR); + for (int k=0;k<nbC;k++){ + MVertex *vC;int iCompC,iFieldC; + getLocalDofC (e,k,&vC,&iCompC,&iFieldC); + lsys.assemble(vR,iCompR,iFieldR, + vC,iCompC,iFieldC, + localMatrix (j,k)); + } + } +} + +void gmshNodalFemTerm::addToMatrix (gmshAssembler &lsys, MElement *e) const { + const int nbR = sizeOfR(e); + const int nbC = sizeOfC(e); + Double_Matrix localMatrix (nbR,nbC); + elementMatrix (e,localMatrix); + addToMatrix ( lsys , localMatrix, e ); +} + +void gmshNodalFemTerm::addToMatrix (gmshAssembler &lsys, GEntity *ge) const { + for(unsigned int i = 0; i < ge->getNumMeshElements(); i++){ + MElement *e = ge->getMeshElement (i); + addToMatrix (lsys,e); + } +} + +void gmshNodalFemTerm::addToRightHandSide (gmshAssembler &lsys) const { + if (_gm->getNumRegions()){ + for(GModel::riter it = _gm->firstRegion(); it != _gm->lastRegion(); ++it){ + addToRightHandSide(lsys,*it); + } + } + else if(_gm->getNumFaces()){ + for(GModel::fiter it = _gm->firstFace(); it != _gm->lastFace(); ++it){ + addToRightHandSide(lsys,*it); + } + } +} + +void gmshNodalFemTerm::addToRightHandSide (gmshAssembler &lsys, GEntity *ge) const { + throw; +} diff --git a/Numeric/gmshTermOfFormulation.h b/Numeric/gmshTermOfFormulation.h new file mode 100644 index 0000000000000000000000000000000000000000..d29baf0a0dbc9df595c211d40026b8b8ad2369bd --- /dev/null +++ b/Numeric/gmshTermOfFormulation.h @@ -0,0 +1,60 @@ +#ifndef _GMSH_TERM_OF_FORMULATION_H_ +#define _GMSH_TERM_OF_FORMULATION_H_ + +class GModel; +class GEntity; +class MElement; +class MVertex; +class gmshLinearSystem; +class gmshFunction; + +#include <math.h> +#include <GmshMatrix.h> +#include <map> +#include <vector> + +class gmshAssembler; + +class gmshTermOfFormulation { +protected: + GModel *_gm; +public: + gmshTermOfFormulation (GModel *gm) : _gm(gm){} + virtual void addToMatrix (gmshAssembler&) const = 0; + virtual void addToRightHandSide (gmshAssembler&) const = 0; +}; + +// a nodal finite element term : variables are always +// defined at nodes of the mesh +class gmshNodalFemTerm : public gmshTermOfFormulation { +protected: + // return the number of columns of the element matrix + virtual int sizeOfC(MElement*) const = 0; + // return the number of rows of the element matrix + virtual int sizeOfR(MElement*) const = 0; + // in a given element, return the dof key associated to a given row of the local element matrix + virtual void getLocalDofR (MElement *e, int iRow, MVertex **vR, int *iCompR, int *iFieldR) const = 0; + virtual void getLocalDofC (MElement *e, int iCol, MVertex **vC, int *iCompC, int *iFieldC) const + {getLocalDofR ( e,iCol,vC,iCompC, iFieldC);} +public: + gmshNodalFemTerm (GModel *gm) : gmshTermOfFormulation(gm){} + virtual ~gmshNodalFemTerm (); + // compute the element matrix + virtual void elementMatrix (MElement *e, Double_Matrix &m) const = 0; + + void addToMatrix (gmshAssembler &J, MElement *e) const; + void addToMatrix (gmshAssembler &J, GEntity *ge) const; + void addToMatrix (gmshAssembler &J) const; + void addToMatrix (gmshAssembler &J,const std::vector<MElement*> &) const; + void addToMatrix (gmshAssembler &Jac, Double_Matrix &localMatrix, MElement *e) const; + + void addDirichlet (int physical, int dim, int comp, int field, const gmshFunction & e, gmshAssembler &); + void addNeumann (int physical, int dim, int icomp, int field, const gmshFunction & e, + gmshAssembler &); + void addToRightHandSide (gmshAssembler &J, GEntity *ge) const; + void addToRightHandSide (gmshAssembler &r) const; + +}; + + +#endif diff --git a/Parser/Gmsh.l b/Parser/Gmsh.l index 45aa55b6efb532f56af6520d75829b8ac8974d45..d0394560d2cebc349f70d79f31d3b20f00bf8b43 100644 --- a/Parser/Gmsh.l +++ b/Parser/Gmsh.l @@ -104,6 +104,7 @@ Characteristic return tCharacteristic; Complex return tComplex; Color return tColor; ColorTable return tColorTable; +Compound return tCompound; Coordinates return tCoordinates; CatmullRom return tSpline; Call return tCall; diff --git a/Parser/Gmsh.tab.cpp b/Parser/Gmsh.tab.cpp index c95bab445b6522c359ed86cf65d0c3555bf06949..4d337da15e5859628ccfd47edb8bbd3790ac249c 100644 --- a/Parser/Gmsh.tab.cpp +++ b/Parser/Gmsh.tab.cpp @@ -132,65 +132,67 @@ tTransfinite = 313, tComplex = 314, tPhysical = 315, - tUsing = 316, - tPlugin = 317, - tRotate = 318, - tTranslate = 319, - tSymmetry = 320, - tDilate = 321, - tExtrude = 322, - tLoop = 323, - tRecombine = 324, - tSmoother = 325, - tSplit = 326, - tDelete = 327, - tCoherence = 328, - tIntersect = 329, - tLayers = 330, - tHole = 331, - tAlias = 332, - tAliasWithOptions = 333, - tText2D = 334, - tText3D = 335, - tInterpolationScheme = 336, - tTime = 337, - tCombine = 338, - tBSpline = 339, - tBezier = 340, - tNurbs = 341, - tOrder = 342, - tKnots = 343, - tColor = 344, - tColorTable = 345, - tFor = 346, - tIn = 347, - tEndFor = 348, - tIf = 349, - tEndIf = 350, - tExit = 351, - tField = 352, - tReturn = 353, - tCall = 354, - tFunction = 355, - tShow = 356, - tHide = 357, - tGetValue = 358, - tGMSH_MAJOR_VERSION = 359, - tGMSH_MINOR_VERSION = 360, - tGMSH_PATCH_VERSION = 361, - tAFFECTDIVIDE = 362, - tAFFECTTIMES = 363, - tAFFECTMINUS = 364, - tAFFECTPLUS = 365, - tOR = 366, - tAND = 367, - tNOTEQUAL = 368, - tEQUAL = 369, - tGREATEROREQUAL = 370, - tLESSOREQUAL = 371, - UNARYPREC = 372, - tMINUSMINUS = 373, - tPLUSPLUS = 374 + tCompound = 316, + tBoundary = 317, + tUsing = 318, + tPlugin = 319, + tRotate = 320, + tTranslate = 321, + tSymmetry = 322, + tDilate = 323, + tExtrude = 324, + tLoop = 325, + tRecombine = 326, + tSmoother = 327, + tSplit = 328, + tDelete = 329, + tCoherence = 330, + tIntersect = 331, + tLayers = 332, + tHole = 333, + tAlias = 334, + tAliasWithOptions = 335, + tText2D = 336, + tText3D = 337, + tInterpolationScheme = 338, + tTime = 339, + tCombine = 340, + tBSpline = 341, + tBezier = 342, + tNurbs = 343, + tOrder = 344, + tKnots = 345, + tColor = 346, + tColorTable = 347, + tFor = 348, + tIn = 349, + tEndFor = 350, + tIf = 351, + tEndIf = 352, + tExit = 353, + tField = 354, + tReturn = 355, + tCall = 356, + tFunction = 357, + tShow = 358, + tHide = 359, + tGetValue = 360, + tGMSH_MAJOR_VERSION = 361, + tGMSH_MINOR_VERSION = 362, + tGMSH_PATCH_VERSION = 363, + tAFFECTDIVIDE = 364, + tAFFECTTIMES = 365, + tAFFECTMINUS = 366, + tAFFECTPLUS = 367, + tOR = 368, + tAND = 369, + tNOTEQUAL = 370, + tEQUAL = 371, + tGREATEROREQUAL = 372, + tLESSOREQUAL = 373, + UNARYPREC = 374, + tMINUSMINUS = 375, + tPLUSPLUS = 376 }; #endif /* Tokens. */ @@ -252,65 +254,67 @@ #define tTransfinite 313 #define tComplex 314 #define tPhysical 315 -#define tUsing 316 -#define tPlugin 317 -#define tRotate 318 -#define tTranslate 319 -#define tSymmetry 320 -#define tDilate 321 -#define tExtrude 322 -#define tLoop 323 -#define tRecombine 324 -#define tSmoother 325 -#define tSplit 326 -#define tDelete 327 -#define tCoherence 328 -#define tIntersect 329 -#define tLayers 330 -#define tHole 331 -#define tAlias 332 -#define tAliasWithOptions 333 -#define tText2D 334 -#define tText3D 335 -#define tInterpolationScheme 336 -#define tTime 337 -#define tCombine 338 -#define tBSpline 339 -#define tBezier 340 -#define tNurbs 341 -#define tOrder 342 -#define tKnots 343 -#define tColor 344 -#define tColorTable 345 -#define tFor 346 -#define tIn 347 -#define tEndFor 348 -#define tIf 349 -#define tEndIf 350 -#define tExit 351 -#define tField 352 -#define tReturn 353 -#define tCall 354 -#define tFunction 355 -#define tShow 356 -#define tHide 357 -#define tGetValue 358 -#define tGMSH_MAJOR_VERSION 359 -#define tGMSH_MINOR_VERSION 360 -#define tGMSH_PATCH_VERSION 361 -#define tAFFECTDIVIDE 362 -#define tAFFECTTIMES 363 -#define tAFFECTMINUS 364 -#define tAFFECTPLUS 365 -#define tOR 366 -#define tAND 367 -#define tNOTEQUAL 368 -#define tEQUAL 369 -#define tGREATEROREQUAL 370 -#define tLESSOREQUAL 371 -#define UNARYPREC 372 -#define tMINUSMINUS 373 -#define tPLUSPLUS 374 +#define tCompound 316 +#define tBoundary 317 +#define tUsing 318 +#define tPlugin 319 +#define tRotate 320 +#define tTranslate 321 +#define tSymmetry 322 +#define tDilate 323 +#define tExtrude 324 +#define tLoop 325 +#define tRecombine 326 +#define tSmoother 327 +#define tSplit 328 +#define tDelete 329 +#define tCoherence 330 +#define tIntersect 331 +#define tLayers 332 +#define tHole 333 +#define tAlias 334 +#define tAliasWithOptions 335 +#define tText2D 336 +#define tText3D 337 +#define tInterpolationScheme 338 +#define tTime 339 +#define tCombine 340 +#define tBSpline 341 +#define tBezier 342 +#define tNurbs 343 +#define tOrder 344 +#define tKnots 345 +#define tColor 346 +#define tColorTable 347 +#define tFor 348 +#define tIn 349 +#define tEndFor 350 +#define tIf 351 +#define tEndIf 352 +#define tExit 353 +#define tField 354 +#define tReturn 355 +#define tCall 356 +#define tFunction 357 +#define tShow 358 +#define tHide 359 +#define tGetValue 360 +#define tGMSH_MAJOR_VERSION 361 +#define tGMSH_MINOR_VERSION 362 +#define tGMSH_PATCH_VERSION 363 +#define tAFFECTDIVIDE 364 +#define tAFFECTTIMES 365 +#define tAFFECTMINUS 366 +#define tAFFECTPLUS 367 +#define tOR 368 +#define tAND 369 +#define tNOTEQUAL 370 +#define tEQUAL 371 +#define tGREATEROREQUAL 372 +#define tLESSOREQUAL 373 +#define UNARYPREC 374 +#define tMINUSMINUS 375 +#define tPLUSPLUS 376 @@ -418,7 +422,7 @@ typedef union YYSTYPE List_T *l; } /* Line 193 of yacc.c. */ -#line 422 "Gmsh.tab.cpp" +#line 426 "Gmsh.tab.cpp" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 @@ -431,7 +435,7 @@ typedef union YYSTYPE /* Line 216 of yacc.c. */ -#line 435 "Gmsh.tab.cpp" +#line 439 "Gmsh.tab.cpp" #ifdef short # undef short @@ -646,20 +650,20 @@ union yyalloc /* YYFINAL -- State number of the termination state. */ #define YYFINAL 5 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 6264 +#define YYLAST 6147 /* YYNTOKENS -- Number of terminals. */ -#define YYNTOKENS 140 +#define YYNTOKENS 142 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 73 /* YYNRULES -- Number of rules. */ -#define YYNRULES 355 +#define YYNRULES 356 /* YYNRULES -- Number of states. */ -#define YYNSTATES 1239 +#define YYNSTATES 1251 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 -#define YYMAXUTOK 374 +#define YYMAXUTOK 376 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) @@ -670,16 +674,16 @@ static const yytype_uint8 yytranslate[] = 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 125, 2, 135, 2, 124, 2, 2, - 130, 131, 122, 120, 136, 121, 134, 123, 2, 2, + 2, 2, 2, 127, 2, 137, 2, 126, 2, 2, + 132, 133, 124, 122, 138, 123, 136, 125, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 116, 2, 117, 111, 2, 2, 2, 2, 2, 2, + 118, 2, 119, 113, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 132, 2, 133, 129, 2, 2, 2, 2, 2, + 2, 134, 2, 135, 131, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 137, 2, 138, 139, 2, 2, 2, + 2, 2, 2, 139, 2, 140, 141, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -703,8 +707,8 @@ static const yytype_uint8 yytranslate[] = 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, - 105, 106, 107, 108, 109, 110, 112, 113, 114, 115, - 118, 119, 126, 127, 128 + 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, + 116, 117, 120, 121, 128, 129, 130 }; #if YYDEBUG @@ -723,240 +727,241 @@ static const yytype_uint16 yyprhs[] = 375, 383, 393, 403, 415, 425, 435, 437, 439, 440, 446, 447, 450, 458, 467, 474, 482, 490, 499, 508, 526, 534, 542, 554, 563, 572, 581, 591, 595, 600, - 611, 619, 627, 636, 645, 654, 662, 671, 677, 689, - 695, 705, 710, 720, 730, 732, 734, 735, 738, 745, - 752, 759, 766, 771, 778, 785, 789, 794, 800, 804, - 808, 813, 818, 822, 830, 838, 842, 850, 854, 857, - 860, 876, 879, 886, 895, 904, 915, 917, 920, 922, - 926, 931, 933, 939, 951, 965, 966, 974, 975, 989, - 990, 1006, 1007, 1014, 1023, 1032, 1041, 1054, 1067, 1080, - 1095, 1110, 1125, 1126, 1139, 1140, 1153, 1154, 1167, 1168, - 1185, 1186, 1203, 1204, 1221, 1222, 1241, 1242, 1261, 1262, - 1281, 1283, 1286, 1292, 1300, 1310, 1313, 1323, 1324, 1328, - 1329, 1331, 1332, 1335, 1336, 1339, 1347, 1354, 1363, 1372, - 1378, 1385, 1396, 1407, 1418, 1429, 1432, 1436, 1438, 1442, - 1445, 1448, 1451, 1455, 1459, 1463, 1467, 1471, 1475, 1479, - 1483, 1487, 1491, 1495, 1499, 1503, 1507, 1513, 1518, 1523, - 1528, 1533, 1538, 1543, 1548, 1553, 1558, 1563, 1570, 1575, - 1580, 1585, 1590, 1595, 1600, 1607, 1614, 1621, 1626, 1631, - 1636, 1641, 1646, 1651, 1656, 1661, 1666, 1671, 1676, 1683, - 1688, 1693, 1698, 1703, 1708, 1713, 1720, 1727, 1734, 1739, - 1741, 1743, 1745, 1747, 1749, 1751, 1753, 1755, 1761, 1766, - 1771, 1774, 1780, 1784, 1791, 1796, 1804, 1811, 1813, 1816, - 1819, 1823, 1827, 1839, 1849, 1857, 1865, 1867, 1871, 1873, - 1875, 1878, 1882, 1887, 1893, 1896, 1900, 1904, 1910, 1915, - 1917, 1919, 1923, 1930, 1932, 1934, 1938, 1942, 1952, 1960, - 1962, 1968, 1972, 1979, 1981, 1985, 1987, 1989, 1993, 2000, - 2002, 2004, 2011, 2016, 2021, 2026 + 611, 619, 627, 636, 645, 658, 667, 675, 684, 690, + 702, 708, 718, 723, 733, 743, 745, 747, 748, 751, + 758, 765, 772, 779, 784, 791, 798, 802, 807, 813, + 817, 821, 826, 831, 835, 843, 851, 855, 863, 867, + 870, 873, 889, 892, 899, 908, 917, 928, 930, 933, + 935, 939, 944, 946, 952, 964, 978, 979, 987, 988, + 1002, 1003, 1019, 1020, 1027, 1036, 1045, 1054, 1067, 1080, + 1093, 1108, 1123, 1138, 1139, 1152, 1153, 1166, 1167, 1180, + 1181, 1198, 1199, 1216, 1217, 1234, 1235, 1254, 1255, 1274, + 1275, 1294, 1296, 1299, 1305, 1313, 1323, 1326, 1336, 1337, + 1341, 1342, 1344, 1345, 1348, 1349, 1352, 1360, 1367, 1376, + 1385, 1391, 1398, 1409, 1420, 1431, 1442, 1445, 1449, 1451, + 1455, 1458, 1461, 1464, 1468, 1472, 1476, 1480, 1484, 1488, + 1492, 1496, 1500, 1504, 1508, 1512, 1516, 1520, 1526, 1531, + 1536, 1541, 1546, 1551, 1556, 1561, 1566, 1571, 1576, 1583, + 1588, 1593, 1598, 1603, 1608, 1613, 1620, 1627, 1634, 1639, + 1644, 1649, 1654, 1659, 1664, 1669, 1674, 1679, 1684, 1689, + 1696, 1701, 1706, 1711, 1716, 1721, 1726, 1733, 1740, 1747, + 1752, 1754, 1756, 1758, 1760, 1762, 1764, 1766, 1768, 1774, + 1779, 1784, 1787, 1793, 1797, 1804, 1809, 1817, 1824, 1826, + 1829, 1832, 1836, 1840, 1852, 1862, 1870, 1878, 1880, 1884, + 1886, 1888, 1891, 1895, 1900, 1906, 1909, 1913, 1917, 1923, + 1928, 1930, 1932, 1936, 1943, 1945, 1947, 1951, 1955, 1965, + 1973, 1975, 1981, 1985, 1992, 1994, 1998, 2000, 2002, 2006, + 2013, 2015, 2017, 2024, 2029, 2034, 2039 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { - 141, 0, -1, 142, -1, 1, 6, -1, -1, 142, - 143, -1, 146, -1, 145, -1, 164, -1, 168, -1, - 169, -1, 172, -1, 173, -1, 174, -1, 177, -1, - 197, -1, 198, -1, 199, -1, 176, -1, 175, -1, - 117, -1, 117, 117, -1, 35, 130, 5, 131, 6, - -1, 35, 130, 5, 131, 144, 211, 6, -1, 35, - 130, 5, 136, 207, 131, 6, -1, 35, 130, 5, - 136, 207, 131, 144, 211, 6, -1, 4, 5, 137, - 147, 138, 6, -1, 77, 4, 132, 200, 133, 6, - -1, 78, 4, 132, 200, 133, 6, -1, -1, 147, - 150, -1, 147, 154, -1, 147, 157, -1, 147, 159, - -1, 147, 160, -1, 200, -1, 148, 136, 200, -1, - 200, -1, 149, 136, 200, -1, -1, -1, 4, 151, - 130, 148, 131, 152, 137, 149, 138, 6, -1, 211, - -1, 153, 136, 211, -1, -1, 79, 130, 200, 136, - 200, 136, 200, 131, 155, 137, 153, 138, 6, -1, - 211, -1, 156, 136, 211, -1, -1, 80, 130, 200, - 136, 200, 136, 200, 136, 200, 131, 158, 137, 156, - 138, 6, -1, 81, 137, 204, 138, 137, 204, 138, - 6, -1, 81, 137, 204, 138, 137, 204, 138, 137, - 204, 138, 137, 204, 138, 6, -1, -1, 82, 161, - 137, 149, 138, 6, -1, 7, -1, 110, -1, 109, - -1, 108, -1, 107, -1, 128, -1, 127, -1, 4, - 162, 200, 6, -1, 4, 132, 200, 133, 162, 200, - 6, -1, 4, 132, 137, 207, 138, 133, 162, 205, - 6, -1, 4, 132, 133, 7, 205, 6, -1, 4, - 132, 133, 110, 205, 6, -1, 4, 163, 6, -1, - 4, 132, 200, 133, 163, 6, -1, 4, 7, 212, - 6, -1, 4, 134, 4, 7, 212, 6, -1, 4, - 132, 200, 133, 134, 4, 7, 212, 6, -1, 4, - 134, 4, 162, 200, 6, -1, 4, 132, 200, 133, - 134, 4, 162, 200, 6, -1, 4, 134, 4, 163, - 6, -1, 4, 132, 200, 133, 134, 4, 163, 6, - -1, 4, 134, 89, 134, 4, 7, 208, 6, -1, - 4, 132, 200, 133, 134, 89, 134, 4, 7, 208, - 6, -1, 4, 134, 90, 7, 209, 6, -1, 4, - 132, 200, 133, 134, 90, 7, 209, 6, -1, 4, - 97, 7, 200, 6, -1, 97, 132, 200, 133, 7, - 4, 6, -1, 97, 132, 200, 133, 134, 4, 7, - 200, 6, -1, 97, 132, 200, 133, 134, 4, 7, - 212, 6, -1, 97, 132, 200, 133, 134, 4, 7, - 137, 207, 138, 6, -1, 62, 130, 4, 131, 134, - 4, 7, 200, 6, -1, 62, 130, 4, 131, 134, - 4, 7, 212, 6, -1, 200, -1, 212, -1, -1, - 92, 47, 137, 200, 138, -1, -1, 56, 202, -1, - 43, 130, 200, 131, 7, 202, 6, -1, 60, 43, - 130, 165, 131, 7, 205, 6, -1, 52, 53, 205, - 7, 200, 6, -1, 46, 130, 200, 131, 7, 205, - 6, -1, 50, 130, 200, 131, 7, 205, 6, -1, - 44, 130, 200, 131, 7, 205, 167, 6, -1, 45, - 130, 200, 131, 7, 205, 167, 6, -1, 54, 130, - 200, 131, 7, 137, 200, 136, 200, 136, 5, 136, - 5, 136, 5, 138, 6, -1, 84, 130, 200, 131, - 7, 205, 6, -1, 85, 130, 200, 131, 7, 205, - 6, -1, 86, 130, 200, 131, 7, 205, 88, 205, - 87, 200, 6, -1, 46, 68, 130, 200, 131, 7, - 205, 6, -1, 60, 46, 130, 165, 131, 7, 205, - 6, -1, 56, 49, 130, 200, 131, 7, 205, 6, - -1, 57, 49, 130, 200, 131, 7, 205, 166, 6, - -1, 12, 13, 6, -1, 13, 49, 200, 6, -1, - 54, 49, 130, 200, 131, 7, 5, 5, 5, 6, - -1, 47, 130, 200, 131, 7, 205, 6, -1, 48, - 130, 200, 131, 7, 205, 6, -1, 49, 68, 130, - 200, 131, 7, 205, 6, -1, 60, 49, 130, 165, - 131, 7, 205, 6, -1, 59, 51, 130, 200, 131, - 7, 205, 6, -1, 51, 130, 200, 131, 7, 205, - 6, -1, 60, 51, 130, 165, 131, 7, 205, 6, - -1, 64, 202, 137, 170, 138, -1, 63, 137, 202, - 136, 202, 136, 200, 138, 137, 170, 138, -1, 65, - 202, 137, 170, 138, -1, 66, 137, 202, 136, 200, - 138, 137, 170, 138, -1, 4, 137, 170, 138, -1, - 74, 46, 137, 207, 138, 49, 137, 200, 138, -1, - 71, 46, 130, 200, 131, 137, 207, 138, 6, -1, - 171, -1, 169, -1, -1, 171, 168, -1, 171, 43, - 137, 207, 138, 6, -1, 171, 46, 137, 207, 138, - 6, -1, 171, 49, 137, 207, 138, 6, -1, 171, - 51, 137, 207, 138, 6, -1, 72, 137, 171, 138, - -1, 72, 97, 132, 200, 133, 6, -1, 72, 4, - 132, 200, 133, 6, -1, 72, 4, 6, -1, 72, - 4, 4, 6, -1, 89, 208, 137, 171, 138, -1, - 101, 211, 6, -1, 102, 211, 6, -1, 101, 137, - 171, 138, -1, 102, 137, 171, 138, -1, 4, 212, - 6, -1, 4, 4, 132, 200, 133, 211, 6, -1, - 4, 4, 4, 132, 200, 133, 6, -1, 4, 200, - 6, -1, 62, 130, 4, 131, 134, 4, 6, -1, - 83, 4, 6, -1, 96, 6, -1, 40, 6, -1, - 40, 137, 200, 136, 200, 136, 200, 136, 200, 136, - 200, 136, 200, 138, 6, -1, 41, 6, -1, 91, - 130, 200, 8, 200, 131, -1, 91, 130, 200, 8, - 200, 8, 200, 131, -1, 91, 4, 92, 137, 200, - 8, 200, 138, -1, 91, 4, 92, 137, 200, 8, - 200, 8, 200, 138, -1, 93, -1, 100, 4, -1, - 98, -1, 99, 4, 6, -1, 94, 130, 200, 131, - -1, 95, -1, 67, 202, 137, 171, 138, -1, 67, - 137, 202, 136, 202, 136, 200, 138, 137, 171, 138, - -1, 67, 137, 202, 136, 202, 136, 202, 136, 200, - 138, 137, 171, 138, -1, -1, 67, 202, 137, 171, - 178, 191, 138, -1, -1, 67, 137, 202, 136, 202, - 136, 200, 138, 137, 171, 179, 191, 138, -1, -1, - 67, 137, 202, 136, 202, 136, 202, 136, 200, 138, - 137, 171, 180, 191, 138, -1, -1, 67, 137, 171, - 181, 191, 138, -1, 67, 43, 137, 200, 136, 202, - 138, 6, -1, 67, 46, 137, 200, 136, 202, 138, - 6, -1, 67, 49, 137, 200, 136, 202, 138, 6, - -1, 67, 43, 137, 200, 136, 202, 136, 202, 136, - 200, 138, 6, -1, 67, 46, 137, 200, 136, 202, - 136, 202, 136, 200, 138, 6, -1, 67, 49, 137, - 200, 136, 202, 136, 202, 136, 200, 138, 6, -1, - 67, 43, 137, 200, 136, 202, 136, 202, 136, 202, - 136, 200, 138, 6, -1, 67, 46, 137, 200, 136, - 202, 136, 202, 136, 202, 136, 200, 138, 6, -1, - 67, 49, 137, 200, 136, 202, 136, 202, 136, 202, - 136, 200, 138, 6, -1, -1, 67, 43, 137, 200, - 136, 202, 138, 182, 137, 191, 138, 6, -1, -1, - 67, 46, 137, 200, 136, 202, 138, 183, 137, 191, - 138, 6, -1, -1, 67, 49, 137, 200, 136, 202, - 138, 184, 137, 191, 138, 6, -1, -1, 67, 43, - 137, 200, 136, 202, 136, 202, 136, 200, 138, 185, - 137, 191, 138, 6, -1, -1, 67, 46, 137, 200, - 136, 202, 136, 202, 136, 200, 138, 186, 137, 191, - 138, 6, -1, -1, 67, 49, 137, 200, 136, 202, - 136, 202, 136, 200, 138, 187, 137, 191, 138, 6, - -1, -1, 67, 43, 137, 200, 136, 202, 136, 202, - 136, 202, 136, 200, 138, 188, 137, 191, 138, 6, - -1, -1, 67, 46, 137, 200, 136, 202, 136, 202, - 136, 202, 136, 200, 138, 189, 137, 191, 138, 6, - -1, -1, 67, 49, 137, 200, 136, 202, 136, 202, - 136, 202, 136, 200, 138, 190, 137, 191, 138, 6, - -1, 192, -1, 191, 192, -1, 75, 137, 200, 138, - 6, -1, 75, 137, 205, 136, 205, 138, 6, -1, - 75, 137, 205, 136, 205, 136, 205, 138, 6, -1, - 69, 6, -1, 76, 130, 200, 131, 7, 205, 61, - 200, 6, -1, -1, 61, 4, 200, -1, -1, 4, - -1, -1, 7, 205, -1, -1, 7, 200, -1, 58, - 46, 205, 7, 200, 193, 6, -1, 58, 49, 205, - 195, 194, 6, -1, 55, 49, 137, 200, 138, 7, - 205, 6, -1, 58, 51, 137, 200, 138, 7, 205, - 6, -1, 69, 49, 205, 196, 6, -1, 70, 49, - 205, 7, 200, 6, -1, 43, 137, 207, 138, 92, - 49, 137, 200, 138, 6, -1, 46, 137, 207, 138, - 92, 49, 137, 200, 138, 6, -1, 46, 137, 207, - 138, 92, 51, 137, 200, 138, 6, -1, 49, 137, - 207, 138, 92, 51, 137, 200, 138, 6, -1, 73, - 6, -1, 73, 4, 6, -1, 201, -1, 130, 200, - 131, -1, 121, 200, -1, 120, 200, -1, 125, 200, - -1, 200, 121, 200, -1, 200, 120, 200, -1, 200, - 122, 200, -1, 200, 123, 200, -1, 200, 124, 200, - -1, 200, 129, 200, -1, 200, 116, 200, -1, 200, - 117, 200, -1, 200, 119, 200, -1, 200, 118, 200, - -1, 200, 115, 200, -1, 200, 114, 200, -1, 200, - 113, 200, -1, 200, 112, 200, -1, 200, 111, 200, - 8, 200, -1, 14, 130, 200, 131, -1, 15, 130, - 200, 131, -1, 16, 130, 200, 131, -1, 17, 130, - 200, 131, -1, 18, 130, 200, 131, -1, 19, 130, - 200, 131, -1, 20, 130, 200, 131, -1, 21, 130, - 200, 131, -1, 22, 130, 200, 131, -1, 24, 130, - 200, 131, -1, 25, 130, 200, 136, 200, 131, -1, - 26, 130, 200, 131, -1, 27, 130, 200, 131, -1, - 28, 130, 200, 131, -1, 29, 130, 200, 131, -1, - 30, 130, 200, 131, -1, 31, 130, 200, 131, -1, - 32, 130, 200, 136, 200, 131, -1, 33, 130, 200, - 136, 200, 131, -1, 34, 130, 200, 136, 200, 131, - -1, 23, 130, 200, 131, -1, 14, 132, 200, 133, - -1, 15, 132, 200, 133, -1, 16, 132, 200, 133, - -1, 17, 132, 200, 133, -1, 18, 132, 200, 133, - -1, 19, 132, 200, 133, -1, 20, 132, 200, 133, - -1, 21, 132, 200, 133, -1, 22, 132, 200, 133, - -1, 24, 132, 200, 133, -1, 25, 132, 200, 136, - 200, 133, -1, 26, 132, 200, 133, -1, 27, 132, - 200, 133, -1, 28, 132, 200, 133, -1, 29, 132, - 200, 133, -1, 30, 132, 200, 133, -1, 31, 132, - 200, 133, -1, 32, 132, 200, 136, 200, 133, -1, - 33, 132, 200, 136, 200, 133, -1, 34, 132, 200, - 136, 200, 133, -1, 23, 132, 200, 133, -1, 3, - -1, 9, -1, 10, -1, 11, -1, 104, -1, 105, - -1, 106, -1, 4, -1, 4, 139, 137, 200, 138, - -1, 4, 132, 200, 133, -1, 135, 4, 132, 133, - -1, 4, 163, -1, 4, 132, 200, 133, 163, -1, - 4, 134, 4, -1, 4, 132, 200, 133, 134, 4, - -1, 4, 134, 4, 163, -1, 4, 132, 200, 133, - 134, 4, 163, -1, 103, 130, 5, 136, 200, 131, - -1, 203, -1, 121, 202, -1, 120, 202, -1, 202, - 121, 202, -1, 202, 120, 202, -1, 137, 200, 136, - 200, 136, 200, 136, 200, 136, 200, 138, -1, 137, - 200, 136, 200, 136, 200, 136, 200, 138, -1, 137, - 200, 136, 200, 136, 200, 138, -1, 130, 200, 136, - 200, 136, 200, 131, -1, 205, -1, 204, 136, 205, - -1, 200, -1, 206, -1, 137, 138, -1, 137, 207, - 138, -1, 121, 137, 207, 138, -1, 200, 122, 137, - 207, 138, -1, 121, 206, -1, 200, 122, 206, -1, - 200, 8, 200, -1, 200, 8, 200, 8, 200, -1, - 43, 137, 200, 138, -1, 169, -1, 177, -1, 4, - 132, 133, -1, 4, 132, 137, 207, 138, 133, -1, - 200, -1, 206, -1, 207, 136, 200, -1, 207, 136, - 206, -1, 137, 200, 136, 200, 136, 200, 136, 200, - 138, -1, 137, 200, 136, 200, 136, 200, 138, -1, - 4, -1, 4, 134, 89, 134, 4, -1, 137, 210, - 138, -1, 4, 132, 200, 133, 134, 90, -1, 208, - -1, 210, 136, 208, -1, 212, -1, 4, -1, 4, - 134, 4, -1, 4, 132, 200, 133, 134, 4, -1, - 5, -1, 42, -1, 37, 130, 211, 136, 211, 131, - -1, 38, 130, 211, 131, -1, 39, 130, 211, 131, - -1, 36, 130, 211, 131, -1, 36, 130, 211, 136, - 207, 131, -1 + 143, 0, -1, 144, -1, 1, 6, -1, -1, 144, + 145, -1, 148, -1, 147, -1, 166, -1, 170, -1, + 171, -1, 174, -1, 175, -1, 176, -1, 179, -1, + 199, -1, 200, -1, 201, -1, 178, -1, 177, -1, + 119, -1, 119, 119, -1, 35, 132, 5, 133, 6, + -1, 35, 132, 5, 133, 146, 213, 6, -1, 35, + 132, 5, 138, 209, 133, 6, -1, 35, 132, 5, + 138, 209, 133, 146, 213, 6, -1, 4, 5, 139, + 149, 140, 6, -1, 79, 4, 134, 202, 135, 6, + -1, 80, 4, 134, 202, 135, 6, -1, -1, 149, + 152, -1, 149, 156, -1, 149, 159, -1, 149, 161, + -1, 149, 162, -1, 202, -1, 150, 138, 202, -1, + 202, -1, 151, 138, 202, -1, -1, -1, 4, 153, + 132, 150, 133, 154, 139, 151, 140, 6, -1, 213, + -1, 155, 138, 213, -1, -1, 81, 132, 202, 138, + 202, 138, 202, 133, 157, 139, 155, 140, 6, -1, + 213, -1, 158, 138, 213, -1, -1, 82, 132, 202, + 138, 202, 138, 202, 138, 202, 133, 160, 139, 158, + 140, 6, -1, 83, 139, 206, 140, 139, 206, 140, + 6, -1, 83, 139, 206, 140, 139, 206, 140, 139, + 206, 140, 139, 206, 140, 6, -1, -1, 84, 163, + 139, 151, 140, 6, -1, 7, -1, 112, -1, 111, + -1, 110, -1, 109, -1, 130, -1, 129, -1, 4, + 164, 202, 6, -1, 4, 134, 202, 135, 164, 202, + 6, -1, 4, 134, 139, 209, 140, 135, 164, 207, + 6, -1, 4, 134, 135, 7, 207, 6, -1, 4, + 134, 135, 112, 207, 6, -1, 4, 165, 6, -1, + 4, 134, 202, 135, 165, 6, -1, 4, 7, 214, + 6, -1, 4, 136, 4, 7, 214, 6, -1, 4, + 134, 202, 135, 136, 4, 7, 214, 6, -1, 4, + 136, 4, 164, 202, 6, -1, 4, 134, 202, 135, + 136, 4, 164, 202, 6, -1, 4, 136, 4, 165, + 6, -1, 4, 134, 202, 135, 136, 4, 165, 6, + -1, 4, 136, 91, 136, 4, 7, 210, 6, -1, + 4, 134, 202, 135, 136, 91, 136, 4, 7, 210, + 6, -1, 4, 136, 92, 7, 211, 6, -1, 4, + 134, 202, 135, 136, 92, 7, 211, 6, -1, 4, + 99, 7, 202, 6, -1, 99, 134, 202, 135, 7, + 4, 6, -1, 99, 134, 202, 135, 136, 4, 7, + 202, 6, -1, 99, 134, 202, 135, 136, 4, 7, + 214, 6, -1, 99, 134, 202, 135, 136, 4, 7, + 139, 209, 140, 6, -1, 64, 132, 4, 133, 136, + 4, 7, 202, 6, -1, 64, 132, 4, 133, 136, + 4, 7, 214, 6, -1, 202, -1, 214, -1, -1, + 94, 47, 139, 202, 140, -1, -1, 56, 204, -1, + 43, 132, 202, 133, 7, 204, 6, -1, 60, 43, + 132, 167, 133, 7, 207, 6, -1, 52, 53, 207, + 7, 202, 6, -1, 46, 132, 202, 133, 7, 207, + 6, -1, 50, 132, 202, 133, 7, 207, 6, -1, + 44, 132, 202, 133, 7, 207, 169, 6, -1, 45, + 132, 202, 133, 7, 207, 169, 6, -1, 54, 132, + 202, 133, 7, 139, 202, 138, 202, 138, 5, 138, + 5, 138, 5, 140, 6, -1, 86, 132, 202, 133, + 7, 207, 6, -1, 87, 132, 202, 133, 7, 207, + 6, -1, 88, 132, 202, 133, 7, 207, 90, 207, + 89, 202, 6, -1, 46, 70, 132, 202, 133, 7, + 207, 6, -1, 60, 46, 132, 167, 133, 7, 207, + 6, -1, 56, 49, 132, 202, 133, 7, 207, 6, + -1, 57, 49, 132, 202, 133, 7, 207, 168, 6, + -1, 12, 13, 6, -1, 13, 49, 202, 6, -1, + 54, 49, 132, 202, 133, 7, 5, 5, 5, 6, + -1, 47, 132, 202, 133, 7, 207, 6, -1, 48, + 132, 202, 133, 7, 207, 6, -1, 49, 70, 132, + 202, 133, 7, 207, 6, -1, 60, 49, 132, 167, + 133, 7, 207, 6, -1, 61, 49, 132, 202, 133, + 7, 207, 62, 139, 206, 140, 6, -1, 59, 51, + 132, 202, 133, 7, 207, 6, -1, 51, 132, 202, + 133, 7, 207, 6, -1, 60, 51, 132, 167, 133, + 7, 207, 6, -1, 66, 204, 139, 172, 140, -1, + 65, 139, 204, 138, 204, 138, 202, 140, 139, 172, + 140, -1, 67, 204, 139, 172, 140, -1, 68, 139, + 204, 138, 202, 140, 139, 172, 140, -1, 4, 139, + 172, 140, -1, 76, 46, 139, 209, 140, 49, 139, + 202, 140, -1, 73, 46, 132, 202, 133, 139, 209, + 140, 6, -1, 173, -1, 171, -1, -1, 173, 170, + -1, 173, 43, 139, 209, 140, 6, -1, 173, 46, + 139, 209, 140, 6, -1, 173, 49, 139, 209, 140, + 6, -1, 173, 51, 139, 209, 140, 6, -1, 74, + 139, 173, 140, -1, 74, 99, 134, 202, 135, 6, + -1, 74, 4, 134, 202, 135, 6, -1, 74, 4, + 6, -1, 74, 4, 4, 6, -1, 91, 210, 139, + 173, 140, -1, 103, 213, 6, -1, 104, 213, 6, + -1, 103, 139, 173, 140, -1, 104, 139, 173, 140, + -1, 4, 214, 6, -1, 4, 4, 134, 202, 135, + 213, 6, -1, 4, 4, 4, 134, 202, 135, 6, + -1, 4, 202, 6, -1, 64, 132, 4, 133, 136, + 4, 6, -1, 85, 4, 6, -1, 98, 6, -1, + 40, 6, -1, 40, 139, 202, 138, 202, 138, 202, + 138, 202, 138, 202, 138, 202, 140, 6, -1, 41, + 6, -1, 93, 132, 202, 8, 202, 133, -1, 93, + 132, 202, 8, 202, 8, 202, 133, -1, 93, 4, + 94, 139, 202, 8, 202, 140, -1, 93, 4, 94, + 139, 202, 8, 202, 8, 202, 140, -1, 95, -1, + 102, 4, -1, 100, -1, 101, 4, 6, -1, 96, + 132, 202, 133, -1, 97, -1, 69, 204, 139, 173, + 140, -1, 69, 139, 204, 138, 204, 138, 202, 140, + 139, 173, 140, -1, 69, 139, 204, 138, 204, 138, + 204, 138, 202, 140, 139, 173, 140, -1, -1, 69, + 204, 139, 173, 180, 193, 140, -1, -1, 69, 139, + 204, 138, 204, 138, 202, 140, 139, 173, 181, 193, + 140, -1, -1, 69, 139, 204, 138, 204, 138, 204, + 138, 202, 140, 139, 173, 182, 193, 140, -1, -1, + 69, 139, 173, 183, 193, 140, -1, 69, 43, 139, + 202, 138, 204, 140, 6, -1, 69, 46, 139, 202, + 138, 204, 140, 6, -1, 69, 49, 139, 202, 138, + 204, 140, 6, -1, 69, 43, 139, 202, 138, 204, + 138, 204, 138, 202, 140, 6, -1, 69, 46, 139, + 202, 138, 204, 138, 204, 138, 202, 140, 6, -1, + 69, 49, 139, 202, 138, 204, 138, 204, 138, 202, + 140, 6, -1, 69, 43, 139, 202, 138, 204, 138, + 204, 138, 204, 138, 202, 140, 6, -1, 69, 46, + 139, 202, 138, 204, 138, 204, 138, 204, 138, 202, + 140, 6, -1, 69, 49, 139, 202, 138, 204, 138, + 204, 138, 204, 138, 202, 140, 6, -1, -1, 69, + 43, 139, 202, 138, 204, 140, 184, 139, 193, 140, + 6, -1, -1, 69, 46, 139, 202, 138, 204, 140, + 185, 139, 193, 140, 6, -1, -1, 69, 49, 139, + 202, 138, 204, 140, 186, 139, 193, 140, 6, -1, + -1, 69, 43, 139, 202, 138, 204, 138, 204, 138, + 202, 140, 187, 139, 193, 140, 6, -1, -1, 69, + 46, 139, 202, 138, 204, 138, 204, 138, 202, 140, + 188, 139, 193, 140, 6, -1, -1, 69, 49, 139, + 202, 138, 204, 138, 204, 138, 202, 140, 189, 139, + 193, 140, 6, -1, -1, 69, 43, 139, 202, 138, + 204, 138, 204, 138, 204, 138, 202, 140, 190, 139, + 193, 140, 6, -1, -1, 69, 46, 139, 202, 138, + 204, 138, 204, 138, 204, 138, 202, 140, 191, 139, + 193, 140, 6, -1, -1, 69, 49, 139, 202, 138, + 204, 138, 204, 138, 204, 138, 202, 140, 192, 139, + 193, 140, 6, -1, 194, -1, 193, 194, -1, 77, + 139, 202, 140, 6, -1, 77, 139, 207, 138, 207, + 140, 6, -1, 77, 139, 207, 138, 207, 138, 207, + 140, 6, -1, 71, 6, -1, 78, 132, 202, 133, + 7, 207, 63, 202, 6, -1, -1, 63, 4, 202, + -1, -1, 4, -1, -1, 7, 207, -1, -1, 7, + 202, -1, 58, 46, 207, 7, 202, 195, 6, -1, + 58, 49, 207, 197, 196, 6, -1, 55, 49, 139, + 202, 140, 7, 207, 6, -1, 58, 51, 139, 202, + 140, 7, 207, 6, -1, 71, 49, 207, 198, 6, + -1, 72, 49, 207, 7, 202, 6, -1, 43, 139, + 209, 140, 94, 49, 139, 202, 140, 6, -1, 46, + 139, 209, 140, 94, 49, 139, 202, 140, 6, -1, + 46, 139, 209, 140, 94, 51, 139, 202, 140, 6, + -1, 49, 139, 209, 140, 94, 51, 139, 202, 140, + 6, -1, 75, 6, -1, 75, 4, 6, -1, 203, + -1, 132, 202, 133, -1, 123, 202, -1, 122, 202, + -1, 127, 202, -1, 202, 123, 202, -1, 202, 122, + 202, -1, 202, 124, 202, -1, 202, 125, 202, -1, + 202, 126, 202, -1, 202, 131, 202, -1, 202, 118, + 202, -1, 202, 119, 202, -1, 202, 121, 202, -1, + 202, 120, 202, -1, 202, 117, 202, -1, 202, 116, + 202, -1, 202, 115, 202, -1, 202, 114, 202, -1, + 202, 113, 202, 8, 202, -1, 14, 132, 202, 133, + -1, 15, 132, 202, 133, -1, 16, 132, 202, 133, + -1, 17, 132, 202, 133, -1, 18, 132, 202, 133, + -1, 19, 132, 202, 133, -1, 20, 132, 202, 133, + -1, 21, 132, 202, 133, -1, 22, 132, 202, 133, + -1, 24, 132, 202, 133, -1, 25, 132, 202, 138, + 202, 133, -1, 26, 132, 202, 133, -1, 27, 132, + 202, 133, -1, 28, 132, 202, 133, -1, 29, 132, + 202, 133, -1, 30, 132, 202, 133, -1, 31, 132, + 202, 133, -1, 32, 132, 202, 138, 202, 133, -1, + 33, 132, 202, 138, 202, 133, -1, 34, 132, 202, + 138, 202, 133, -1, 23, 132, 202, 133, -1, 14, + 134, 202, 135, -1, 15, 134, 202, 135, -1, 16, + 134, 202, 135, -1, 17, 134, 202, 135, -1, 18, + 134, 202, 135, -1, 19, 134, 202, 135, -1, 20, + 134, 202, 135, -1, 21, 134, 202, 135, -1, 22, + 134, 202, 135, -1, 24, 134, 202, 135, -1, 25, + 134, 202, 138, 202, 135, -1, 26, 134, 202, 135, + -1, 27, 134, 202, 135, -1, 28, 134, 202, 135, + -1, 29, 134, 202, 135, -1, 30, 134, 202, 135, + -1, 31, 134, 202, 135, -1, 32, 134, 202, 138, + 202, 135, -1, 33, 134, 202, 138, 202, 135, -1, + 34, 134, 202, 138, 202, 135, -1, 23, 134, 202, + 135, -1, 3, -1, 9, -1, 10, -1, 11, -1, + 106, -1, 107, -1, 108, -1, 4, -1, 4, 141, + 139, 202, 140, -1, 4, 134, 202, 135, -1, 137, + 4, 134, 135, -1, 4, 165, -1, 4, 134, 202, + 135, 165, -1, 4, 136, 4, -1, 4, 134, 202, + 135, 136, 4, -1, 4, 136, 4, 165, -1, 4, + 134, 202, 135, 136, 4, 165, -1, 105, 132, 5, + 138, 202, 133, -1, 205, -1, 123, 204, -1, 122, + 204, -1, 204, 123, 204, -1, 204, 122, 204, -1, + 139, 202, 138, 202, 138, 202, 138, 202, 138, 202, + 140, -1, 139, 202, 138, 202, 138, 202, 138, 202, + 140, -1, 139, 202, 138, 202, 138, 202, 140, -1, + 132, 202, 138, 202, 138, 202, 133, -1, 207, -1, + 206, 138, 207, -1, 202, -1, 208, -1, 139, 140, + -1, 139, 209, 140, -1, 123, 139, 209, 140, -1, + 202, 124, 139, 209, 140, -1, 123, 208, -1, 202, + 124, 208, -1, 202, 8, 202, -1, 202, 8, 202, + 8, 202, -1, 43, 139, 202, 140, -1, 171, -1, + 179, -1, 4, 134, 135, -1, 4, 134, 139, 209, + 140, 135, -1, 202, -1, 208, -1, 209, 138, 202, + -1, 209, 138, 208, -1, 139, 202, 138, 202, 138, + 202, 138, 202, 140, -1, 139, 202, 138, 202, 138, + 202, 140, -1, 4, -1, 4, 136, 91, 136, 4, + -1, 139, 212, 140, -1, 4, 134, 202, 135, 136, + 92, -1, 210, -1, 212, 138, 210, -1, 214, -1, + 4, -1, 4, 136, 4, -1, 4, 134, 202, 135, + 136, 4, -1, 5, -1, 42, -1, 37, 132, 213, + 138, 213, 133, -1, 38, 132, 213, 133, -1, 39, + 132, 213, 133, -1, 36, 132, 213, 133, -1, 36, + 132, 213, 138, 209, 133, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ @@ -973,31 +978,31 @@ static const yytype_uint16 yyrline[] = 877, 883, 903, 924, 950, 962, 979, 983, 993, 996, 1011, 1014, 1024, 1047, 1063, 1085, 1103, 1121, 1151, 1181, 1201, 1219, 1237, 1263, 1280, 1299, 1317, 1356, 1362, 1368, - 1375, 1400, 1425, 1441, 1461, 1479, 1496, 1517, 1522, 1527, - 1532, 1537, 1557, 1563, 1574, 1575, 1580, 1583, 1587, 1610, - 1633, 1656, 1684, 1693, 1697, 1712, 1733, 1750, 1764, 1770, - 1776, 1785, 1799, 1847, 1865, 1880, 1899, 1911, 1935, 1939, - 1944, 1949, 1961, 1978, 1995, 2014, 2033, 2061, 2069, 2075, - 2082, 2086, 2095, 2103, 2111, 2120, 2119, 2132, 2131, 2144, - 2143, 2156, 2155, 2168, 2175, 2182, 2189, 2196, 2203, 2210, - 2217, 2224, 2232, 2231, 2243, 2242, 2254, 2253, 2265, 2264, - 2276, 2275, 2287, 2286, 2298, 2297, 2309, 2308, 2320, 2319, - 2334, 2337, 2343, 2352, 2372, 2395, 2399, 2423, 2426, 2442, - 2445, 2458, 2461, 2467, 2470, 2477, 2506, 2554, 2559, 2601, - 2623, 2649, 2672, 2695, 2698, 2707, 2711, 2727, 2728, 2729, - 2730, 2731, 2732, 2733, 2734, 2735, 2742, 2743, 2744, 2745, - 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754, 2755, - 2756, 2757, 2758, 2759, 2760, 2761, 2762, 2763, 2764, 2765, - 2766, 2767, 2768, 2769, 2770, 2771, 2772, 2773, 2775, 2776, - 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, - 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2804, - 2805, 2806, 2807, 2808, 2809, 2810, 2814, 2827, 2839, 2854, - 2864, 2874, 2892, 2897, 2902, 2912, 2922, 2930, 2934, 2938, - 2942, 2946, 2953, 2957, 2961, 2965, 2972, 2977, 2984, 2989, - 2993, 2998, 3002, 3010, 3021, 3029, 3037, 3044, 3055, 3075, - 3085, 3095, 3105, 3125, 3130, 3134, 3138, 3150, 3154, 3166, - 3173, 3183, 3187, 3202, 3207, 3214, 3218, 3231, 3239, 3250, - 3254, 3262, 3270, 3284, 3298, 3302 + 1375, 1400, 1425, 1441, 1458, 1488, 1506, 1523, 1544, 1549, + 1554, 1559, 1564, 1584, 1590, 1601, 1602, 1607, 1610, 1614, + 1637, 1660, 1683, 1711, 1720, 1724, 1739, 1760, 1777, 1791, + 1797, 1803, 1812, 1826, 1874, 1892, 1907, 1926, 1938, 1962, + 1966, 1971, 1976, 1988, 2005, 2022, 2041, 2060, 2088, 2096, + 2102, 2109, 2113, 2122, 2130, 2138, 2147, 2146, 2159, 2158, + 2171, 2170, 2183, 2182, 2195, 2202, 2209, 2216, 2223, 2230, + 2237, 2244, 2251, 2259, 2258, 2270, 2269, 2281, 2280, 2292, + 2291, 2303, 2302, 2314, 2313, 2325, 2324, 2336, 2335, 2347, + 2346, 2361, 2364, 2370, 2379, 2399, 2422, 2426, 2450, 2453, + 2469, 2472, 2485, 2488, 2494, 2497, 2504, 2533, 2581, 2586, + 2628, 2650, 2676, 2699, 2722, 2725, 2734, 2738, 2754, 2755, + 2756, 2757, 2758, 2759, 2760, 2761, 2762, 2769, 2770, 2771, + 2772, 2773, 2774, 2775, 2776, 2777, 2778, 2779, 2780, 2781, + 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, + 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2802, + 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, + 2813, 2814, 2815, 2816, 2817, 2818, 2819, 2820, 2821, 2822, + 2831, 2832, 2833, 2834, 2835, 2836, 2837, 2841, 2854, 2866, + 2881, 2891, 2901, 2919, 2924, 2929, 2939, 2949, 2957, 2961, + 2965, 2969, 2973, 2980, 2984, 2988, 2992, 2999, 3004, 3011, + 3016, 3020, 3025, 3029, 3037, 3048, 3056, 3064, 3071, 3082, + 3102, 3112, 3122, 3132, 3152, 3157, 3161, 3165, 3177, 3181, + 3193, 3200, 3210, 3214, 3229, 3234, 3241, 3245, 3258, 3266, + 3277, 3281, 3289, 3297, 3311, 3325, 3329 }; #endif @@ -1015,29 +1020,29 @@ static const char *const yytname[] = "tBoundingBox", "tDraw", "tToday", "tPoint", "tCircle", "tEllipse", "tLine", "tSphere", "tPolarSphere", "tSurface", "tSpline", "tVolume", "tCharacteristic", "tLength", "tParametric", "tElliptic", "tPlane", - "tRuled", "tTransfinite", "tComplex", "tPhysical", "tUsing", "tPlugin", - "tRotate", "tTranslate", "tSymmetry", "tDilate", "tExtrude", "tLoop", - "tRecombine", "tSmoother", "tSplit", "tDelete", "tCoherence", - "tIntersect", "tLayers", "tHole", "tAlias", "tAliasWithOptions", - "tText2D", "tText3D", "tInterpolationScheme", "tTime", "tCombine", - "tBSpline", "tBezier", "tNurbs", "tOrder", "tKnots", "tColor", - "tColorTable", "tFor", "tIn", "tEndFor", "tIf", "tEndIf", "tExit", - "tField", "tReturn", "tCall", "tFunction", "tShow", "tHide", "tGetValue", - "tGMSH_MAJOR_VERSION", "tGMSH_MINOR_VERSION", "tGMSH_PATCH_VERSION", - "tAFFECTDIVIDE", "tAFFECTTIMES", "tAFFECTMINUS", "tAFFECTPLUS", "'?'", - "tOR", "tAND", "tNOTEQUAL", "tEQUAL", "'<'", "'>'", "tGREATEROREQUAL", - "tLESSOREQUAL", "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "UNARYPREC", - "tMINUSMINUS", "tPLUSPLUS", "'^'", "'('", "')'", "'['", "']'", "'.'", - "'#'", "','", "'{'", "'}'", "'~'", "$accept", "All", "GeoFormatItems", - "GeoFormatItem", "SendToFile", "Printf", "View", "Views", - "ElementCoords", "ElementValues", "Element", "@1", "@2", "Text2DValues", - "Text2D", "@3", "Text3DValues", "Text3D", "@4", "InterpolationMatrix", - "Time", "@5", "NumericAffectation", "NumericIncrement", "Affectation", - "PhysicalId", "RuledSurfaceOptions", "CircleOptions", "Shape", - "Transform", "MultipleShape", "ListOfShapes", "Delete", "Colorify", - "Visibility", "Command", "Loop", "Extrude", "@6", "@7", "@8", "@9", - "@10", "@11", "@12", "@13", "@14", "@15", "@16", "@17", "@18", - "ExtrudeParameters", "ExtrudeParameter", "TransfiniteType", + "tRuled", "tTransfinite", "tComplex", "tPhysical", "tCompound", + "tBoundary", "tUsing", "tPlugin", "tRotate", "tTranslate", "tSymmetry", + "tDilate", "tExtrude", "tLoop", "tRecombine", "tSmoother", "tSplit", + "tDelete", "tCoherence", "tIntersect", "tLayers", "tHole", "tAlias", + "tAliasWithOptions", "tText2D", "tText3D", "tInterpolationScheme", + "tTime", "tCombine", "tBSpline", "tBezier", "tNurbs", "tOrder", "tKnots", + "tColor", "tColorTable", "tFor", "tIn", "tEndFor", "tIf", "tEndIf", + "tExit", "tField", "tReturn", "tCall", "tFunction", "tShow", "tHide", + "tGetValue", "tGMSH_MAJOR_VERSION", "tGMSH_MINOR_VERSION", + "tGMSH_PATCH_VERSION", "tAFFECTDIVIDE", "tAFFECTTIMES", "tAFFECTMINUS", + "tAFFECTPLUS", "'?'", "tOR", "tAND", "tNOTEQUAL", "tEQUAL", "'<'", "'>'", + "tGREATEROREQUAL", "tLESSOREQUAL", "'+'", "'-'", "'*'", "'/'", "'%'", + "'!'", "UNARYPREC", "tMINUSMINUS", "tPLUSPLUS", "'^'", "'('", "')'", + "'['", "']'", "'.'", "'#'", "','", "'{'", "'}'", "'~'", "$accept", "All", + "GeoFormatItems", "GeoFormatItem", "SendToFile", "Printf", "View", + "Views", "ElementCoords", "ElementValues", "Element", "@1", "@2", + "Text2DValues", "Text2D", "@3", "Text3DValues", "Text3D", "@4", + "InterpolationMatrix", "Time", "@5", "NumericAffectation", + "NumericIncrement", "Affectation", "PhysicalId", "RuledSurfaceOptions", + "CircleOptions", "Shape", "Transform", "MultipleShape", "ListOfShapes", + "Delete", "Colorify", "Visibility", "Command", "Loop", "Extrude", "@6", + "@7", "@8", "@9", "@10", "@11", "@12", "@13", "@14", "@15", "@16", "@17", + "@18", "ExtrudeParameters", "ExtrudeParameter", "TransfiniteType", "TransfiniteArrangement", "TransfiniteCorners", "RecombineAngle", "Transfinite", "Embedding", "Coherence", "FExpr", "FExpr_Single", "VExpr", "VExpr_Single", "RecursiveListOfListOfDouble", "ListOfDouble", @@ -1062,51 +1067,52 @@ static const yytype_uint16 yytoknum[] = 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 63, 366, 367, 368, 369, 60, 62, 370, 371, - 43, 45, 42, 47, 37, 33, 372, 373, 374, 94, - 40, 41, 91, 93, 46, 35, 44, 123, 125, 126 + 365, 366, 367, 63, 368, 369, 370, 371, 60, 62, + 372, 373, 43, 45, 42, 47, 37, 33, 374, 375, + 376, 94, 40, 41, 91, 93, 46, 35, 44, 123, + 125, 126 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint8 yyr1[] = { - 0, 140, 141, 141, 142, 142, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 144, 144, 145, 145, 145, 145, 146, 146, 146, 147, - 147, 147, 147, 147, 147, 148, 148, 149, 149, 151, - 152, 150, 153, 153, 155, 154, 156, 156, 158, 157, - 159, 159, 161, 160, 162, 162, 162, 162, 162, 163, - 163, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 165, 165, 166, 166, - 167, 167, 168, 168, 168, 168, 168, 168, 168, 168, - 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, - 168, 168, 168, 168, 168, 168, 168, 169, 169, 169, - 169, 169, 169, 169, 170, 170, 171, 171, 171, 171, - 171, 171, 172, 172, 172, 172, 172, 173, 174, 174, - 174, 174, 175, 175, 175, 175, 175, 175, 175, 175, - 175, 175, 176, 176, 176, 176, 176, 176, 176, 176, - 176, 176, 177, 177, 177, 178, 177, 179, 177, 180, - 177, 181, 177, 177, 177, 177, 177, 177, 177, 177, - 177, 177, 182, 177, 183, 177, 184, 177, 185, 177, - 186, 177, 187, 177, 188, 177, 189, 177, 190, 177, - 191, 191, 192, 192, 192, 192, 192, 193, 193, 194, - 194, 195, 195, 196, 196, 197, 197, 197, 197, 197, - 197, 198, 198, 198, 198, 199, 199, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 201, - 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, - 201, 201, 201, 201, 201, 201, 201, 202, 202, 202, - 202, 202, 203, 203, 203, 203, 204, 204, 205, 205, - 205, 205, 205, 205, 206, 206, 206, 206, 206, 206, - 206, 206, 206, 207, 207, 207, 207, 208, 208, 208, - 208, 209, 209, 210, 210, 211, 211, 211, 211, 212, - 212, 212, 212, 212, 212, 212 + 0, 142, 143, 143, 144, 144, 145, 145, 145, 145, + 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, + 146, 146, 147, 147, 147, 147, 148, 148, 148, 149, + 149, 149, 149, 149, 149, 150, 150, 151, 151, 153, + 154, 152, 155, 155, 157, 156, 158, 158, 160, 159, + 161, 161, 163, 162, 164, 164, 164, 164, 164, 165, + 165, 166, 166, 166, 166, 166, 166, 166, 166, 166, + 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, + 166, 166, 166, 166, 166, 166, 167, 167, 168, 168, + 169, 169, 170, 170, 170, 170, 170, 170, 170, 170, + 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, + 170, 170, 170, 170, 170, 170, 170, 170, 171, 171, + 171, 171, 171, 171, 171, 172, 172, 173, 173, 173, + 173, 173, 173, 174, 174, 174, 174, 174, 175, 176, + 176, 176, 176, 177, 177, 177, 177, 177, 177, 177, + 177, 177, 177, 178, 178, 178, 178, 178, 178, 178, + 178, 178, 178, 179, 179, 179, 180, 179, 181, 179, + 182, 179, 183, 179, 179, 179, 179, 179, 179, 179, + 179, 179, 179, 184, 179, 185, 179, 186, 179, 187, + 179, 188, 179, 189, 179, 190, 179, 191, 179, 192, + 179, 193, 193, 194, 194, 194, 194, 194, 195, 195, + 196, 196, 197, 197, 198, 198, 199, 199, 199, 199, + 199, 199, 200, 200, 200, 200, 201, 201, 202, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, + 203, 203, 203, 203, 203, 203, 203, 203, 204, 204, + 204, 204, 204, 205, 205, 205, 205, 206, 206, 207, + 207, 207, 207, 207, 207, 208, 208, 208, 208, 208, + 208, 208, 208, 208, 209, 209, 209, 209, 210, 210, + 210, 210, 211, 211, 212, 212, 213, 213, 213, 213, + 214, 214, 214, 214, 214, 214, 214 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ @@ -1123,31 +1129,31 @@ static const yytype_uint8 yyr2[] = 7, 9, 9, 11, 9, 9, 1, 1, 0, 5, 0, 2, 7, 8, 6, 7, 7, 8, 8, 17, 7, 7, 11, 8, 8, 8, 9, 3, 4, 10, - 7, 7, 8, 8, 8, 7, 8, 5, 11, 5, - 9, 4, 9, 9, 1, 1, 0, 2, 6, 6, - 6, 6, 4, 6, 6, 3, 4, 5, 3, 3, - 4, 4, 3, 7, 7, 3, 7, 3, 2, 2, - 15, 2, 6, 8, 8, 10, 1, 2, 1, 3, - 4, 1, 5, 11, 13, 0, 7, 0, 13, 0, - 15, 0, 6, 8, 8, 8, 12, 12, 12, 14, - 14, 14, 0, 12, 0, 12, 0, 12, 0, 16, - 0, 16, 0, 16, 0, 18, 0, 18, 0, 18, - 1, 2, 5, 7, 9, 2, 9, 0, 3, 0, - 1, 0, 2, 0, 2, 7, 6, 8, 8, 5, - 6, 10, 10, 10, 10, 2, 3, 1, 3, 2, - 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 5, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 4, 6, 4, 4, - 4, 4, 4, 4, 6, 6, 6, 4, 4, 4, + 7, 7, 8, 8, 12, 8, 7, 8, 5, 11, + 5, 9, 4, 9, 9, 1, 1, 0, 2, 6, + 6, 6, 6, 4, 6, 6, 3, 4, 5, 3, + 3, 4, 4, 3, 7, 7, 3, 7, 3, 2, + 2, 15, 2, 6, 8, 8, 10, 1, 2, 1, + 3, 4, 1, 5, 11, 13, 0, 7, 0, 13, + 0, 15, 0, 6, 8, 8, 8, 12, 12, 12, + 14, 14, 14, 0, 12, 0, 12, 0, 12, 0, + 16, 0, 16, 0, 16, 0, 18, 0, 18, 0, + 18, 1, 2, 5, 7, 9, 2, 9, 0, 3, + 0, 1, 0, 2, 0, 2, 7, 6, 8, 8, + 5, 6, 10, 10, 10, 10, 2, 3, 1, 3, + 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 4, - 4, 4, 4, 4, 4, 6, 6, 6, 4, 1, - 1, 1, 1, 1, 1, 1, 1, 5, 4, 4, - 2, 5, 3, 6, 4, 7, 6, 1, 2, 2, - 3, 3, 11, 9, 7, 7, 1, 3, 1, 1, - 2, 3, 4, 5, 2, 3, 3, 5, 4, 1, - 1, 3, 6, 1, 1, 3, 3, 9, 7, 1, - 5, 3, 6, 1, 3, 1, 1, 3, 6, 1, - 1, 6, 4, 4, 4, 6 + 4, 4, 4, 4, 4, 6, 6, 6, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, + 4, 4, 4, 4, 4, 4, 6, 6, 6, 4, + 1, 1, 1, 1, 1, 1, 1, 1, 5, 4, + 4, 2, 5, 3, 6, 4, 7, 6, 1, 2, + 2, 3, 3, 11, 9, 7, 7, 1, 3, 1, + 1, 2, 3, 4, 5, 2, 3, 3, 5, 4, + 1, 1, 3, 6, 1, 1, 3, 3, 9, 7, + 1, 5, 3, 6, 1, 3, 1, 1, 3, 6, + 1, 1, 6, 4, 4, 4, 6 }; /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state @@ -1159,283 +1165,287 @@ static const yytype_uint16 yydefact[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, - 0, 161, 0, 0, 158, 0, 0, 0, 0, 5, - 7, 6, 8, 9, 10, 11, 12, 13, 19, 18, - 14, 15, 16, 17, 289, 296, 349, 54, 290, 291, - 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 350, 0, 0, 293, - 294, 295, 58, 57, 56, 55, 0, 0, 0, 60, - 59, 0, 0, 0, 0, 126, 0, 0, 0, 227, - 0, 0, 0, 0, 149, 0, 151, 0, 0, 0, + 157, 0, 162, 0, 0, 159, 0, 0, 0, 0, + 5, 7, 6, 8, 9, 10, 11, 12, 13, 19, + 18, 14, 15, 16, 17, 290, 297, 350, 54, 291, + 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 351, 0, 0, + 294, 295, 296, 58, 57, 56, 55, 0, 0, 0, + 60, 59, 0, 0, 0, 0, 127, 0, 0, 0, + 228, 0, 0, 0, 0, 150, 0, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 307, 0, 0, 0, 0, 0, 126, 0, 0, - 0, 0, 0, 0, 126, 0, 225, 0, 0, 0, - 0, 0, 0, 0, 339, 0, 0, 0, 0, 0, - 148, 0, 0, 157, 346, 349, 126, 0, 345, 126, - 0, 0, 0, 0, 0, 300, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 308, 0, 0, 0, 0, 0, 127, + 0, 0, 0, 0, 0, 0, 127, 0, 226, 0, + 0, 0, 0, 0, 0, 0, 340, 0, 0, 0, + 0, 0, 149, 0, 0, 158, 347, 350, 127, 0, + 346, 127, 0, 0, 0, 0, 0, 301, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 296, 230, 229, 231, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, - 0, 124, 0, 66, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 142, 107, 0, 0, 0, 0, 296, 0, 0, 329, - 330, 333, 334, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 318, 0, 319, - 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, - 0, 0, 0, 0, 0, 309, 308, 0, 0, 0, - 0, 126, 126, 0, 0, 0, 0, 0, 0, 0, - 171, 0, 126, 213, 0, 0, 0, 135, 0, 0, - 0, 226, 0, 0, 0, 147, 0, 0, 0, 0, - 0, 126, 0, 0, 0, 0, 159, 0, 0, 0, - 138, 0, 139, 0, 0, 302, 0, 0, 68, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 297, 231, + 230, 232, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 126, 0, 125, 0, 66, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 143, 107, 0, 0, 0, 0, 297, 0, + 0, 330, 331, 334, 335, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 319, + 0, 320, 0, 0, 0, 0, 0, 0, 212, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 310, 309, + 0, 0, 0, 0, 127, 127, 0, 0, 0, 0, + 0, 0, 0, 172, 0, 127, 214, 0, 0, 0, + 136, 0, 0, 0, 227, 0, 0, 0, 148, 0, + 0, 0, 0, 0, 127, 0, 0, 0, 0, 160, + 0, 0, 0, 139, 0, 140, 0, 0, 303, 0, + 0, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 228, 0, - 0, 0, 0, 54, 0, 0, 0, 0, 0, 121, - 0, 0, 0, 0, 127, 61, 0, 245, 244, 243, - 242, 238, 239, 241, 240, 233, 232, 234, 235, 236, - 237, 108, 0, 0, 0, 0, 0, 0, 229, 324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 320, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 209, 0, 0, - 0, 86, 87, 0, 0, 0, 0, 0, 0, 0, - 311, 310, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 165, 0, 0, 0, 0, 136, 0, 0, 132, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 160, 0, 0, 347, 140, 141, 0, 298, 304, - 0, 39, 0, 0, 0, 52, 0, 30, 31, 32, - 33, 34, 247, 268, 248, 269, 249, 270, 250, 271, - 251, 272, 252, 273, 253, 274, 254, 275, 255, 276, - 267, 288, 256, 277, 0, 0, 258, 279, 259, 280, - 260, 281, 261, 282, 262, 283, 263, 284, 0, 0, - 0, 0, 0, 0, 354, 0, 0, 352, 353, 79, - 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, - 0, 73, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 22, 20, 0, 0, 0, 0, 331, 0, - 0, 326, 234, 325, 335, 336, 0, 0, 0, 0, + 0, 229, 0, 0, 0, 0, 54, 0, 0, 0, + 0, 0, 122, 0, 0, 0, 0, 128, 61, 0, + 246, 245, 244, 243, 239, 240, 242, 241, 234, 233, + 235, 236, 237, 238, 108, 0, 0, 0, 0, 0, + 0, 230, 325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321, - 0, 0, 0, 0, 0, 0, 0, 207, 212, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 117, 119, 0, 0, 0, 0, 0, 0, 0, - 0, 200, 0, 162, 0, 214, 219, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 137, - 0, 0, 0, 0, 0, 0, 0, 301, 0, 297, - 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 298, 64, 65, - 0, 0, 0, 0, 0, 67, 69, 71, 0, 0, - 343, 0, 77, 0, 0, 0, 0, 246, 21, 0, - 0, 0, 0, 0, 328, 0, 0, 90, 90, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 322, - 0, 94, 0, 0, 0, 0, 0, 0, 0, 216, + 210, 0, 0, 0, 86, 87, 0, 0, 0, 0, + 0, 0, 0, 0, 312, 311, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 166, 0, 0, 0, 0, + 137, 0, 0, 133, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 161, 0, 0, 348, 141, + 142, 0, 299, 305, 0, 39, 0, 0, 0, 52, + 0, 30, 31, 32, 33, 34, 248, 269, 249, 270, + 250, 271, 251, 272, 252, 273, 253, 274, 254, 275, + 255, 276, 256, 277, 268, 289, 257, 278, 0, 0, + 259, 280, 260, 281, 261, 282, 262, 283, 263, 284, + 264, 285, 0, 0, 0, 0, 0, 0, 355, 0, + 0, 353, 354, 79, 0, 0, 0, 0, 0, 54, + 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, + 300, 0, 0, 0, 0, 0, 22, 20, 0, 0, + 0, 0, 332, 0, 0, 327, 235, 326, 336, 337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 0, 0, 172, 201, 0, - 0, 220, 0, 134, 133, 0, 27, 28, 0, 0, - 0, 340, 0, 0, 0, 152, 0, 0, 0, 144, - 303, 143, 0, 0, 0, 0, 316, 0, 257, 278, - 264, 285, 265, 286, 266, 287, 355, 351, 306, 0, - 54, 0, 0, 0, 0, 62, 0, 0, 0, 341, - 0, 0, 0, 0, 23, 24, 0, 0, 92, 0, - 327, 0, 0, 0, 0, 0, 95, 0, 0, 110, - 111, 0, 0, 96, 115, 323, 0, 0, 0, 0, - 88, 0, 215, 0, 0, 0, 0, 0, 0, 146, - 0, 0, 0, 0, 126, 0, 182, 0, 184, 0, - 186, 318, 0, 0, 0, 0, 166, 0, 0, 100, - 101, 0, 0, 0, 0, 80, 0, 348, 305, 0, - 35, 0, 0, 0, 0, 0, 37, 0, 0, 0, - 74, 0, 0, 75, 0, 344, 128, 129, 130, 131, - 0, 0, 332, 0, 91, 97, 98, 103, 0, 0, - 112, 0, 0, 0, 217, 105, 0, 0, 208, 218, - 114, 93, 104, 113, 116, 0, 0, 0, 315, 0, - 314, 0, 0, 173, 0, 0, 174, 0, 0, 175, + 0, 0, 0, 322, 0, 0, 0, 0, 0, 0, + 0, 208, 213, 211, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 118, 120, 0, 0, + 0, 0, 0, 0, 0, 0, 201, 0, 163, 0, + 215, 220, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 138, 0, 0, 0, 0, 0, + 0, 0, 302, 0, 298, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 299, 64, 65, 0, 0, 0, 0, 0, + 67, 69, 71, 0, 0, 344, 0, 77, 0, 0, + 0, 0, 247, 21, 0, 0, 0, 0, 0, 329, + 0, 0, 90, 90, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 323, 0, 94, 0, 0, 0, + 0, 0, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 338, 0, 154, 153, 0, 0, 0, 40, 0, 0, - 0, 317, 0, 0, 0, 63, 70, 72, 0, 78, - 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, - 106, 84, 85, 126, 0, 120, 0, 0, 0, 0, - 0, 0, 202, 0, 0, 126, 0, 123, 122, 0, - 0, 0, 0, 81, 82, 0, 36, 0, 0, 0, - 38, 53, 0, 342, 0, 221, 222, 223, 224, 109, - 0, 0, 0, 0, 313, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 167, 0, 0, - 337, 155, 0, 0, 0, 0, 0, 76, 0, 0, - 0, 118, 0, 188, 0, 0, 190, 0, 0, 192, - 0, 0, 0, 203, 0, 163, 0, 126, 102, 83, - 0, 44, 0, 50, 0, 0, 0, 89, 312, 176, - 0, 0, 183, 177, 0, 0, 185, 178, 0, 0, - 187, 0, 0, 0, 169, 0, 0, 0, 0, 0, - 0, 0, 194, 0, 196, 0, 198, 204, 206, 168, - 164, 0, 41, 0, 48, 0, 0, 0, 0, 179, - 0, 0, 180, 0, 0, 181, 0, 0, 0, 42, - 0, 0, 150, 0, 0, 0, 0, 0, 0, 0, - 170, 0, 0, 0, 0, 0, 189, 0, 191, 0, - 193, 0, 43, 45, 0, 46, 0, 99, 0, 0, - 0, 0, 0, 51, 195, 197, 199, 47, 49 + 206, 0, 0, 173, 202, 0, 0, 221, 0, 135, + 134, 0, 27, 28, 0, 0, 0, 341, 0, 0, + 0, 153, 0, 0, 0, 145, 304, 144, 0, 0, + 0, 0, 317, 0, 258, 279, 265, 286, 266, 287, + 267, 288, 356, 352, 307, 0, 54, 0, 0, 0, + 0, 62, 0, 0, 0, 342, 0, 0, 0, 0, + 23, 24, 0, 0, 92, 0, 328, 0, 0, 0, + 0, 0, 95, 0, 0, 110, 111, 0, 0, 96, + 116, 324, 0, 0, 0, 0, 88, 0, 216, 0, + 0, 0, 0, 0, 0, 0, 147, 0, 0, 0, + 0, 127, 0, 183, 0, 185, 0, 187, 319, 0, + 0, 0, 0, 167, 0, 0, 100, 101, 0, 0, + 0, 0, 80, 0, 349, 306, 0, 35, 0, 0, + 0, 0, 0, 37, 0, 0, 0, 74, 0, 0, + 75, 0, 345, 129, 130, 131, 132, 0, 0, 333, + 0, 91, 97, 98, 103, 0, 0, 112, 0, 0, + 0, 218, 105, 0, 0, 209, 219, 115, 93, 104, + 113, 117, 0, 0, 0, 0, 316, 0, 315, 0, + 0, 174, 0, 0, 175, 0, 0, 176, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 339, 0, + 155, 154, 0, 0, 0, 40, 0, 0, 0, 318, + 0, 0, 0, 63, 70, 72, 0, 78, 0, 25, + 0, 0, 0, 0, 0, 0, 0, 0, 106, 0, + 84, 85, 127, 0, 121, 0, 0, 0, 0, 0, + 0, 203, 0, 0, 127, 0, 124, 123, 0, 0, + 0, 0, 81, 82, 0, 36, 0, 0, 0, 38, + 53, 0, 343, 0, 222, 223, 224, 225, 109, 0, + 0, 0, 0, 0, 314, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 168, 0, 0, + 338, 156, 0, 0, 0, 0, 0, 76, 0, 0, + 0, 0, 119, 0, 189, 0, 0, 191, 0, 0, + 193, 0, 0, 0, 204, 0, 164, 0, 127, 102, + 83, 0, 44, 0, 50, 0, 0, 0, 89, 114, + 313, 177, 0, 0, 184, 178, 0, 0, 186, 179, + 0, 0, 188, 0, 0, 0, 170, 0, 0, 0, + 0, 0, 0, 0, 195, 0, 197, 0, 199, 205, + 207, 169, 165, 0, 41, 0, 48, 0, 0, 0, + 0, 180, 0, 0, 181, 0, 0, 182, 0, 0, + 0, 42, 0, 0, 151, 0, 0, 0, 0, 0, + 0, 0, 171, 0, 0, 0, 0, 0, 190, 0, + 192, 0, 194, 0, 43, 45, 0, 46, 0, 99, + 0, 0, 0, 0, 0, 51, 196, 198, 200, 47, + 49 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { - -1, 2, 3, 59, 654, 60, 61, 397, 949, 955, - 577, 740, 1075, 1198, 578, 1166, 1224, 579, 1200, 580, - 581, 744, 126, 215, 62, 520, 987, 893, 464, 309, - 280, 281, 65, 66, 67, 68, 69, 310, 714, 1136, - 1181, 539, 1004, 1007, 1010, 1150, 1154, 1158, 1190, 1193, - 1196, 710, 711, 808, 690, 517, 543, 71, 72, 73, - 327, 129, 345, 171, 855, 856, 329, 313, 196, 645, - 771, 207, 208 + -1, 2, 3, 60, 658, 61, 62, 400, 956, 962, + 581, 745, 1084, 1210, 582, 1178, 1236, 583, 1212, 584, + 585, 749, 127, 217, 63, 523, 994, 899, 467, 311, + 282, 283, 66, 67, 68, 69, 70, 312, 719, 1147, + 1193, 543, 1012, 1015, 1018, 1162, 1166, 1170, 1202, 1205, + 1208, 715, 716, 813, 694, 520, 547, 72, 73, 74, + 329, 130, 348, 173, 861, 862, 331, 315, 198, 649, + 776, 209, 210 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -1025 +#define YYPACT_NINF -1036 static const yytype_int16 yypact[] = { - 2788, 20, 29, 2863, -1025, -1025, 1333, 38, 31, -89, - 22, 71, -64, -41, -31, 49, -27, 43, -52, 46, - 67, 128, -39, 152, 165, 215, 332, 223, 388, 167, - 179, -9, -9, 182, 268, 277, 315, 326, 19, 59, - 340, 396, 400, 420, 257, 262, 267, 16, 13, -1025, - 295, -1025, 434, 321, -1025, 460, 463, 10, 17, -1025, - -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, - -1025, -1025, -1025, -1025, -1025, 23, 310, 45, -1025, -1025, - -1025, 174, 180, 217, 313, 329, 344, 363, 379, 423, - 480, 501, 506, 509, 510, 525, 546, 551, 558, 559, - 562, 563, 348, 352, 355, 356, -1025, 464, 360, -1025, - -1025, -1025, -1025, -1025, -1025, -1025, 2170, 2170, 2170, -1025, - -1025, 2170, 1805, 8, 512, 311, 2170, 524, 1572, -1025, - 528, 538, 2170, 540, -1025, 2170, -1025, 2170, 2104, 2170, - 2170, 403, 2170, 2104, 2170, 2170, 431, 2104, 2170, 2170, - 1381, 446, 2170, 449, 461, 465, 1381, 1381, 462, 470, - 474, 484, 493, 494, 650, -9, -9, -9, 2170, 2170, - 187, -1025, 299, -9, 523, 579, 585, 1975, 301, 1381, - 1381, 513, 28, 617, -1025, 734, -1025, 618, 640, 644, - 753, 2170, 2170, 2170, 630, 2170, 667, 675, 2170, 2170, - -1025, 2170, 774, -1025, 527, -1025, -1025, 778, -1025, -1025, - 786, 670, 2170, 801, 669, -1025, -1025, 803, 2170, 2170, - 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, - 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, - 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, - 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, - 543, 543, 543, 543, 2170, 802, 580, 681, 681, 681, - 5127, 12, 2104, 4391, 171, 678, 806, 685, 682, -1025, - 680, 943, 1603, -1025, -1025, 2170, 2170, 2170, 2170, 2170, - 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, - -1025, -1025, 1918, -96, 3637, 5148, 498, 687, 2104, -1025, - -1025, 2579, -1025, 135, 5169, 5190, 2170, 5211, 297, 5232, - 5253, 2170, 544, 5274, 5295, 1510, 1195, 2605, 818, -1025, - 2170, 5316, 2170, 2170, 2170, 820, 823, 2170, 2170, 2227, - 2227, 2227, 2227, 700, -76, -1025, -1025, 3663, 3689, -9, - -9, 311, 311, 139, 2170, 2170, 2170, 1975, 1975, 2170, - 943, 383, -1025, 825, 826, 2170, 828, -1025, 2170, 2170, - 1542, -1025, 2104, 2170, 2170, -1025, 5337, 5358, 5379, 746, - 3715, -1025, 699, 2624, 5400, 4414, -1025, 2170, 833, 1799, - -1025, 1968, -1025, 2170, 4437, 80, 2170, 14, -1025, 5421, - 4460, 5442, 4483, 5463, 4506, 5484, 4529, 5505, 4552, 5526, - 4575, 5547, 4598, 5568, 4621, 5589, 4644, 5610, 4667, 5631, - 4690, 3741, 3767, 5652, 4713, 5673, 4736, 5694, 4759, 5715, - 4782, 5736, 4805, 5757, 4828, 3793, 3819, 3845, 3871, 3897, - 3923, 131, 702, 711, 712, 2300, 708, 2170, -1025, 1381, - 1381, 573, -1, 45, 2170, 839, 843, 21, 715, -1025, - -61, 195, -35, 69, -1025, -1025, 2643, 550, 741, 581, - 581, 529, 529, 529, 529, 443, 443, 681, 681, 681, - 681, -1025, 52, 2104, 2170, 844, 1940, 2170, 681, -1025, - 2170, 2104, 2104, 758, 845, 846, 5778, 859, 775, 879, - 882, 5799, 804, 886, 890, 2104, -1025, 577, 1639, 2170, - 5820, 891, 2939, 5841, 5862, 2170, 1381, 896, 2967, 5883, - 770, 6135, -1025, 771, 772, 773, 776, -9, 2170, 2170, - -1025, -1025, 767, 768, 2170, 3949, 3975, 4001, 3611, 118, - -9, 2265, 2170, 901, 2170, 5904, -1025, 4851, 4874, -1025, - 582, 4897, 4920, 902, 904, 905, 779, 2170, 2322, 2170, - 2170, -1025, 4, 4943, -1025, -1025, -1025, 4966, 390, -1025, - 2995, -1025, 784, 785, 781, -1025, 910, -1025, -1025, -1025, - -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, - -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, - -1025, -1025, -1025, -1025, 2170, 2170, -1025, -1025, -1025, -1025, - -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, 2170, 2170, - 2170, 2170, 2170, 2170, -1025, 2104, 543, -1025, -1025, -1025, - 2170, 4989, 913, 914, 789, -1025, 35, 2170, 917, 918, - 2369, -1025, 919, 793, 16, 921, -1025, 2104, 2104, 2104, - 2104, 2170, -1025, 812, 543, 141, 4027, -9, -1025, 2104, - 3023, 2662, 681, -1025, 2579, -1025, 883, 1381, 1381, 924, - 1381, 672, 1381, 1381, 926, 885, 1381, 1381, 605, -1025, - 2104, 2388, 927, 800, 934, 935, 937, 2037, -1025, -1025, - 939, 947, 950, 951, 952, 954, 956, 942, 393, 4053, - 4079, -1025, -1025, 3051, -9, -9, -9, 958, 829, 835, - -38, -1025, 402, -1025, 118, 6135, -1025, 2422, 830, 963, - 964, 922, 966, 967, 1381, 1381, 1381, 970, 4105, -1025, - 2696, 761, 971, 972, 847, 973, 974, -1025, 976, -1025, - 854, 2170, 2170, 1381, 840, -1025, 5925, 5012, 5946, 5035, - 5967, 5058, 5988, 5081, 197, 867, 6009, 36, -1025, -1025, - 103, 193, 851, 994, 2441, -1025, -1025, -1025, 16, 2170, - -1025, 608, -1025, 609, 612, 616, 620, 6135, -1025, 998, - 58, 2170, 51, 624, -1025, 2170, 868, 953, 953, 1381, - 1000, 870, 871, 1004, 1005, 1381, 876, 1008, 1009, -1025, - 627, -1025, 1012, 2170, 1381, 1381, 1381, 1015, 1014, -1025, - 1381, 1381, 1381, 1381, 1381, 1381, 353, 2170, 2170, 2170, - 887, -50, -46, 47, -1025, 1381, 2170, -1025, -1025, 1975, - -33, -1025, 2104, -1025, -1025, 889, -1025, -1025, 1016, 1017, - 945, -1025, 2170, 2170, 2170, -1025, 1025, 1027, 1031, -1025, - 80, -1025, 2170, 4131, 4157, 632, -1025, 2170, -1025, -1025, - -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, 1381, - 45, 2170, 1030, 1033, 21, -1025, 1034, 5104, 16, -1025, - 1036, 1039, 1040, 1043, -1025, -1025, 543, 4183, -1025, 923, - 6135, 2170, -9, 1044, 1045, 1046, -1025, 2170, 2170, -1025, - -1025, 1048, 2170, -1025, -1025, -1025, 1053, 4209, 1054, 1056, - 975, 2170, -1025, 1058, 1059, 1062, 1063, 1064, 1065, -1025, - 2227, 3079, 6030, 2855, 311, -9, 1066, -9, 1067, -9, - 1070, 613, 941, 6051, 3107, 416, -1025, 635, 2170, -1025, - -1025, 1381, 2883, 1159, 6072, -1025, 1768, -1025, -1025, 214, - 6135, 2170, 2170, 1381, 946, 639, 6135, 1072, 1073, 2460, - -1025, 1075, 1074, -1025, 955, -1025, -1025, -1025, -1025, -1025, - 1078, 2170, -1025, 3135, 336, -1025, -1025, -1025, 3163, 3191, - -1025, 3219, 1080, 2170, -1025, -1025, 1047, 1081, 6135, -1025, - -1025, -1025, -1025, -1025, -1025, 2488, 1085, 949, -1025, 2170, - -1025, 960, 438, -1025, 962, 442, -1025, 965, 467, -1025, - 968, 1086, 1381, 1093, 969, 2170, 1087, 3247, 1020, 2170, - -1025, 2170, -1025, -1025, 2104, 2507, 1095, -1025, 2170, 4235, - 4261, -1025, 1381, 2170, 1097, -1025, -1025, -1025, 16, -1025, - 1018, -1025, 4287, 1098, 1103, 1105, 1106, 1107, 4313, 977, - -1025, -1025, -1025, 311, 2911, -1025, 1975, 118, 1975, 118, - 1975, 118, -1025, 643, 1381, -1025, 3275, -1025, -1025, 2170, - 3303, 3331, 647, -1025, -1025, 978, 6135, 2170, 2170, 651, - 6135, -1025, 1110, -1025, 2170, -1025, -1025, -1025, -1025, -1025, - 1112, 2170, 980, 2170, -1025, 3359, 469, -8, 3387, 473, - 292, 3415, 477, 304, 1381, 1113, 1061, 2341, 983, 2526, - -1025, -1025, 1117, 2170, 6093, 4339, 24, -1025, 4365, 992, - 3443, -1025, 3471, 1123, 2170, 1124, 1126, 2170, 1127, 1128, - 2170, 1130, 999, -1025, 2170, -1025, 118, -1025, -1025, -1025, - 652, -1025, 2170, -1025, 1381, 2170, 1133, -1025, -1025, -1025, - 1003, 3499, -1025, -1025, 1006, 3527, -1025, -1025, 1007, 3555, - -1025, 1135, 2560, 327, 2392, 1139, 1010, 6114, 655, 3583, - 1013, 118, 1140, 118, 1142, 118, 1144, -1025, -1025, -1025, - -1025, 118, -1025, 543, -1025, 1019, 1145, 1147, 337, -1025, - 1021, 339, -1025, 1028, 341, -1025, 1032, 394, 660, -1025, - 1035, 1381, -1025, 1024, 1148, 118, 1151, 118, 1158, 118, - -1025, 543, 1162, 543, 661, 1164, -1025, 397, -1025, 422, - -1025, 432, -1025, -1025, 665, -1025, 1165, -1025, 1168, 1172, - 1173, 543, 1174, -1025, -1025, -1025, -1025, -1025, -1025 + 2676, 10, 44, 2753, -1036, -1036, 1309, 16, -2, -79, + 9, 56, -39, -20, 37, -43, 53, 66, -33, 75, + 144, 20, -23, 130, 224, 264, 370, 266, 226, 284, + 256, 259, -51, -51, 263, 504, 359, 365, 382, 17, + 70, 398, 447, 477, 493, 332, 356, 377, 15, 29, + -1036, 394, -1036, 509, 396, -1036, 529, 536, 13, 41, + -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, + -1036, -1036, -1036, -1036, -1036, -1036, 21, 397, 574, -1036, + -1036, -1036, 257, 313, 393, 424, 475, 483, 499, 512, + 524, 539, 554, 612, 643, 647, 656, 679, 680, 683, + 684, 690, 691, 420, 432, 436, 451, -1036, 582, 466, + -1036, -1036, -1036, -1036, -1036, -1036, -1036, 2158, 2158, 2158, + -1036, -1036, 2158, 1787, 7, 597, 339, 2158, 600, 1902, + -1036, 608, 632, 2158, 640, -1036, 2158, -1036, 2158, 2090, + 2158, 2158, 520, 2158, 2090, 2158, 2158, 542, 2090, 2158, + 2158, 1357, 547, 2158, 544, 580, 581, 1357, 1357, 564, + 631, 636, 644, 648, 651, 652, 660, -51, -51, -51, + 2158, 2158, -28, -1036, 48, -51, 567, 585, 625, 1959, + 61, 1357, 1357, 657, 26, 635, -1036, 766, -1036, 668, + 695, 708, 820, 2158, 2158, 2158, 707, 2158, 717, 754, + 2158, 2158, -1036, 2158, 851, -1036, 173, -1036, -1036, 854, + -1036, -1036, 862, 753, 2158, 874, 740, -1036, -1036, 885, + 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, + 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, + 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, + 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, + 2158, 2158, 624, 624, 624, 624, 2158, 893, 637, 771, + 771, 771, 4987, 47, 2090, 4251, 170, 775, 918, 792, + 788, -1036, 789, 2818, 2187, -1036, -1036, 2158, 2158, 2158, + 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, + 2158, 2158, -1036, -1036, 2244, 0, 2022, 5008, 566, 793, + 2090, -1036, -1036, 353, -1036, 125, 5029, 5050, 2158, 5071, + 692, 5092, 5113, 2158, 700, 5134, 5155, 1488, 1171, 2467, + 921, -1036, 2158, 5176, 2158, 2158, 2158, 926, 927, 2158, + 2158, 2215, 2215, 2215, 2215, 2158, 802, 180, -1036, -1036, + 3523, 3549, -51, -51, 339, 339, 227, 2158, 2158, 2158, + 1959, 1959, 2158, 2818, 247, -1036, 930, 931, 2158, 933, + -1036, 2158, 2158, 749, -1036, 2090, 2158, 2158, -1036, 5197, + 5218, 5239, 849, 3575, -1036, 803, 2486, 5260, 4274, -1036, + 2158, 939, 948, -1036, 998, -1036, 2158, 4297, 371, 2158, + 3, -1036, 5281, 4320, 5302, 4343, 5323, 4366, 5344, 4389, + 5365, 4412, 5386, 4435, 5407, 4458, 5428, 4481, 5449, 4504, + 5470, 4527, 5491, 4550, 3601, 3627, 5512, 4573, 5533, 4596, + 5554, 4619, 5575, 4642, 5596, 4665, 5617, 4688, 3653, 3679, + 3705, 3731, 3757, 3783, 126, 806, 813, 814, 2263, 807, + 2158, -1036, 1357, 1357, 701, 267, 574, 2158, 942, 946, + 19, 816, -1036, -15, -42, -31, 129, -1036, -1036, 2505, + 847, 1037, 614, 614, 592, 592, 592, 592, 441, 441, + 771, 771, 771, 771, -1036, 6, 2090, 2158, 945, 1924, + 2158, 771, -1036, 2158, 2090, 2090, 859, 949, 951, 5638, + 952, 883, 972, 973, 5659, 887, 975, 977, 2090, -1036, + 709, 1619, 2158, 5680, 978, 2578, 5701, 5722, 2158, 1357, + 983, 2853, 5743, 855, 6016, -1036, 856, 857, 868, 5764, + 870, -51, 2158, 2158, -1036, -1036, 872, 873, 2158, 3809, + 3835, 3861, 3497, 340, -51, 1209, 2158, 1008, 2158, 5785, + -1036, 4711, 4734, -1036, 715, 4757, 4780, 1009, 1010, 1011, + 879, 2158, 1526, 2158, 2158, -1036, -6, 4803, -1036, -1036, + -1036, 4826, 65, -1036, 2881, -1036, 888, 889, 890, -1036, + 1016, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, + -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, + -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, 2158, 2158, + -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, + -1036, -1036, 2158, 2158, 2158, 2158, 2158, 2158, -1036, 2090, + 624, -1036, -1036, -1036, 2158, 4849, 1020, 1021, 895, -1036, + 30, 2158, 1025, 1027, 2282, -1036, 1031, 906, 15, 1045, + -1036, 2090, 2090, 2090, 2090, 2158, -1036, 941, 624, 321, + 3887, -51, -1036, 2090, 2909, 2524, 771, -1036, 353, -1036, + 1013, 1357, 1357, 1057, 1357, 812, 1357, 1357, 1059, 1017, + 1357, 1357, 726, -1036, 2090, 2308, 1062, 932, 1065, 1069, + 1071, 990, -1036, -1036, 1073, 1074, 1080, 1083, 1084, 1085, + 1086, 1087, 1076, 252, 3913, 3939, -1036, -1036, 2937, -51, + -51, -51, 1089, 958, 966, -35, -1036, 327, -1036, 340, + 6016, -1036, 2327, 961, 1095, 1096, 1068, 1112, 1114, 1357, + 1357, 1357, 1118, 3965, -1036, 2548, 1583, 1119, 1120, 989, + 1121, 1122, -1036, 1123, -1036, 996, 2158, 2158, 1357, 991, + -1036, 5806, 4872, 5827, 4895, 5848, 4918, 5869, 4941, 354, + 999, 5890, 175, -1036, -1036, 103, 271, 997, 1128, 2347, + -1036, -1036, -1036, 15, 2158, -1036, 727, -1036, 731, 734, + 737, 744, 6016, -1036, 1133, 8, 2158, 42, 745, -1036, + 2158, 1001, 1088, 1088, 1357, 1136, 1004, 1006, 1140, 1141, + 1357, 1012, 1142, 1144, -1036, 748, -1036, 1160, 2158, 1357, + 1357, 1357, 1163, 1164, -1036, 1357, 1357, 1357, 1357, 1357, + 1357, 1357, 628, 2158, 2158, 2158, 1030, -82, 204, 287, + -1036, 1357, 2158, -1036, -1036, 1959, -14, -1036, 2090, -1036, + -1036, 1032, -1036, -1036, 1166, 1167, 1093, -1036, 2158, 2158, + 2158, -1036, 1170, 1172, 1173, -1036, 371, -1036, 2158, 3991, + 4017, 752, -1036, 2158, -1036, -1036, -1036, -1036, -1036, -1036, + -1036, -1036, -1036, -1036, -1036, 1357, 574, 2158, 1201, 1174, + 19, -1036, 1203, 4964, 15, -1036, 1205, 1206, 1207, 1210, + -1036, -1036, 624, 4043, -1036, 1082, 6016, 2158, -51, 1212, + 1213, 1214, -1036, 2158, 2158, -1036, -1036, 1217, 2158, -1036, + -1036, -1036, 1219, 4069, 1220, 1221, 1131, 2158, -1036, 1222, + 1223, 1224, 1225, 1226, 1227, 1153, -1036, 2215, 2965, 5911, + 2769, 339, -51, 1228, -51, 1229, -51, 1235, 317, 1104, + 5932, 2993, 373, -1036, 756, 2158, -1036, -1036, 1357, 2797, + 634, 5953, -1036, 1750, -1036, -1036, 379, 6016, 2158, 2158, + 1357, 1106, 757, 6016, 1237, 1240, 2366, -1036, 1241, 1243, + -1036, 1115, -1036, -1036, -1036, -1036, -1036, 1244, 2158, -1036, + 3021, 576, -1036, -1036, -1036, 3049, 3077, -1036, 3105, 1257, + 2158, -1036, -1036, 1233, 1258, 6016, -1036, -1036, -1036, -1036, + -1036, -1036, 1132, 2385, 1261, 1134, -1036, 2158, -1036, 1135, + 383, -1036, 1143, 470, -1036, 1145, 532, -1036, 1146, 1266, + 1357, 1267, 1147, 2158, 1275, 3133, 1194, 2158, -1036, 2158, + -1036, -1036, 2090, 2404, 1281, -1036, 2158, 4095, 4121, -1036, + 1357, 2158, 1282, -1036, -1036, -1036, 15, -1036, 1197, -1036, + 4147, 1284, 1285, 1286, 1293, 1294, 4173, 1162, -1036, 1357, + -1036, -1036, 339, 2825, -1036, 1959, 340, 1959, 340, 1959, + 340, -1036, 765, 1357, -1036, 3161, -1036, -1036, 2158, 3189, + 3217, 768, -1036, -1036, 1165, 6016, 2158, 2158, 769, 6016, + -1036, 1296, -1036, 2158, -1036, -1036, -1036, -1036, -1036, 1300, + 2158, 772, 1169, 2158, -1036, 3245, 546, -12, 3273, 559, + 131, 3301, 571, 189, 1357, 1301, 1247, 1781, 1176, 2429, + -1036, -1036, 1311, 2158, 5974, 4199, 14, -1036, 4225, 1168, + 3329, 1315, -1036, 3357, 1316, 2158, 1338, 1344, 2158, 1346, + 1347, 2158, 1348, 1215, -1036, 2158, -1036, 340, -1036, -1036, + -1036, 776, -1036, 2158, -1036, 1357, 2158, 1351, -1036, -1036, + -1036, -1036, 1218, 3385, -1036, -1036, 1230, 3413, -1036, -1036, + 1231, 3441, -1036, 1352, 2448, 244, 1952, 1353, 1253, 5995, + 777, 3469, 1255, 340, 1356, 340, 1358, 340, 1359, -1036, + -1036, -1036, -1036, 340, -1036, 624, -1036, 1256, 1388, 1391, + 316, -1036, 1259, 445, -1036, 1260, 460, -1036, 1262, 484, + 780, -1036, 1263, 1357, -1036, 1264, 1397, 340, 1399, 340, + 1400, 340, -1036, 624, 1401, 624, 781, 1403, -1036, 492, + -1036, 517, -1036, 525, -1036, -1036, 784, -1036, 1404, -1036, + 1405, 1406, 1407, 624, 1421, -1036, -1036, -1036, -1036, -1036, + -1036 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -1025, -1025, -1025, -1025, 407, -1025, -1025, -1025, -1025, 75, - -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, - -1025, -1025, -261, -4, -1025, 266, -1025, 401, 1187, 6, - -347, -105, -1025, -1025, -1025, -1025, -1025, 1188, -1025, -1025, - -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, -1025, - -1025, -713, -648, -1025, -1025, -1025, -1025, -1025, -1025, -1025, - -3, -1025, 234, -1025, -1024, 371, 303, 37, -620, 318, - -1025, -58, 1 + -1036, -1036, -1036, -1036, 578, -1036, -1036, -1036, -1036, 274, + -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, + -1036, -1036, -267, 25, -1036, 119, -1036, 641, 1425, 5, + -351, -173, -1036, -1036, -1036, -1036, -1036, 1426, -1036, -1036, + -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, -1036, + -1036, -644, -655, -1036, -1036, -1036, -1036, -1036, -1036, -1036, + -4, -1036, 141, -1036, -1035, -90, 24, 38, -626, 555, + -1036, -59, 4 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If @@ -1445,291 +1455,280 @@ static const yytype_int16 yypgoto[] = #define YYTABLE_NINF -5 static const yytype_int16 yytable[] = { - 210, 830, 127, 128, 532, 533, 635, 130, 1079, 64, - 151, 732, 274, 454, 204, 205, 146, 197, 571, 449, - 194, 204, 205, 182, 770, 643, 4, 211, 134, 5, - 1143, 707, 366, 146, 367, 482, 707, 708, 709, 761, - 483, 133, 708, 709, 349, 350, 102, 103, 104, 105, - 205, 131, 106, 102, 103, 104, 105, 888, 652, 106, - 527, 707, 828, 185, 885, 186, 137, 708, 709, 137, - 349, 350, 360, 138, 349, 350, 647, 136, 217, 370, - 132, 102, 103, 104, 105, 147, 925, 106, 926, 139, - 927, 152, 928, 572, 573, 574, 575, 275, 276, 140, - 827, 389, 649, 144, 391, 936, 112, 113, 114, 115, - 635, 166, 167, 267, 268, 269, 183, 141, 270, 273, - 1168, 168, 450, 282, 762, 763, 119, 120, 169, 302, - 1125, 279, 304, 636, 305, 311, 314, 315, 733, 317, - 311, 319, 320, 198, 311, 323, 324, 206, 876, 331, - 119, 120, 576, 195, 209, 212, 184, 213, 644, 135, - 368, 1144, 214, 119, 120, 347, 348, 349, 350, 653, - 736, 349, 350, 145, 348, 653, 148, 1214, 453, 142, - 318, 150, 828, 929, 322, 930, 143, 707, 376, 377, - 378, 637, 380, 708, 709, 383, 384, 149, 385, 149, - 870, 153, 441, 442, 443, 444, 650, 119, 120, 394, - 112, 113, 114, 115, 154, 399, 400, 401, 402, 403, - 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, - 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, - 434, 435, 436, 437, 438, 439, 440, 541, 965, 349, - 350, 445, 624, 141, 155, 170, 172, 625, 178, 311, - 455, 492, 780, 493, 159, 534, 558, 492, 112, 113, - 114, 115, 466, 467, 468, 469, 470, 471, 472, 473, - 474, 475, 476, 477, 478, 479, 480, 164, 119, 120, - 112, 113, 114, 115, 218, 488, 219, 349, 350, 451, - 220, 174, 221, 496, 175, 278, 165, 176, 501, 173, - 119, 120, 488, 311, 351, 142, 179, 510, 866, 512, - 513, 514, 648, 492, 518, 519, 521, 521, 521, 521, - 522, 522, 522, 522, 1097, 1027, 1100, 222, 1103, 223, - 1028, 535, 536, 537, 267, 268, 538, 279, 279, 919, - 920, 707, 545, 507, 180, 547, 548, 708, 709, 311, - 551, 552, 181, 707, 30, 31, 32, 33, 156, 708, - 709, 157, 37, 158, 563, 40, 187, 191, 166, 167, - 567, 569, 192, 570, 204, 205, 707, 193, 168, 344, - 188, 346, 708, 709, 189, 177, 707, 353, 707, 550, - 707, 361, 708, 709, 708, 709, 708, 709, 1082, 349, - 350, 349, 350, 1163, 190, 199, 102, 103, 104, 105, - 1128, 160, 106, 492, 161, 498, 352, 162, 362, 163, - 200, 312, 1131, 224, 631, 225, 312, 216, 638, 828, - 312, 640, 828, 201, 639, 828, 349, 350, 1188, 226, - 1191, 227, 1194, 707, 202, 1179, 707, 203, 1197, 708, - 709, 264, 708, 709, 228, 1204, 229, 1206, 260, 1208, - 311, 656, 261, 631, 660, 262, 263, 661, 662, 664, - 265, 707, 1217, 230, 1219, 231, 1221, 708, 709, 869, - 871, 707, 311, 349, 350, 662, 681, 708, 709, 232, - 738, 233, 687, 349, 350, 828, 277, 119, 120, 540, - 655, 328, 349, 350, 736, 699, 700, 335, 336, 817, - 283, 703, 1210, 316, 300, 1228, 349, 350, 829, 715, - 828, 717, 678, 828, 301, 303, 828, 204, 205, 828, - 363, 364, 1015, 234, 728, 235, 730, 731, 349, 350, - 1229, 321, 349, 350, 737, 296, 297, 298, 755, 828, - 1230, 828, 299, 828, 1056, 312, 330, 1001, 1058, 102, - 103, 104, 105, 530, 531, 106, 332, 349, 350, 349, - 350, 333, 346, 349, 350, 334, 779, 349, 350, 337, - 338, 746, 747, 1060, 339, 1124, 523, 524, 525, 1127, - 236, 489, 237, 1130, 340, 748, 749, 750, 751, 752, - 753, 490, 311, 341, 342, 119, 120, 756, 489, 312, - 486, 238, 213, 239, 764, 125, 240, 214, 241, 242, - 244, 243, 245, 365, 311, 311, 311, 311, 777, 294, - 295, 296, 297, 298, 343, 246, 311, 247, 299, 387, - 354, 388, 754, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 312, 248, 311, 249, 299, - 492, 250, 502, 251, 773, 774, 775, 776, 252, 254, - 253, 255, 256, 258, 257, 259, 783, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 1092, 119, 120, 492, - 299, 634, 447, 492, 213, 679, 355, 800, 492, 214, - 721, 791, 356, 792, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 508, 297, 298, 853, 854, - 371, 492, 299, 799, 878, 492, 879, 880, 492, 369, - 881, 1011, 492, 737, 882, 372, 492, 872, 883, 375, - 492, 698, 889, 492, 379, 905, 877, 382, 953, 844, - 954, 492, 373, 1016, 712, 1033, 374, 1034, 887, 1104, - 386, 1105, 890, 492, 390, 1112, 312, 953, 1033, 1116, - 1165, 953, 392, 1185, 663, 665, 1211, 953, 1212, 1226, - 907, 1231, 393, 1232, 381, 395, 396, 446, 312, 398, - 299, 663, 456, 457, 921, 922, 923, 458, 459, 125, - 632, 633, 931, 933, 487, 509, 934, 515, 970, 311, - 516, 526, 542, 544, 546, 556, 559, 564, 626, 942, - 943, 944, 627, 628, 630, 641, 948, 642, 646, 950, - 666, 657, 667, 668, 956, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 670, 671, 959, 937, - 299, 958, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 672, 688, 973, 673, - 299, 782, 845, 676, 978, 979, 675, 677, 683, 981, - 689, 693, 694, 695, 696, 701, 702, 716, 988, 724, - 697, 725, 726, 727, 741, 742, 745, 995, 743, 758, - 759, 996, 760, 765, 766, 769, 768, 772, 312, 778, - 279, 789, 786, 795, 802, 1017, 796, 803, 821, 822, - 823, 804, 805, 1025, 806, 809, 816, 1026, 1029, 1030, - 312, 312, 312, 312, 810, 7, 8, 811, 812, 813, - 1107, 814, 312, 815, 824, 826, 825, 832, 1042, 833, - 834, 835, 836, 837, 841, 846, 847, 857, 850, 849, - 1048, 848, 851, 312, 852, 873, 460, 13, 14, 461, - 16, 17, 462, 19, 463, 21, 1054, 22, 867, 24, - 25, 874, 27, 28, 884, 891, 896, 897, 898, 892, - 899, 900, 1066, 902, 903, 904, 1070, 906, 1071, 911, - 912, 311, 939, 940, 924, 1076, 938, 44, 45, 46, - 1080, 945, 1164, 941, 946, 947, 960, 961, 787, 788, - 963, 790, 966, 793, 794, 967, 968, 797, 798, 969, - 975, 976, 977, 1095, 980, 1098, 972, 1101, 982, 279, - 984, 1072, 985, 935, 989, 990, 1109, 986, 991, 992, - 993, 994, 1003, 1006, 1114, 1115, 1009, 1012, 1035, 1036, - 1039, 1118, 1038, 1032, 1041, 1047, 1053, 1050, 1120, 1040, - 1122, 1052, 1062, 1067, 1049, 838, 839, 840, 1055, 1057, - 1064, 1074, 1059, 1081, 1085, 1061, 1065, 1069, 1083, 1086, - 956, 1087, 1088, 1089, 1091, 1113, 1117, 1119, 1121, 1133, - 1137, 1151, 1134, 1139, 1155, 1199, 974, 1159, 1146, 1149, - 1152, 1162, 1153, 1156, 1157, 312, 1160, 1161, 1170, 1167, - 1171, 1177, 1169, 1173, 1175, 1182, 1189, 1183, 1192, 1187, - 1195, 1202, 1203, 1222, 1216, 1225, 1201, 1218, 1205, 1002, - 895, 1005, 1215, 1008, 1220, 1207, 901, 1021, 1223, 1209, - 1227, 1233, 1213, 1237, 1234, 908, 909, 910, 1235, 1236, - 1238, 913, 914, 915, 916, 917, 918, 886, 1140, 894, - 63, 70, 962, 0, 0, 0, 932, 0, 74, 306, - 0, 0, 0, 0, 78, 79, 80, 0, 0, 81, - 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, - 0, 0, 0, 0, 0, 0, 0, 0, 307, 0, - 957, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 30, 31, - 32, 33, 34, 0, 0, 0, 37, 0, 0, 40, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 1096, 0, 1099, 0, 1102, 0, 0, 1022, 108, 109, - 110, 111, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1018, 0, 0, 116, 308, 0, 0, 0, - 118, 0, 0, 0, 1031, 121, 0, 312, 0, 0, - 124, 0, 0, 506, 0, 0, 74, 75, 76, 0, - 77, 0, 78, 79, 80, 0, 0, 81, 82, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, - 94, 95, 96, 97, 98, 99, 100, 101, 0, 102, - 103, 104, 105, 0, 0, 106, 0, 0, 0, 0, - 0, 0, 0, 1063, 74, 306, 0, 0, 0, 0, - 78, 79, 80, 0, 0, 81, 82, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, - 96, 97, 98, 99, 100, 101, 0, 0, 0, 0, - 0, 0, 0, 0, 307, 0, 0, 0, 0, 0, - 107, 0, 0, 0, 0, 1106, 108, 109, 110, 111, - 112, 113, 114, 115, 30, 31, 32, 33, 34, 0, - 0, 0, 37, 116, 117, 40, 0, 0, 118, 0, - 119, 120, 0, 121, 0, 122, 0, 123, 124, 0, - 125, 0, 0, 0, 0, 1132, 0, 0, 0, 0, - 0, 0, 0, 0, 108, 109, 110, 111, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 116, 325, 0, 0, 0, 118, 0, 0, 0, - 0, 121, 0, 74, 306, 0, 124, 0, 326, 78, - 79, 80, 0, 0, 81, 82, 83, 84, 85, 86, + 212, 737, 129, 536, 537, 1088, 363, 575, 65, 457, + 131, 276, 656, 373, 891, 135, 4, 206, 207, 196, + 1154, 184, 775, 647, 1101, 213, 152, 142, 142, 132, + 369, 128, 370, 199, 766, 392, 712, 147, 394, 147, + 352, 353, 713, 714, 5, 206, 207, 133, 894, 103, + 104, 105, 106, 134, 452, 107, 932, 712, 933, 712, + 834, 330, 137, 713, 714, 713, 714, 337, 338, 206, + 207, 168, 169, 151, 187, 836, 188, 103, 104, 105, + 106, 170, 219, 107, 576, 577, 578, 579, 171, 143, + 143, 366, 367, 138, 352, 353, 144, 652, 277, 278, + 139, 103, 104, 105, 106, 833, 148, 107, 653, 153, + 639, 354, 140, 269, 270, 271, 185, 138, 272, 275, + 1180, 767, 768, 284, 651, 657, 943, 657, 1136, 304, + 738, 281, 306, 485, 307, 313, 316, 317, 486, 319, + 313, 321, 322, 580, 313, 325, 326, 882, 136, 333, + 120, 121, 208, 1155, 197, 214, 186, 215, 648, 453, + 371, 200, 216, 314, 352, 353, 350, 351, 314, 141, + 352, 353, 314, 172, 174, 351, 180, 456, 1226, 154, + 211, 834, 320, 352, 353, 145, 324, 355, 641, 379, + 380, 381, 545, 383, 120, 121, 386, 387, 146, 388, + 365, 741, 712, 444, 445, 446, 447, 149, 713, 714, + 397, 562, 113, 114, 115, 116, 402, 403, 404, 405, + 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, + 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, + 436, 437, 438, 439, 440, 441, 442, 443, 972, 628, + 712, 150, 448, 495, 629, 496, 713, 714, 654, 161, + 313, 1139, 162, 155, 639, 163, 150, 164, 876, 113, + 114, 115, 116, 469, 470, 471, 472, 473, 474, 475, + 476, 477, 478, 479, 480, 481, 482, 483, 314, 120, + 121, 458, 352, 353, 120, 121, 491, 390, 347, 391, + 349, 741, 454, 156, 499, 712, 356, 160, 531, 504, + 364, 713, 714, 491, 313, 493, 352, 353, 513, 1142, + 515, 516, 517, 165, 492, 521, 522, 524, 524, 524, + 524, 529, 934, 280, 935, 525, 525, 525, 525, 352, + 353, 492, 314, 539, 540, 541, 269, 270, 542, 281, + 281, 493, 636, 637, 549, 538, 510, 551, 552, 352, + 353, 313, 555, 556, 352, 353, 113, 114, 115, 116, + 113, 114, 115, 116, 1191, 544, 567, 712, 166, 220, + 823, 221, 571, 713, 714, 574, 120, 121, 167, 314, + 120, 121, 175, 640, 31, 32, 33, 34, 181, 352, + 353, 712, 38, 554, 182, 41, 157, 713, 714, 158, + 1091, 159, 1107, 573, 1110, 936, 1113, 937, 183, 692, + 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, + 297, 511, 299, 300, 189, 222, 635, 223, 301, 352, + 353, 190, 834, 644, 785, 834, 1216, 1019, 834, 495, + 643, 526, 527, 528, 193, 835, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 494, 299, 300, + 642, 191, 313, 660, 301, 635, 664, 872, 194, 665, + 666, 668, 495, 534, 535, 352, 353, 192, 875, 877, + 120, 121, 349, 1175, 313, 352, 353, 666, 685, 195, + 314, 1023, 1035, 743, 691, 202, 712, 1036, 667, 669, + 834, 1065, 713, 714, 659, 224, 201, 225, 704, 705, + 203, 712, 314, 204, 708, 667, 218, 713, 714, 1200, + 205, 1203, 720, 1206, 722, 834, 682, 176, 834, 1209, + 177, 834, 262, 178, 834, 712, 226, 733, 227, 735, + 736, 713, 714, 712, 263, 298, 299, 300, 264, 713, + 714, 760, 301, 1229, 834, 1231, 834, 1233, 834, 207, + 1009, 792, 793, 265, 795, 1218, 798, 799, 712, 266, + 802, 803, 352, 353, 713, 714, 712, 742, 267, 784, + 1220, 279, 713, 714, 751, 752, 285, 228, 1067, 229, + 103, 104, 105, 106, 302, 230, 107, 231, 753, 754, + 755, 756, 757, 758, 1222, 313, 168, 169, 206, 207, + 761, 232, 1240, 233, 926, 927, 170, 769, 303, 844, + 845, 846, 1029, 179, 234, 305, 235, 313, 313, 313, + 313, 782, 318, 314, 352, 353, 236, 1241, 237, 313, + 103, 104, 105, 106, 346, 1242, 107, 759, 352, 353, + 1069, 238, 703, 239, 323, 314, 314, 314, 314, 332, + 313, 352, 353, 334, 1135, 717, 240, 314, 241, 778, + 779, 780, 781, 352, 353, 120, 121, 1138, 352, 353, + 489, 788, 215, 339, 901, 126, 357, 216, 314, 1141, + 907, 1102, 335, 336, 296, 297, 298, 299, 300, 914, + 915, 916, 805, 301, 358, 919, 920, 921, 922, 923, + 924, 925, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 939, 859, 860, 242, 301, 243, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 7, 8, 340, 359, 301, 120, 121, 341, 372, + 883, 450, 374, 215, 1030, 244, 342, 245, 216, 246, + 343, 247, 893, 344, 345, 964, 896, 742, 248, 368, + 249, 878, 463, 13, 14, 464, 16, 17, 465, 19, + 466, 21, 787, 22, 913, 24, 25, 375, 27, 28, + 29, 250, 252, 251, 253, 254, 256, 255, 257, 928, + 929, 930, 258, 260, 259, 261, 378, 938, 940, 376, + 495, 941, 501, 977, 313, 45, 46, 47, 495, 495, + 505, 638, 377, 382, 949, 950, 951, 495, 385, 683, + 827, 828, 829, 495, 957, 726, 384, 389, 1026, 963, + 393, 796, 314, 797, 495, 884, 804, 885, 395, 495, + 1039, 886, 495, 966, 887, 495, 944, 888, 398, 399, + 965, 955, 495, 495, 889, 895, 495, 396, 911, 553, + 960, 401, 961, 980, 495, 1041, 1024, 1042, 449, 985, + 986, 1117, 301, 1114, 988, 1115, 495, 960, 1122, 1126, + 960, 459, 1131, 995, 1041, 960, 1177, 1197, 1223, 960, + 1224, 1238, 1243, 1003, 1244, 460, 461, 126, 512, 462, + 1072, 1004, 490, 518, 519, 530, 281, 546, 548, 550, + 560, 1025, 563, 568, 630, 634, 631, 632, 645, 1033, + 646, 650, 661, 670, 1037, 1038, 671, 1034, 672, 674, + 7, 8, 289, 290, 291, 292, 293, 294, 295, 296, + 297, 298, 299, 300, 1050, 1176, 942, 675, 301, 676, + 677, 679, 680, 1116, 681, 687, 1056, 693, 697, 698, + 699, 463, 13, 14, 464, 16, 17, 465, 19, 466, + 21, 700, 22, 1063, 24, 25, 702, 27, 28, 29, + 7, 8, 706, 707, 721, 732, 729, 730, 731, 1075, + 746, 747, 750, 1079, 1143, 1080, 763, 764, 313, 748, + 765, 770, 1085, 771, 45, 46, 47, 1089, 773, 981, + 774, 463, 13, 14, 464, 16, 17, 465, 19, 466, + 21, 777, 22, 812, 24, 25, 314, 27, 28, 29, + 783, 1105, 791, 1108, 794, 1111, 800, 281, 801, 807, + 1081, 808, 809, 1010, 1119, 1013, 810, 1016, 811, 814, + 822, 815, 1124, 1125, 45, 46, 47, 816, 569, 1128, + 817, 818, 819, 820, 821, 830, 1130, 831, 832, 1133, + 838, 839, 840, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 841, 842, 963, + 843, 301, 847, 852, 853, 854, 856, 855, 858, 857, + 863, 1163, 873, 879, 1167, 880, 1211, 1171, 570, 890, + 897, 1174, 902, 903, 898, 904, 905, 906, 909, 1179, + 910, 908, 1181, 290, 291, 292, 293, 294, 295, 296, + 297, 298, 299, 300, 1234, 912, 1237, 917, 301, 931, + 918, 945, 946, 947, 75, 308, 952, 954, 968, 953, + 79, 80, 81, 948, 1249, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, - 97, 98, 99, 100, 101, 0, 0, 0, 0, 0, - 0, 0, 0, 307, 7, 8, 0, 0, 0, 0, + 97, 98, 99, 100, 101, 102, 1106, 967, 1109, 970, + 1112, 973, 974, 975, 309, 1002, 976, 979, 982, 983, + 984, 7, 8, 987, 989, 993, 991, 992, 996, 997, + 998, 999, 1000, 1001, 1011, 1014, 31, 32, 33, 34, + 35, 1017, 1020, 1043, 38, 1040, 1044, 41, 1046, 1047, + 1049, 1048, 463, 13, 14, 464, 16, 17, 465, 19, + 466, 21, 1055, 22, 1058, 24, 25, 1061, 27, 28, + 29, 1059, 1071, 1062, 1073, 1064, 109, 110, 111, 112, + 1057, 1076, 1066, 1078, 1068, 1070, 1074, 1083, 1090, 1092, + 1094, 1095, 1096, 117, 310, 45, 46, 47, 119, 1097, + 1098, 1100, 1127, 122, 1123, 1129, 1157, 1144, 125, 1132, + 1145, 509, 75, 76, 77, 1148, 78, 1150, 79, 80, + 81, 1159, 1161, 82, 83, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, + 99, 100, 101, 102, 1164, 103, 104, 105, 106, 718, + 1165, 107, 1168, 1169, 1172, 1173, 1182, 1183, 1189, 1194, + 75, 308, 1201, 892, 1204, 1207, 79, 80, 81, 1185, + 1187, 82, 83, 84, 85, 86, 87, 88, 89, 90, + 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, + 101, 102, 1195, 1199, 1214, 1213, 1215, 1151, 1217, 1219, + 309, 1221, 1225, 1228, 1227, 1230, 1232, 1235, 108, 1239, + 1245, 1246, 1247, 1248, 109, 110, 111, 112, 113, 114, + 115, 116, 31, 32, 33, 34, 35, 1250, 64, 71, + 38, 117, 118, 41, 900, 969, 119, 0, 120, 121, + 0, 122, 0, 123, 0, 124, 125, 0, 126, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 109, 110, 111, 112, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, + 327, 0, 0, 0, 119, 0, 0, 0, 0, 122, + 0, 75, 308, 0, 125, 0, 328, 79, 80, 81, + 0, 0, 82, 83, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, + 100, 101, 102, 0, 0, 0, 0, 0, 0, 0, + 0, 309, 0, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 30, 31, 32, 33, 34, 284, 0, - 0, 37, 0, 0, 40, 460, 13, 14, 461, 16, - 17, 462, 19, 463, 21, 0, 22, 0, 24, 25, - 0, 27, 28, 0, 0, 0, 0, 0, 0, 465, - 0, 0, 0, 108, 109, 110, 111, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 44, 45, 46, 0, - 116, 308, 0, 0, 0, 118, 0, 0, 0, 0, - 121, 0, 74, 306, 0, 124, 0, 505, 78, 79, - 80, 0, 0, 81, 82, 83, 84, 85, 86, 87, + 0, 0, 0, 31, 32, 33, 34, 35, 0, 0, + 0, 38, 0, 0, 41, 0, 0, 0, 0, 463, + 13, 14, 464, 16, 17, 465, 19, 466, 21, 0, + 22, 0, 24, 25, 0, 27, 28, 29, 0, 0, + 0, 850, 0, 109, 110, 111, 112, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 117, 310, 45, 46, 47, 119, 0, 0, 0, 0, + 122, 0, 75, 308, 0, 125, 0, 508, 79, 80, + 81, 0, 0, 82, 83, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, + 99, 100, 101, 102, 0, 0, 0, 0, 0, 0, + 0, 0, 309, 0, 0, 0, 734, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 31, 32, 33, 34, 35, 0, + 0, 0, 38, 0, 0, 41, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 851, 0, 0, 0, + 0, 0, 0, 0, 109, 110, 111, 112, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 117, 310, 0, 0, 0, 119, 0, 0, 0, + 0, 122, 0, 75, 268, 207, 125, 0, 684, 79, + 80, 81, 0, 0, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, - 98, 99, 100, 101, 0, 0, 0, 0, 0, 0, - 549, 0, 307, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 30, 31, 32, 33, 34, 0, 0, 0, - 37, 0, 0, 40, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 108, 109, 110, 111, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, - 308, 0, 0, 0, 118, 0, 0, 0, 0, 121, - 0, 74, 266, 205, 124, 0, 680, 78, 79, 80, - 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, + 98, 99, 100, 101, 102, 0, 103, 104, 105, 106, + 75, 268, 107, 7, 8, 0, 79, 80, 81, 0, + 0, 82, 83, 84, 85, 86, 87, 88, 89, 90, + 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, + 101, 102, 0, 0, 463, 13, 14, 464, 16, 17, + 465, 19, 466, 21, 0, 22, 0, 24, 25, 0, + 27, 28, 29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 109, 110, 111, 112, 0, + 0, 0, 0, 0, 0, 0, 0, 45, 46, 47, + 0, 0, 117, 118, 0, 0, 0, 119, 0, 0, + 0, 0, 122, 0, 0, 0, 0, 125, 0, 1032, + 0, 0, 109, 110, 111, 112, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 286, 117, + 118, 0, 0, 0, 119, 0, 0, 0, 0, 122, + 0, 1146, 273, 0, 125, 0, 274, 75, 268, 0, + 0, 0, 0, 79, 80, 81, 0, 0, 82, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, + 94, 95, 96, 97, 98, 99, 100, 101, 102, 0, + 0, 0, 75, 268, 7, 8, 0, 0, 79, 80, + 81, 0, 0, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, - 99, 100, 101, 0, 102, 103, 104, 105, 74, 266, - 106, 7, 8, 0, 78, 79, 80, 0, 0, 81, - 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, - 0, 0, 460, 13, 14, 461, 16, 17, 462, 19, - 463, 21, 0, 22, 0, 24, 25, 0, 27, 28, + 99, 100, 101, 102, 0, 463, 13, 14, 464, 16, + 17, 465, 19, 466, 21, 0, 22, 0, 24, 25, + 0, 27, 28, 29, 0, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 109, + 110, 111, 112, 301, 0, 0, 0, 0, 45, 46, + 47, 0, 0, 0, 0, 0, 117, 118, 0, 0, + 0, 119, 0, 0, 0, 0, 122, 0, 0, 662, + 0, 125, 0, 663, 109, 110, 111, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 108, 109, 110, 111, 0, 0, 0, 0, 0, - 0, 0, 0, 44, 45, 46, 0, 0, 116, 117, - 0, 0, 0, 118, 0, 0, 0, 0, 121, 0, - 0, 0, 0, 124, 0, 1024, 0, 0, 108, 109, - 110, 111, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 481, 116, 117, 0, 0, 0, - 118, 0, 0, 0, 0, 121, 0, 565, 271, 0, - 124, 0, 272, 74, 266, 0, 0, 0, 0, 78, - 79, 80, 0, 0, 81, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, - 97, 98, 99, 100, 101, 0, 0, 0, 74, 266, - 7, 8, 0, 0, 78, 79, 80, 0, 0, 81, - 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, - 0, 460, 13, 14, 461, 16, 17, 462, 19, 463, - 21, 0, 22, 0, 24, 25, 0, 27, 28, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 108, 109, 110, 111, 299, 0, 0, - 0, 0, 44, 45, 46, 0, 0, 0, 0, 0, - 116, 117, 0, 0, 0, 118, 0, 0, 0, 0, - 121, 0, 0, 658, 0, 124, 0, 659, 108, 109, - 110, 111, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 357, 358, 0, 807, 0, - 118, 0, 0, 0, 0, 359, 566, 74, 306, 0, - 124, 0, 169, 78, 79, 80, 0, 0, 81, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, - 93, 94, 95, 96, 97, 98, 99, 100, 101, 0, - 0, 0, 0, 0, 0, 0, 0, 307, 285, 286, - 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 30, 31, 32, - 33, 34, 0, 74, 266, 37, 0, 0, 40, 78, - 79, 80, 0, 0, 81, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, - 97, 98, 99, 100, 101, 0, 0, 108, 109, 110, - 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 116, 308, 0, 0, 0, 118, - 74, 266, 205, 0, 121, 0, 78, 79, 80, 124, - 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, + 0, 360, 361, 0, 0, 0, 119, 0, 0, 0, + 0, 362, 1192, 75, 308, 0, 125, 0, 171, 79, + 80, 81, 0, 0, 82, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, + 98, 99, 100, 101, 102, 0, 0, 0, 0, 0, + 0, 0, 0, 309, 0, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 0, 0, 0, 301, 0, 31, 32, 33, 34, 35, + 487, 75, 268, 38, 0, 0, 41, 79, 80, 81, + 0, 0, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, - 100, 101, 0, 102, 103, 104, 105, 0, 0, 106, - 0, 0, 0, 108, 109, 110, 111, 7, 8, 0, + 100, 101, 102, 468, 0, 109, 110, 111, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 116, 117, 0, 0, 0, 118, 0, 0, 0, 0, - 121, 0, 0, 0, 0, 124, 629, 0, 460, 13, - 14, 461, 16, 17, 462, 19, 463, 21, 0, 22, - 0, 24, 25, 0, 27, 28, 0, 0, 0, 0, - 108, 109, 110, 111, 7, 8, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 116, 117, 44, - 45, 46, 118, 7, 8, 0, 0, 121, 0, 0, - 0, 0, 124, 0, 0, 460, 13, 14, 461, 16, - 17, 462, 19, 463, 21, 767, 22, 0, 24, 25, - 0, 27, 28, 0, 460, 13, 14, 461, 16, 17, - 462, 19, 463, 21, 801, 22, 0, 24, 25, 0, - 27, 28, 0, 713, 7, 8, 44, 45, 46, 0, - 0, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 44, 45, 46, 831, 299, - 0, 0, 0, 0, 0, 460, 13, 14, 461, 16, - 17, 462, 19, 463, 21, 0, 22, 875, 24, 25, - 0, 27, 28, 0, 0, 0, 0, 0, 0, 0, - 729, 0, 0, 0, 0, 0, 1037, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 44, 45, 46, 1135, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 1051, 0, 0, 0, 299, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 1073, 0, 0, 0, 299, 0, 0, + 0, 0, 117, 310, 0, 0, 0, 119, 75, 268, + 207, 0, 122, 0, 79, 80, 81, 125, 0, 82, + 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, + 484, 103, 104, 105, 106, 0, 0, 107, 0, 0, + 0, 0, 0, 109, 110, 111, 112, 0, 0, 633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1180, 0, 1138, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 1178, 0, 0, 0, - 299, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 490, 0, 299, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 490, 0, 0, 0, 299, 285, 286, + 117, 118, 0, 0, 0, 119, 0, 0, 772, 0, + 122, 0, 0, 0, 0, 125, 0, 0, 0, 0, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 560, 0, 0, 0, 299, 285, 286, 287, + 297, 298, 299, 300, 806, 0, 0, 0, 301, 0, + 109, 110, 111, 112, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 837, 0, 0, 0, 117, 118, 0, + 0, 0, 119, 0, 0, 0, 0, 122, 0, 0, + 0, 0, 125, 881, 0, 0, 0, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 1045, 0, 0, 301, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 1060, 0, 0, 301, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 1082, 0, 0, 301, 0, 0, 0, 0, 0, 0, + 0, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 1149, 0, 0, 0, 301, + 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, + 297, 298, 299, 300, 1190, 0, 0, 0, 301, 0, + 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, + 297, 298, 299, 300, 0, 493, 0, 0, 301, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 651, 0, 0, 0, 299, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 785, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 0, 0, 299, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 491, 297, 298, 843, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 0, 285, 286, 287, 288, - 289, 290, 291, 292, 293, 294, 295, 508, 297, 298, - 0, 0, 0, 0, 299, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, -4, 1, - 0, 299, -4, 0, 0, 0, 0, 0, 0, 0, - -4, -4, 0, 0, 0, 0, 0, 285, 286, 287, + 298, 299, 300, 0, 564, 0, 0, 301, 287, 288, + 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, + 299, 300, 0, 655, 0, 0, 301, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 790, 0, 0, 301, 0, 0, 0, 0, + 0, 0, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 849, 0, 0, 0, + 301, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, + 297, 511, 299, 300, 0, 0, 0, 0, 301, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 0, 0, -4, 0, 299, 0, 0, -4, -4, - 0, -4, -4, -4, -4, -4, -4, -4, -4, -4, - -4, 0, -4, -4, -4, -4, -4, -4, -4, 0, + 298, 299, 300, 0, 0, 0, 0, 301, 287, 288, + 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, + 299, 300, 0, 0, 0, 0, 301, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 0, 0, 0, + 0, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, -4, 1, 0, 301, + -4, 0, 0, 0, 0, 0, 0, 0, -4, -4, + 0, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 0, -4, 0, 0, 0, 0, -4, -4, 688, -4, + -4, -4, -4, -4, -4, -4, -4, -4, -4, 0, + -4, -4, -4, -4, -4, -4, -4, -4, 0, 0, -4, -4, -4, -4, -4, -4, 0, -4, -4, -4, -4, -4, -4, 0, 0, -4, -4, 6, 0, 0, 0, -4, -4, -4, -4, 7, 8, -4, 0, -4, @@ -1737,1102 +1736,1091 @@ static const yytype_int16 yytable[] = -4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 10, 11, 0, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 0, 22, 23, 24, - 25, 26, 27, 28, 0, 29, 30, 31, 32, 33, - 34, 0, 35, 36, 37, 38, 39, 40, 0, 0, - 41, 42, 0, 0, 0, 0, 43, 44, 45, 46, - 0, 0, 47, 0, 48, 0, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 285, 286, 287, 288, - 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 999, 0, 1000, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 1019, - 0, 1020, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 1093, 0, 1094, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 0, 0, 684, 285, 286, + 25, 26, 27, 28, 29, 0, 0, 30, 31, 32, + 33, 34, 35, 0, 36, 37, 38, 39, 40, 41, + 7, 8, 42, 43, 0, 0, 0, 0, 44, 45, + 46, 47, 0, 0, 48, 0, 49, 0, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 0, 0, + 0, 463, 13, 14, 464, 16, 17, 465, 19, 466, + 21, 0, 22, 0, 24, 25, 0, 27, 28, 29, + 0, 0, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 45, 46, 47, 1007, 0, 1008, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 0, 0, 691, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 1027, 0, 1028, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 0, 0, 739, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 0, - 0, 784, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 0, 0, 820, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 0, 0, 997, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 1103, 0, 1104, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 0, 0, 695, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 0, + 0, 744, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 0, 0, 789, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 0, 0, 1014, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 0, 0, 826, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 0, 0, 1043, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 0, - 0, 1044, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 0, 0, 1045, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 0, 0, 1046, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 0, 0, 1005, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 0, 0, 1022, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 0, + 0, 1051, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 0, 0, 1052, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 0, 0, 1068, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 0, 0, 1053, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 0, 0, 1108, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 0, - 0, 1110, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 0, 0, 1111, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 0, 0, 1123, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 0, 0, 1054, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 0, 0, 1077, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 0, + 0, 1118, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 0, 0, 1120, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 0, 0, 1126, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 0, 0, 1121, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 0, 0, 1129, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 0, - 0, 1147, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 0, 0, 1148, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 0, 0, 1172, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 0, 0, 1134, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 0, 0, 1137, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 0, + 0, 1140, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 0, 0, 1158, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 0, 0, 1174, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 0, 0, 1160, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 0, 0, 1176, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 0, - 0, 1186, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 448, 0, 0, 0, 0, 528, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 0, 0, 1184, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 0, 0, 1186, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 0, + 0, 1188, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 0, 0, 1198, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 484, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 528, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 529, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 451, 0, 0, 0, 0, 532, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 532, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 533, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 557, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 604, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 561, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 608, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 605, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 618, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 619, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 609, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 622, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 623, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 620, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 621, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 624, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 625, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 622, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 623, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 704, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 626, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 627, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 709, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 705, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 706, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 710, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 711, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 781, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 818, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 819, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 786, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 824, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 825, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 842, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 951, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 848, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 958, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 952, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 971, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 983, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 959, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 978, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 990, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 1077, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 1078, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 1086, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 0, 0, 0, 1087, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 0, 0, 0, 1084, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 0, 0, 0, 1090, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 0, 0, 0, 1142, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 0, 0, 0, 1093, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, + 0, 1099, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 0, 0, 0, 1153, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, - 0, 1145, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 452, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 0, 0, 0, 562, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 0, 0, 0, 1156, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 455, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 0, 0, 566, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 568, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 0, 0, 299, - 0, 0, 0, 583, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 585, 285, 286, 287, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 572, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 0, 0, 0, + 0, 301, 0, 0, 0, 587, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 589, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 0, 0, 0, 0, 299, 0, 0, 0, 587, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 589, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 0, 0, 0, 591, 285, 286, 287, 288, + 298, 299, 300, 0, 0, 0, 0, 301, 0, 0, + 0, 591, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 593, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 0, 0, 0, 301, 0, 0, 0, 595, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 593, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 0, 0, 0, 0, 299, 0, 0, - 0, 595, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 597, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 0, 0, 0, 599, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 597, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 0, 0, 0, 599, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 601, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 0, 0, 603, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 601, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 0, 0, 299, - 0, 0, 0, 603, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 607, 285, 286, 287, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 605, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 0, 0, 0, + 0, 301, 0, 0, 0, 607, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 611, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 0, 0, 0, 0, 299, 0, 0, 0, 609, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 611, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 0, 0, 0, 613, 285, 286, 287, 288, + 298, 299, 300, 0, 0, 0, 0, 301, 0, 0, + 0, 613, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 615, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 0, 0, 0, 301, 0, 0, 0, 617, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 615, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 0, 0, 0, 0, 299, 0, 0, - 0, 617, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 719, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 0, 0, 0, 720, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 619, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 0, 0, 0, 621, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 724, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 0, 0, 725, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 0, 0, - 722, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 0, 0, 299, - 0, 0, 0, 723, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 0, 0, 734, 285, 286, 287, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 0, 0, 727, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 0, 0, 0, + 0, 301, 0, 0, 0, 728, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 0, 0, 739, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 0, 0, 0, 0, 299, 0, 0, 0, 735, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 0, 0, 757, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 0, 0, 0, 859, 285, 286, 287, 288, + 298, 299, 300, 0, 0, 0, 0, 301, 0, 0, + 0, 740, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 0, 0, 762, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 0, 0, 0, 301, 0, 0, 0, 865, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 0, 0, 861, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 0, 0, 0, 0, 299, 0, 0, - 0, 863, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 0, 0, 865, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 0, 0, 0, 964, 285, 286, + 299, 300, 0, 0, 0, 0, 301, 0, 0, 0, + 867, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 0, 0, 0, 869, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 0, 0, 871, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 0, 0, 971, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 448, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 0, 0, 0, 0, 299, 0, 485, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 494, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 0, 0, 299, - 0, 495, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 497, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 0, 499, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 500, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 0, 503, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 451, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 0, 488, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 497, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 0, 0, 0, + 0, 301, 0, 498, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 500, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 0, 0, 0, 301, 0, 502, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 503, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 506, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 504, 285, 286, 287, + 299, 300, 0, 0, 0, 0, 301, 0, 507, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 0, 0, 0, 0, 299, 0, 511, 285, 286, + 298, 299, 300, 0, 0, 0, 0, 301, 0, 514, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 553, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 0, 0, 0, 0, 299, 0, 554, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 555, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 0, 0, 299, - 0, 561, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 582, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 0, 584, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 586, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 0, 588, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 557, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 0, 558, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 559, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 0, 0, 0, + 0, 301, 0, 565, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 586, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 0, 0, 0, 301, 0, 588, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 590, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 592, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 590, 285, 286, 287, + 299, 300, 0, 0, 0, 0, 301, 0, 594, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 0, 0, 0, 0, 299, 0, 592, 285, 286, + 298, 299, 300, 0, 0, 0, 0, 301, 0, 596, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 594, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 0, 0, 0, 0, 299, 0, 596, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 598, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 0, 0, 299, - 0, 600, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 602, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 0, 606, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 608, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 0, 610, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 598, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 0, 600, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 602, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 0, 0, 0, + 0, 301, 0, 604, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 606, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 0, 0, 0, 301, 0, 610, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 612, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 614, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 612, 285, 286, 287, + 299, 300, 0, 0, 0, 0, 301, 0, 616, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 0, 0, 0, 0, 299, 0, 614, 285, 286, + 298, 299, 300, 0, 0, 0, 0, 301, 0, 618, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 616, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 0, 0, 0, 0, 299, 0, 669, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 674, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 0, 0, 299, - 0, 682, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 685, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 0, 686, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 692, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 0, 718, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 620, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 0, 673, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 678, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 0, 0, 0, + 0, 301, 0, 686, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 689, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 0, 0, 0, 301, 0, 690, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 696, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 701, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299, 0, 858, 285, 286, 287, + 299, 300, 0, 0, 0, 0, 301, 0, 723, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 0, 0, 0, 0, 299, 0, 860, 285, 286, + 298, 299, 300, 0, 0, 0, 0, 301, 0, 864, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 0, 0, 0, 0, 299, 0, 862, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 0, 0, 0, 0, 299, 0, 864, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 0, 0, 0, 0, 299, 0, - 868, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 0, 0, 0, 0, 299, - 0, 998, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, - 299, 0, 1013, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, 0, 0, 0, - 0, 299, 0, 1023, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 0, 0, - 0, 0, 299, 0, 1141, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 0, - 0, 0, 0, 299, 0, 1184, 285, 286, 287, 288, + 297, 298, 299, 300, 0, 0, 0, 0, 301, 0, + 866, 287, 288, 289, 290, 291, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 0, 0, 0, 0, 301, + 0, 868, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, + 301, 0, 870, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 0, 0, 0, + 0, 301, 0, 874, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 0, 0, + 0, 0, 301, 0, 1006, 287, 288, 289, 290, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 0, + 0, 0, 0, 301, 0, 1021, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 0, 0, 0, 0, 301, 0, 1031, 287, 288, 289, + 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 0, 0, 0, 0, 301, 0, 1152, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, - 0, 0, 0, 0, 299 + 299, 300, 0, 0, 0, 0, 301, 0, 1196, 287, + 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, + 298, 299, 300, 0, 0, 0, 0, 301 }; static const yytype_int16 yycheck[] = { - 58, 714, 6, 6, 351, 352, 7, 6, 1032, 3, - 49, 7, 4, 274, 4, 5, 68, 4, 4, 7, - 4, 4, 5, 4, 644, 4, 6, 4, 6, 0, - 6, 69, 4, 68, 6, 131, 69, 75, 76, 4, - 136, 130, 75, 76, 120, 121, 36, 37, 38, 39, - 5, 13, 42, 36, 37, 38, 39, 6, 6, 42, - 136, 69, 710, 4, 6, 6, 130, 75, 76, 130, - 120, 121, 177, 137, 120, 121, 137, 6, 77, 184, - 49, 36, 37, 38, 39, 137, 136, 42, 138, 130, - 136, 130, 138, 79, 80, 81, 82, 89, 90, 130, - 138, 206, 137, 130, 209, 138, 107, 108, 109, 110, - 7, 120, 121, 116, 117, 118, 97, 68, 121, 122, - 1144, 130, 110, 126, 89, 90, 127, 128, 137, 132, - 138, 125, 135, 134, 137, 138, 139, 140, 134, 142, - 143, 144, 145, 130, 147, 148, 149, 137, 768, 152, - 127, 128, 138, 137, 137, 132, 137, 134, 137, 137, - 132, 137, 139, 127, 128, 168, 169, 120, 121, 117, - 134, 120, 121, 130, 177, 117, 130, 1201, 7, 130, - 143, 53, 830, 136, 147, 138, 137, 69, 191, 192, - 193, 452, 195, 75, 76, 198, 199, 130, 201, 130, - 7, 49, 260, 261, 262, 263, 137, 127, 128, 212, - 107, 108, 109, 110, 49, 218, 219, 220, 221, 222, - 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, - 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, - 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, - 253, 254, 255, 256, 257, 258, 259, 362, 878, 120, - 121, 264, 131, 68, 49, 31, 32, 136, 34, 272, - 274, 136, 131, 138, 51, 136, 381, 136, 107, 108, - 109, 110, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 299, 130, 127, 128, - 107, 108, 109, 110, 130, 308, 132, 120, 121, 272, - 130, 43, 132, 316, 46, 4, 137, 49, 321, 137, - 127, 128, 325, 326, 137, 130, 49, 330, 131, 332, - 333, 334, 137, 136, 337, 338, 339, 340, 341, 342, - 339, 340, 341, 342, 1057, 131, 1059, 130, 1061, 132, - 136, 354, 355, 356, 357, 358, 359, 351, 352, 6, - 7, 69, 365, 326, 49, 368, 369, 75, 76, 372, - 373, 374, 46, 69, 63, 64, 65, 66, 46, 75, - 76, 49, 71, 51, 387, 74, 46, 130, 120, 121, - 393, 395, 130, 396, 4, 5, 69, 130, 130, 165, - 4, 167, 75, 76, 4, 137, 69, 173, 69, 372, - 69, 177, 75, 76, 75, 76, 75, 76, 1038, 120, - 121, 120, 121, 1136, 4, 130, 36, 37, 38, 39, - 138, 43, 42, 136, 46, 138, 137, 49, 137, 51, - 6, 138, 138, 130, 447, 132, 143, 137, 452, 1097, - 147, 454, 1100, 132, 453, 1103, 120, 121, 1171, 130, - 1173, 132, 1175, 69, 4, 138, 69, 4, 1181, 75, - 76, 7, 75, 76, 130, 138, 132, 138, 130, 138, - 483, 484, 130, 486, 487, 130, 130, 490, 491, 492, - 130, 69, 1205, 130, 1207, 132, 1209, 75, 76, 760, - 761, 69, 505, 120, 121, 508, 509, 75, 76, 130, - 568, 132, 515, 120, 121, 1163, 4, 127, 128, 136, - 483, 150, 120, 121, 134, 528, 529, 156, 157, 136, - 6, 534, 138, 130, 6, 138, 120, 121, 136, 542, - 1188, 544, 505, 1191, 6, 5, 1194, 4, 5, 1197, - 179, 180, 136, 130, 557, 132, 559, 560, 120, 121, - 138, 130, 120, 121, 568, 122, 123, 124, 626, 1217, - 138, 1219, 129, 1221, 136, 272, 130, 924, 136, 36, - 37, 38, 39, 349, 350, 42, 137, 120, 121, 120, - 121, 130, 358, 120, 121, 130, 654, 120, 121, 137, - 130, 604, 605, 136, 130, 136, 340, 341, 342, 136, - 130, 308, 132, 136, 130, 618, 619, 620, 621, 622, - 623, 8, 625, 130, 130, 127, 128, 630, 325, 326, - 132, 130, 134, 132, 637, 137, 130, 139, 132, 130, - 130, 132, 132, 130, 647, 648, 649, 650, 651, 120, - 121, 122, 123, 124, 4, 130, 659, 132, 129, 132, - 137, 134, 625, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, 372, 130, 680, 132, 129, - 136, 130, 138, 132, 647, 648, 649, 650, 130, 130, - 132, 132, 130, 130, 132, 132, 659, 116, 117, 118, - 119, 120, 121, 122, 123, 124, 1053, 127, 128, 136, - 129, 138, 132, 136, 134, 138, 137, 680, 136, 139, - 138, 49, 137, 51, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, 741, 742, - 6, 136, 129, 138, 136, 136, 138, 138, 136, 132, - 138, 138, 136, 757, 138, 137, 136, 761, 138, 6, - 136, 527, 138, 136, 134, 138, 769, 92, 136, 8, - 138, 136, 132, 138, 540, 136, 132, 138, 781, 136, - 6, 138, 785, 136, 6, 138, 483, 136, 136, 138, - 138, 136, 6, 138, 491, 492, 136, 136, 138, 138, - 803, 136, 132, 138, 137, 4, 137, 5, 505, 6, - 129, 508, 134, 7, 817, 818, 819, 132, 138, 137, - 449, 450, 825, 826, 137, 7, 829, 7, 886, 832, - 7, 131, 7, 7, 6, 89, 137, 4, 136, 842, - 843, 844, 131, 131, 136, 6, 850, 4, 133, 852, - 92, 7, 7, 7, 857, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, 7, 92, 871, 832, - 129, 870, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, 7, 516, 891, 7, - 129, 657, 131, 7, 897, 898, 92, 7, 7, 902, - 4, 131, 131, 131, 131, 138, 138, 6, 911, 7, - 134, 7, 7, 134, 130, 130, 6, 920, 137, 6, - 6, 920, 133, 6, 6, 132, 7, 6, 625, 117, - 924, 7, 49, 7, 7, 938, 51, 137, 704, 705, - 706, 7, 7, 946, 7, 6, 4, 946, 951, 952, - 647, 648, 649, 650, 7, 12, 13, 7, 7, 7, - 1065, 7, 659, 7, 6, 130, 137, 137, 971, 6, - 6, 49, 6, 6, 4, 4, 4, 137, 4, 6, - 983, 134, 6, 680, 130, 134, 43, 44, 45, 46, - 47, 48, 49, 50, 51, 52, 999, 54, 131, 56, - 57, 7, 59, 60, 6, 137, 6, 137, 137, 56, - 6, 6, 1015, 137, 6, 6, 1019, 5, 1021, 4, - 6, 1024, 6, 6, 137, 1028, 137, 84, 85, 86, - 1033, 6, 1137, 88, 7, 4, 6, 4, 667, 668, - 6, 670, 6, 672, 673, 6, 6, 676, 677, 6, - 6, 6, 6, 1056, 6, 1058, 133, 1060, 5, 1053, - 6, 1024, 6, 829, 6, 6, 1069, 92, 6, 6, - 6, 6, 6, 6, 1077, 1078, 6, 136, 6, 6, - 6, 1084, 7, 137, 6, 5, 137, 6, 1091, 134, - 1093, 6, 6, 6, 47, 724, 725, 726, 138, 137, - 7, 6, 137, 6, 6, 137, 137, 87, 90, 6, - 1113, 6, 6, 6, 137, 137, 6, 5, 138, 6, - 137, 1124, 61, 6, 1127, 1183, 892, 1130, 136, 6, - 6, 1134, 6, 6, 6, 832, 6, 138, 5, 1142, - 137, 6, 1145, 137, 137, 6, 6, 137, 6, 136, - 6, 6, 5, 1211, 6, 1213, 137, 6, 137, 925, - 789, 927, 138, 929, 6, 137, 795, 8, 6, 137, - 6, 6, 137, 1231, 6, 804, 805, 806, 6, 6, - 6, 810, 811, 812, 813, 814, 815, 780, 1113, 788, - 3, 3, 874, -1, -1, -1, 825, -1, 3, 4, - -1, -1, -1, -1, 9, 10, 11, -1, -1, 14, - 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, - 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - -1, -1, -1, -1, -1, -1, -1, -1, 43, -1, - 869, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 63, 64, - 65, 66, 67, -1, -1, -1, 71, -1, -1, 74, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - 1056, -1, 1058, -1, 1060, -1, -1, 138, 103, 104, - 105, 106, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 941, -1, -1, 120, 121, -1, -1, -1, - 125, -1, -1, -1, 953, 130, -1, 1024, -1, -1, - 135, -1, -1, 138, -1, -1, 3, 4, 5, -1, - 7, -1, 9, 10, 11, -1, -1, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, -1, 36, - 37, 38, 39, -1, -1, 42, -1, -1, -1, -1, - -1, -1, -1, 1012, 3, 4, -1, -1, -1, -1, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, + 59, 7, 6, 354, 355, 1040, 179, 4, 3, 276, + 6, 4, 6, 186, 6, 6, 6, 4, 5, 4, + 6, 4, 648, 4, 1059, 4, 49, 70, 70, 13, + 4, 6, 6, 4, 4, 208, 71, 70, 211, 70, + 122, 123, 77, 78, 0, 4, 5, 49, 6, 36, + 37, 38, 39, 132, 7, 42, 138, 71, 140, 71, + 715, 151, 6, 77, 78, 77, 78, 157, 158, 4, + 5, 122, 123, 53, 4, 719, 6, 36, 37, 38, + 39, 132, 78, 42, 81, 82, 83, 84, 139, 132, + 132, 181, 182, 132, 122, 123, 139, 139, 91, 92, + 139, 36, 37, 38, 39, 140, 139, 42, 139, 132, + 7, 139, 132, 117, 118, 119, 99, 132, 122, 123, + 1155, 91, 92, 127, 139, 119, 140, 119, 140, 133, + 136, 126, 136, 133, 138, 139, 140, 141, 138, 143, + 144, 145, 146, 140, 148, 149, 150, 773, 139, 153, + 129, 130, 139, 139, 139, 134, 139, 136, 139, 112, + 134, 132, 141, 139, 122, 123, 170, 171, 144, 132, + 122, 123, 148, 32, 33, 179, 35, 7, 1213, 49, + 139, 836, 144, 122, 123, 132, 148, 139, 455, 193, + 194, 195, 365, 197, 129, 130, 200, 201, 132, 203, + 139, 136, 71, 262, 263, 264, 265, 132, 77, 78, + 214, 384, 109, 110, 111, 112, 220, 221, 222, 223, + 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, + 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, + 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, + 254, 255, 256, 257, 258, 259, 260, 261, 884, 133, + 71, 132, 266, 138, 138, 140, 77, 78, 139, 43, + 274, 140, 46, 49, 7, 49, 132, 51, 7, 109, + 110, 111, 112, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 301, 274, 129, + 130, 276, 122, 123, 129, 130, 310, 134, 167, 136, + 169, 136, 274, 49, 318, 71, 175, 51, 138, 323, + 179, 77, 78, 327, 328, 8, 122, 123, 332, 140, + 334, 335, 336, 49, 310, 339, 340, 341, 342, 343, + 344, 345, 138, 4, 140, 341, 342, 343, 344, 122, + 123, 327, 328, 357, 358, 359, 360, 361, 362, 354, + 355, 8, 452, 453, 368, 138, 328, 371, 372, 122, + 123, 375, 376, 377, 122, 123, 109, 110, 111, 112, + 109, 110, 111, 112, 140, 138, 390, 71, 132, 132, + 138, 134, 396, 77, 78, 399, 129, 130, 139, 375, + 129, 130, 139, 136, 65, 66, 67, 68, 49, 122, + 123, 71, 73, 375, 49, 76, 46, 77, 78, 49, + 1046, 51, 1066, 398, 1068, 138, 1070, 140, 46, 519, + 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, + 123, 124, 125, 126, 46, 132, 450, 134, 131, 122, + 123, 4, 1107, 457, 133, 1110, 140, 140, 1113, 138, + 456, 342, 343, 344, 132, 138, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + 455, 4, 486, 487, 131, 489, 490, 133, 132, 493, + 494, 495, 138, 352, 353, 122, 123, 4, 765, 766, + 129, 130, 361, 1147, 508, 122, 123, 511, 512, 132, + 486, 138, 133, 572, 518, 6, 71, 138, 494, 495, + 1175, 138, 77, 78, 486, 132, 132, 134, 532, 533, + 134, 71, 508, 4, 538, 511, 139, 77, 78, 1183, + 4, 1185, 546, 1187, 548, 1200, 508, 43, 1203, 1193, + 46, 1206, 132, 49, 1209, 71, 132, 561, 134, 563, + 564, 77, 78, 71, 132, 124, 125, 126, 132, 77, + 78, 630, 131, 1217, 1229, 1219, 1231, 1221, 1233, 5, + 931, 671, 672, 132, 674, 140, 676, 677, 71, 7, + 680, 681, 122, 123, 77, 78, 71, 572, 132, 658, + 140, 4, 77, 78, 608, 609, 6, 132, 138, 134, + 36, 37, 38, 39, 6, 132, 42, 134, 622, 623, + 624, 625, 626, 627, 140, 629, 122, 123, 4, 5, + 634, 132, 140, 134, 6, 7, 132, 641, 6, 729, + 730, 731, 8, 139, 132, 5, 134, 651, 652, 653, + 654, 655, 132, 629, 122, 123, 132, 140, 134, 663, + 36, 37, 38, 39, 4, 140, 42, 629, 122, 123, + 138, 132, 531, 134, 132, 651, 652, 653, 654, 132, + 684, 122, 123, 139, 138, 544, 132, 663, 134, 651, + 652, 653, 654, 122, 123, 129, 130, 138, 122, 123, + 134, 663, 136, 139, 794, 139, 139, 141, 684, 138, + 800, 1062, 132, 132, 122, 123, 124, 125, 126, 809, + 810, 811, 684, 131, 139, 815, 816, 817, 818, 819, + 820, 821, 118, 119, 120, 121, 122, 123, 124, 125, + 126, 831, 746, 747, 132, 131, 134, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, 12, 13, 132, 139, 131, 129, 130, 132, 134, + 774, 134, 6, 136, 140, 132, 132, 134, 141, 132, + 132, 134, 786, 132, 132, 875, 790, 762, 132, 132, + 134, 766, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 661, 54, 808, 56, 57, 139, 59, 60, + 61, 132, 132, 134, 134, 132, 132, 134, 134, 823, + 824, 825, 132, 132, 134, 134, 6, 831, 832, 134, + 138, 835, 140, 892, 838, 86, 87, 88, 138, 138, + 140, 140, 134, 136, 848, 849, 850, 138, 94, 140, + 709, 710, 711, 138, 858, 140, 139, 6, 948, 863, + 6, 49, 838, 51, 138, 138, 140, 140, 6, 138, + 960, 140, 138, 877, 140, 138, 838, 140, 4, 139, + 876, 856, 138, 138, 140, 140, 138, 134, 140, 140, + 138, 6, 140, 897, 138, 138, 140, 140, 5, 903, + 904, 1074, 131, 138, 908, 140, 138, 138, 140, 140, + 138, 136, 140, 917, 138, 138, 140, 140, 138, 138, + 140, 140, 138, 927, 140, 7, 134, 139, 7, 140, + 1020, 927, 139, 7, 7, 133, 931, 7, 7, 6, + 91, 945, 139, 4, 138, 138, 133, 133, 6, 953, + 4, 135, 7, 94, 958, 959, 7, 953, 7, 7, + 12, 13, 115, 116, 117, 118, 119, 120, 121, 122, + 123, 124, 125, 126, 978, 1148, 835, 94, 131, 7, + 7, 94, 7, 1073, 7, 7, 990, 4, 133, 133, + 133, 43, 44, 45, 46, 47, 48, 49, 50, 51, + 52, 133, 54, 1007, 56, 57, 136, 59, 60, 61, + 12, 13, 140, 140, 6, 136, 7, 7, 7, 1023, + 132, 132, 6, 1027, 1114, 1029, 6, 6, 1032, 139, + 135, 6, 1036, 6, 86, 87, 88, 1041, 7, 898, + 134, 43, 44, 45, 46, 47, 48, 49, 50, 51, + 52, 6, 54, 63, 56, 57, 1032, 59, 60, 61, + 119, 1065, 49, 1067, 7, 1069, 7, 1062, 51, 7, + 1032, 139, 7, 932, 1078, 934, 7, 936, 7, 6, + 4, 7, 1086, 1087, 86, 87, 88, 7, 140, 1093, + 7, 7, 7, 7, 7, 6, 1100, 139, 132, 1103, + 139, 6, 6, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, 49, 6, 1123, + 6, 131, 4, 4, 4, 136, 4, 6, 132, 6, + 139, 1135, 133, 136, 1138, 7, 1195, 1141, 140, 6, + 139, 1145, 6, 139, 56, 139, 6, 6, 6, 1153, + 6, 139, 1156, 116, 117, 118, 119, 120, 121, 122, + 123, 124, 125, 126, 1223, 5, 1225, 4, 131, 139, + 6, 139, 6, 6, 3, 4, 6, 4, 4, 7, + 9, 10, 11, 90, 1243, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, -1, -1, -1, -1, - -1, -1, -1, -1, 43, -1, -1, -1, -1, -1, - 97, -1, -1, -1, -1, 1064, 103, 104, 105, 106, - 107, 108, 109, 110, 63, 64, 65, 66, 67, -1, - -1, -1, 71, 120, 121, 74, -1, -1, 125, -1, - 127, 128, -1, 130, -1, 132, -1, 134, 135, -1, - 137, -1, -1, -1, -1, 1104, -1, -1, -1, -1, - -1, -1, -1, -1, 103, 104, 105, 106, -1, -1, + 29, 30, 31, 32, 33, 34, 1065, 6, 1067, 6, + 1069, 6, 6, 6, 43, 62, 6, 135, 6, 6, + 6, 12, 13, 6, 5, 94, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 65, 66, 67, 68, + 69, 6, 138, 6, 73, 139, 6, 76, 7, 6, + 6, 136, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 5, 54, 6, 56, 57, 6, 59, 60, + 61, 139, 6, 139, 7, 140, 105, 106, 107, 108, + 47, 6, 139, 89, 139, 139, 139, 6, 6, 92, + 6, 6, 6, 122, 123, 86, 87, 88, 127, 6, + 6, 139, 6, 132, 139, 5, 138, 6, 137, 140, + 63, 140, 3, 4, 5, 139, 7, 6, 9, 10, + 11, 6, 6, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, + 31, 32, 33, 34, 6, 36, 37, 38, 39, 140, + 6, 42, 6, 6, 6, 140, 5, 139, 6, 6, + 3, 4, 6, 785, 6, 6, 9, 10, 11, 139, + 139, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 139, 138, 6, 139, 5, 1123, 139, 139, + 43, 139, 139, 6, 140, 6, 6, 6, 99, 6, + 6, 6, 6, 6, 105, 106, 107, 108, 109, 110, + 111, 112, 65, 66, 67, 68, 69, 6, 3, 3, + 73, 122, 123, 76, 793, 880, 127, -1, 129, 130, + -1, 132, -1, 134, -1, 136, 137, -1, 139, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 120, 121, -1, -1, -1, 125, -1, -1, -1, - -1, 130, -1, 3, 4, -1, 135, -1, 137, 9, - 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, - 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, - 30, 31, 32, 33, 34, -1, -1, -1, -1, -1, - -1, -1, -1, 43, 12, 13, -1, -1, -1, -1, + -1, -1, 105, 106, 107, 108, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 122, + 123, -1, -1, -1, 127, -1, -1, -1, -1, 132, + -1, 3, 4, -1, 137, -1, 139, 9, 10, 11, + -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, + -1, 43, -1, -1, -1, -1, -1, -1, 12, 13, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 63, 64, 65, 66, 67, 6, -1, - -1, 71, -1, -1, 74, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, -1, 54, -1, 56, 57, - -1, 59, 60, -1, -1, -1, -1, -1, -1, 6, - -1, -1, -1, 103, 104, 105, 106, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 84, 85, 86, -1, - 120, 121, -1, -1, -1, 125, -1, -1, -1, -1, - 130, -1, 3, 4, -1, 135, -1, 137, 9, 10, + -1, -1, -1, 65, 66, 67, 68, 69, -1, -1, + -1, 73, -1, -1, 76, -1, -1, -1, -1, 43, + 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, + 54, -1, 56, 57, -1, 59, 60, 61, -1, -1, + -1, 8, -1, 105, 106, 107, 108, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 122, 123, 86, 87, 88, 127, -1, -1, -1, -1, + 132, -1, 3, 4, -1, 137, -1, 139, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, -1, -1, -1, -1, -1, - 138, -1, 43, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, 63, 64, 65, 66, 67, -1, -1, -1, - 71, -1, -1, 74, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 103, 104, 105, 106, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, - 121, -1, -1, -1, 125, -1, -1, -1, -1, 130, - -1, 3, 4, 5, 135, -1, 137, 9, 10, 11, - -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, -1, 36, 37, 38, 39, 3, 4, - 42, 12, 13, -1, 9, 10, 11, -1, -1, 14, - 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, - 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - -1, -1, 43, 44, 45, 46, 47, 48, 49, 50, - 51, 52, -1, 54, -1, 56, 57, -1, 59, 60, + -1, -1, 43, -1, -1, -1, 140, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 65, 66, 67, 68, 69, -1, + -1, -1, 73, -1, -1, 76, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, 133, -1, -1, -1, + -1, -1, -1, -1, 105, 106, 107, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 103, 104, 105, 106, -1, -1, -1, -1, -1, - -1, -1, -1, 84, 85, 86, -1, -1, 120, 121, - -1, -1, -1, 125, -1, -1, -1, -1, 130, -1, - -1, -1, -1, 135, -1, 137, -1, -1, 103, 104, - 105, 106, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 6, 120, 121, -1, -1, -1, - 125, -1, -1, -1, -1, 130, -1, 138, 133, -1, - 135, -1, 137, 3, 4, -1, -1, -1, -1, 9, + -1, 122, 123, -1, -1, -1, 127, -1, -1, -1, + -1, 132, -1, 3, 4, 5, 137, -1, 139, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, - 30, 31, 32, 33, 34, -1, -1, -1, 3, 4, - 12, 13, -1, -1, 9, 10, 11, -1, -1, 14, - 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, - 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, -1, 54, -1, 56, 57, -1, 59, 60, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, 103, 104, 105, 106, 129, -1, -1, - -1, -1, 84, 85, 86, -1, -1, -1, -1, -1, - 120, 121, -1, -1, -1, 125, -1, -1, -1, -1, - 130, -1, -1, 133, -1, 135, -1, 137, 103, 104, - 105, 106, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 120, 121, -1, 61, -1, - 125, -1, -1, -1, -1, 130, 138, 3, 4, -1, - 135, -1, 137, 9, 10, 11, -1, -1, 14, 15, + 30, 31, 32, 33, 34, -1, 36, 37, 38, 39, + 3, 4, 42, 12, 13, -1, 9, 10, 11, -1, + -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, -1, -1, 43, 44, 45, 46, 47, 48, + 49, 50, 51, 52, -1, 54, -1, 56, 57, -1, + 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 105, 106, 107, 108, -1, + -1, -1, -1, -1, -1, -1, -1, 86, 87, 88, + -1, -1, 122, 123, -1, -1, -1, 127, -1, -1, + -1, -1, 132, -1, -1, -1, -1, 137, -1, 139, + -1, -1, 105, 106, 107, 108, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 6, 122, + 123, -1, -1, -1, 127, -1, -1, -1, -1, 132, + -1, 140, 135, -1, 137, -1, 139, 3, 4, -1, + -1, -1, -1, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, - -1, -1, -1, -1, -1, -1, -1, 43, 111, 112, - 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, 63, 64, 65, - 66, 67, -1, 3, 4, 71, -1, -1, 74, 9, + -1, -1, 3, 4, 12, 13, -1, -1, 9, 10, + 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, + 31, 32, 33, 34, -1, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, -1, 54, -1, 56, 57, + -1, 59, 60, 61, -1, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, 105, + 106, 107, 108, 131, -1, -1, -1, -1, 86, 87, + 88, -1, -1, -1, -1, -1, 122, 123, -1, -1, + -1, 127, -1, -1, -1, -1, 132, -1, -1, 135, + -1, 137, -1, 139, 105, 106, 107, 108, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 122, 123, -1, -1, -1, 127, -1, -1, -1, + -1, 132, 140, 3, 4, -1, 137, -1, 139, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, - 30, 31, 32, 33, 34, -1, -1, 103, 104, 105, - 106, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 120, 121, -1, -1, -1, 125, - 3, 4, 5, -1, 130, -1, 9, 10, 11, 135, - -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, -1, 36, 37, 38, 39, -1, -1, 42, - -1, -1, -1, 103, 104, 105, 106, 12, 13, -1, + 30, 31, 32, 33, 34, -1, -1, -1, -1, -1, + -1, -1, -1, 43, -1, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + -1, -1, -1, 131, -1, 65, 66, 67, 68, 69, + 138, 3, 4, 73, -1, -1, 76, 9, 10, 11, + -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 6, -1, 105, 106, 107, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 120, 121, -1, -1, -1, 125, -1, -1, -1, -1, - 130, -1, -1, -1, -1, 135, 6, -1, 43, 44, - 45, 46, 47, 48, 49, 50, 51, 52, -1, 54, - -1, 56, 57, -1, 59, 60, -1, -1, -1, -1, - 103, 104, 105, 106, 12, 13, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 120, 121, 84, - 85, 86, 125, 12, 13, -1, -1, 130, -1, -1, - -1, -1, 135, -1, -1, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 6, 54, -1, 56, 57, - -1, 59, 60, -1, 43, 44, 45, 46, 47, 48, - 49, 50, 51, 52, 6, 54, -1, 56, 57, -1, - 59, 60, -1, 138, 12, 13, 84, 85, 86, -1, - -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, 84, 85, 86, 6, 129, - -1, -1, -1, -1, -1, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, -1, 54, 6, 56, 57, - -1, 59, 60, -1, -1, -1, -1, -1, -1, -1, - 138, -1, -1, -1, -1, -1, 6, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 84, 85, 86, 138, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, 6, -1, -1, -1, 129, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, 6, -1, -1, -1, 129, -1, -1, + -1, -1, 122, 123, -1, -1, -1, 127, 3, 4, + 5, -1, 132, -1, 9, 10, 11, 137, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 6, 36, 37, 38, 39, -1, -1, 42, -1, -1, + -1, -1, -1, 105, 106, 107, 108, -1, -1, 6, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 138, -1, 6, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, 6, -1, -1, -1, - 129, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, 8, -1, 129, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, 8, -1, -1, -1, 129, 111, 112, + 122, 123, -1, -1, -1, 127, -1, -1, 6, -1, + 132, -1, -1, -1, -1, 137, -1, -1, -1, -1, + 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, + 123, 124, 125, 126, 6, -1, -1, -1, 131, -1, + 105, 106, 107, 108, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 6, -1, -1, -1, 122, 123, -1, + -1, -1, 127, -1, -1, -1, -1, 132, -1, -1, + -1, -1, 137, 6, -1, -1, -1, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, 6, -1, -1, 131, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, 6, -1, -1, 131, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + 6, -1, -1, 131, -1, -1, -1, -1, -1, -1, + -1, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, 6, -1, -1, -1, 131, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, 8, -1, -1, -1, 129, 111, 112, 113, + 123, 124, 125, 126, 6, -1, -1, -1, 131, -1, + 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, + 123, 124, 125, 126, -1, 8, -1, -1, 131, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, 8, -1, -1, -1, 129, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 8, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, 8, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, + 124, 125, 126, -1, 8, -1, -1, 131, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, 0, 1, - -1, 129, 4, -1, -1, -1, -1, -1, -1, -1, - 12, 13, -1, -1, -1, -1, -1, 111, 112, 113, + 125, 126, -1, 8, -1, -1, 131, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, 8, -1, -1, 131, -1, -1, -1, -1, + -1, -1, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, 8, -1, -1, -1, + 131, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, + 123, 124, 125, 126, -1, -1, -1, -1, 131, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, -1, -1, 35, -1, 129, -1, -1, 40, 41, - -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, -1, 54, 55, 56, 57, 58, 59, 60, -1, - 62, 63, 64, 65, 66, 67, -1, 69, 70, 71, - 72, 73, 74, -1, -1, 77, 78, 4, -1, -1, - -1, 83, 84, 85, 86, 12, 13, 89, -1, 91, - -1, 93, 94, 95, 96, 97, 98, 99, 100, 101, - 102, -1, -1, -1, -1, -1, -1, -1, 35, -1, + 124, 125, 126, -1, -1, -1, -1, 131, 113, 114, + 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, + 125, 126, -1, -1, -1, -1, 131, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, -1, -1, -1, + -1, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, 0, 1, -1, 131, + 4, -1, -1, -1, -1, -1, -1, -1, 12, 13, + -1, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + -1, 35, -1, -1, -1, -1, 40, 41, 140, 43, + 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, + 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, + 64, 65, 66, 67, 68, 69, -1, 71, 72, 73, + 74, 75, 76, -1, -1, 79, 80, 4, -1, -1, + -1, 85, 86, 87, 88, 12, 13, 91, -1, 93, + -1, 95, 96, 97, 98, 99, 100, 101, 102, 103, + 104, -1, -1, -1, -1, -1, -1, -1, 35, -1, -1, -1, -1, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, 54, 55, 56, - 57, 58, 59, 60, -1, 62, 63, 64, 65, 66, - 67, -1, 69, 70, 71, 72, 73, 74, -1, -1, - 77, 78, -1, -1, -1, -1, 83, 84, 85, 86, - -1, -1, 89, -1, 91, -1, 93, 94, 95, 96, - 97, 98, 99, 100, 101, 102, 111, 112, 113, 114, - 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, 136, -1, 138, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, 136, - -1, 138, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, 136, -1, 138, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, -1, -1, 138, 111, 112, + 57, 58, 59, 60, 61, -1, -1, 64, 65, 66, + 67, 68, 69, -1, 71, 72, 73, 74, 75, 76, + 12, 13, 79, 80, -1, -1, -1, -1, 85, 86, + 87, 88, -1, -1, 91, -1, 93, -1, 95, 96, + 97, 98, 99, 100, 101, 102, 103, 104, -1, -1, + -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, + 52, -1, 54, -1, 56, 57, -1, 59, 60, 61, + -1, -1, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, 86, 87, 88, 138, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, -1, -1, 138, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, 138, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, -1, -1, 138, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, - -1, 138, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, -1, -1, 138, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, -1, -1, 138, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, 138, -1, 140, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, -1, + -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, -1, -1, 138, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, -1, -1, 138, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, - -1, 138, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, -1, -1, 138, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, -1, -1, 138, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, -1, + -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, -1, -1, 138, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, -1, -1, 138, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, - -1, 138, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, -1, -1, 138, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, -1, -1, 138, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, -1, + -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, -1, -1, 138, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, -1, -1, 138, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, - -1, 138, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, -1, -1, 138, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, -1, -1, 138, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, -1, + -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, -1, -1, 138, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, -1, -1, 138, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, - -1, 138, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, 131, -1, -1, -1, -1, 136, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, -1, + -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, -1, -1, 140, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, 136, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, 136, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, 136, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + 133, -1, -1, -1, -1, 138, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, 136, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, 136, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, 136, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, 136, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, 136, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, 136, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, 136, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, 136, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, 136, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, 136, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, 136, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, 136, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, 136, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, 136, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, 136, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, 136, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, 136, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, 136, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, 136, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, 136, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, 136, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, 136, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - -1, -1, -1, 136, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, -1, -1, -1, 136, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, -1, -1, -1, 136, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, -1, -1, + -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, - -1, 136, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, 133, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, -1, -1, -1, 133, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + -1, -1, -1, 138, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - 133, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, - -1, -1, -1, 133, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, 133, 111, 112, 113, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, -1, -1, -1, + -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, -1, -1, -1, -1, 129, -1, -1, -1, 133, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, 133, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, -1, -1, -1, 133, 111, 112, 113, 114, + 124, 125, 126, -1, -1, -1, -1, 131, -1, -1, + -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, 133, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, -1, -1, -1, -1, 129, -1, -1, - -1, 133, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, 133, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, -1, -1, -1, 133, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - 133, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, - -1, -1, -1, 133, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, 133, 111, 112, 113, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, -1, -1, -1, + -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, -1, -1, -1, -1, 129, -1, -1, -1, 133, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, 133, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, -1, -1, -1, 133, 111, 112, 113, 114, + 124, 125, 126, -1, -1, -1, -1, 131, -1, -1, + -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, 133, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, -1, -1, -1, -1, 129, -1, -1, - -1, 133, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, 133, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, -1, -1, -1, 133, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, - 133, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, - -1, -1, -1, 133, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, -1, -1, 133, 111, 112, 113, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, -1, -1, -1, + -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, -1, -1, -1, -1, 129, -1, -1, -1, 133, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - -1, -1, 133, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, -1, -1, -1, 133, 111, 112, 113, 114, + 124, 125, 126, -1, -1, -1, -1, 131, -1, -1, + -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, -1, -1, 133, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, -1, -1, -1, -1, 129, -1, -1, - -1, 133, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, -1, -1, 133, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, -1, -1, -1, 133, 111, 112, + 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, + 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, -1, -1, 135, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, 131, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, -1, -1, -1, -1, 129, -1, 131, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - 131, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, - -1, 131, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, 131, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, -1, 131, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, 131, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, -1, 131, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, -1, -1, -1, + -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, 131, 111, 112, 113, + 125, 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, -1, -1, -1, -1, 129, -1, 131, 111, 112, + 124, 125, 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, 131, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, -1, -1, -1, -1, 129, -1, 131, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - 131, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, - -1, 131, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, 131, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, -1, 131, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, 131, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, -1, 131, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, -1, -1, -1, + -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, 131, 111, 112, 113, + 125, 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, -1, -1, -1, -1, 129, -1, 131, 111, 112, + 124, 125, 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, 131, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, -1, -1, -1, -1, 129, -1, 131, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - 131, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, - -1, 131, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, 131, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, -1, 131, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, 131, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, -1, 131, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, -1, -1, -1, + -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, 131, 111, 112, 113, + 125, 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, -1, -1, -1, -1, 129, -1, 131, 111, 112, + 124, 125, 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, 131, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, -1, -1, -1, -1, 129, -1, 131, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - 131, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, - -1, 131, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, 131, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, -1, 131, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, 131, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, -1, 131, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, -1, -1, -1, + -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129, -1, 131, 111, 112, 113, + 125, 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, -1, -1, -1, -1, 129, -1, 131, 111, 112, + 124, 125, 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, -1, -1, -1, -1, 129, -1, 131, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, -1, -1, -1, -1, 129, -1, 131, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, - 131, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, - -1, 131, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, - 129, -1, 131, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, -1, -1, -1, - -1, 129, -1, 131, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, -1, -1, - -1, -1, 129, -1, 131, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, -1, - -1, -1, -1, 129, -1, 131, 111, 112, 113, 114, + 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, + 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, + -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, + 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, -1, -1, -1, + -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, -1, -1, + -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, + 118, 119, 120, 121, 122, 123, 124, 125, 126, -1, + -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, -1, -1, -1, -1, 131, -1, 133, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - -1, -1, -1, -1, 129 + 125, 126, -1, -1, -1, -1, 131, -1, 133, 113, + 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, + 124, 125, 126, -1, -1, -1, -1, 131 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { - 0, 1, 141, 142, 6, 0, 4, 12, 13, 35, + 0, 1, 143, 144, 6, 0, 4, 12, 13, 35, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, - 51, 52, 54, 55, 56, 57, 58, 59, 60, 62, - 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, - 74, 77, 78, 83, 84, 85, 86, 89, 91, 93, - 94, 95, 96, 97, 98, 99, 100, 101, 102, 143, - 145, 146, 164, 168, 169, 172, 173, 174, 175, 176, - 177, 197, 198, 199, 3, 4, 5, 7, 9, 10, - 11, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 36, 37, 38, 39, 42, 97, 103, 104, - 105, 106, 107, 108, 109, 110, 120, 121, 125, 127, - 128, 130, 132, 134, 135, 137, 162, 163, 200, 201, - 212, 13, 49, 130, 6, 137, 6, 130, 137, 130, - 130, 68, 130, 137, 130, 130, 68, 137, 130, 130, - 53, 49, 130, 49, 49, 49, 46, 49, 51, 51, - 43, 46, 49, 51, 130, 137, 120, 121, 130, 137, - 202, 203, 202, 137, 43, 46, 49, 137, 202, 49, - 49, 46, 4, 97, 137, 4, 6, 46, 4, 4, - 4, 130, 130, 130, 4, 137, 208, 4, 130, 130, - 6, 132, 4, 4, 4, 5, 137, 211, 212, 137, - 211, 4, 132, 134, 139, 163, 137, 212, 130, 132, - 130, 132, 130, 132, 130, 132, 130, 132, 130, 132, - 130, 132, 130, 132, 130, 132, 130, 132, 130, 132, - 130, 132, 130, 132, 130, 132, 130, 132, 130, 132, - 130, 132, 130, 132, 130, 132, 130, 132, 130, 132, - 130, 130, 130, 130, 7, 130, 4, 200, 200, 200, - 200, 133, 137, 200, 4, 89, 90, 4, 4, 169, - 170, 171, 200, 6, 6, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, 129, - 6, 6, 200, 5, 200, 200, 4, 43, 121, 169, - 177, 200, 206, 207, 200, 200, 130, 200, 207, 200, - 200, 130, 207, 200, 200, 121, 137, 200, 205, 206, - 130, 200, 137, 130, 130, 205, 205, 137, 130, 130, - 130, 130, 130, 4, 202, 202, 202, 200, 200, 120, - 121, 137, 137, 202, 137, 137, 137, 120, 121, 130, - 171, 202, 137, 205, 205, 130, 4, 6, 132, 132, - 171, 6, 137, 132, 132, 6, 200, 200, 200, 134, - 200, 137, 92, 200, 200, 200, 6, 132, 134, 171, - 6, 171, 6, 132, 200, 4, 137, 147, 6, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 211, 211, 211, 211, 200, 5, 132, 131, 7, - 110, 207, 133, 7, 162, 163, 134, 7, 132, 138, - 43, 46, 49, 51, 168, 6, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 6, 131, 136, 136, 131, 132, 137, 200, 206, - 8, 122, 136, 138, 131, 131, 200, 131, 138, 131, - 131, 200, 138, 131, 131, 137, 138, 207, 122, 7, - 200, 131, 200, 200, 200, 7, 7, 195, 200, 200, - 165, 200, 212, 165, 165, 165, 131, 136, 136, 136, - 202, 202, 170, 170, 136, 200, 200, 200, 200, 181, - 136, 171, 7, 196, 7, 200, 6, 200, 200, 138, - 207, 200, 200, 131, 131, 131, 89, 136, 171, 137, - 8, 131, 133, 200, 4, 138, 138, 200, 133, 163, - 200, 4, 79, 80, 81, 82, 138, 150, 154, 157, - 159, 160, 131, 133, 131, 133, 131, 133, 131, 133, - 131, 133, 131, 133, 131, 133, 131, 133, 131, 133, - 131, 133, 131, 133, 136, 136, 131, 133, 131, 133, - 131, 133, 131, 133, 131, 133, 131, 133, 136, 136, - 136, 136, 136, 136, 131, 136, 136, 131, 131, 6, - 136, 200, 205, 205, 138, 7, 134, 162, 163, 212, - 200, 6, 4, 4, 137, 209, 133, 137, 137, 137, - 137, 8, 6, 117, 144, 207, 200, 7, 133, 137, - 200, 200, 200, 206, 200, 206, 92, 7, 7, 131, - 7, 92, 7, 7, 131, 92, 7, 7, 207, 138, - 137, 200, 131, 7, 138, 131, 131, 200, 205, 4, - 194, 138, 131, 131, 131, 131, 131, 134, 202, 200, - 200, 138, 138, 200, 136, 136, 136, 69, 75, 76, - 191, 192, 202, 138, 178, 200, 6, 200, 131, 133, - 133, 138, 133, 133, 7, 7, 7, 134, 200, 138, - 200, 200, 7, 134, 133, 133, 134, 163, 211, 138, - 151, 130, 130, 137, 161, 6, 200, 200, 200, 200, - 200, 200, 200, 200, 207, 211, 200, 133, 6, 6, - 133, 4, 89, 90, 200, 6, 6, 6, 7, 132, - 208, 210, 6, 207, 207, 207, 207, 200, 117, 211, - 131, 136, 202, 207, 138, 8, 49, 205, 205, 7, - 205, 49, 51, 205, 205, 7, 51, 205, 205, 138, - 207, 6, 7, 137, 7, 7, 7, 61, 193, 6, - 7, 7, 7, 7, 7, 7, 4, 136, 136, 136, - 138, 202, 202, 202, 6, 137, 130, 138, 192, 136, - 191, 6, 137, 6, 6, 49, 6, 6, 205, 205, - 205, 4, 136, 8, 8, 131, 4, 4, 134, 6, - 4, 6, 130, 200, 200, 204, 205, 137, 131, 133, - 131, 133, 131, 133, 131, 133, 131, 131, 131, 162, - 7, 162, 163, 134, 7, 6, 208, 200, 136, 138, - 138, 138, 138, 138, 6, 6, 144, 200, 6, 138, - 200, 137, 56, 167, 167, 205, 6, 137, 137, 6, - 6, 205, 137, 6, 6, 138, 5, 200, 205, 205, - 205, 4, 6, 205, 205, 205, 205, 205, 205, 6, - 7, 200, 200, 200, 137, 136, 138, 136, 138, 136, - 138, 200, 205, 200, 200, 202, 138, 207, 137, 6, - 6, 88, 200, 200, 200, 6, 7, 4, 163, 148, - 200, 136, 136, 136, 138, 149, 200, 205, 212, 200, - 6, 4, 209, 6, 133, 208, 6, 6, 6, 6, - 211, 136, 133, 200, 202, 6, 6, 6, 200, 200, - 6, 200, 5, 136, 6, 6, 92, 166, 200, 6, - 6, 6, 6, 6, 6, 200, 212, 138, 131, 136, - 138, 170, 202, 6, 182, 202, 6, 183, 202, 6, - 184, 138, 136, 131, 138, 136, 138, 200, 205, 136, - 138, 8, 138, 131, 137, 200, 212, 131, 136, 200, - 200, 205, 137, 136, 138, 6, 6, 6, 7, 6, - 134, 6, 200, 138, 138, 138, 138, 5, 200, 47, - 6, 6, 6, 137, 200, 138, 136, 137, 136, 137, - 136, 137, 6, 205, 7, 137, 200, 6, 138, 87, - 200, 200, 207, 6, 6, 152, 200, 136, 136, 204, - 200, 6, 208, 90, 136, 6, 6, 6, 6, 6, - 136, 137, 170, 136, 138, 200, 202, 191, 200, 202, - 191, 200, 202, 191, 136, 138, 205, 171, 138, 200, - 138, 138, 138, 137, 200, 200, 138, 6, 200, 5, - 200, 138, 200, 138, 136, 138, 138, 136, 138, 138, - 136, 138, 205, 6, 61, 138, 179, 137, 6, 6, - 149, 131, 136, 6, 137, 136, 136, 138, 138, 6, - 185, 200, 6, 6, 186, 200, 6, 6, 187, 200, - 6, 138, 200, 191, 171, 138, 155, 200, 204, 200, - 5, 137, 138, 137, 138, 137, 138, 6, 6, 138, - 138, 180, 6, 137, 131, 138, 138, 136, 191, 6, - 188, 191, 6, 189, 191, 6, 190, 191, 153, 211, - 158, 137, 6, 5, 138, 137, 138, 137, 138, 137, - 138, 136, 138, 137, 204, 138, 6, 191, 6, 191, - 6, 191, 211, 6, 156, 211, 138, 6, 138, 138, - 138, 136, 138, 6, 6, 6, 6, 211, 6 + 51, 52, 54, 55, 56, 57, 58, 59, 60, 61, + 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, + 75, 76, 79, 80, 85, 86, 87, 88, 91, 93, + 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, + 145, 147, 148, 166, 170, 171, 174, 175, 176, 177, + 178, 179, 199, 200, 201, 3, 4, 5, 7, 9, + 10, 11, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 36, 37, 38, 39, 42, 99, 105, + 106, 107, 108, 109, 110, 111, 112, 122, 123, 127, + 129, 130, 132, 134, 136, 137, 139, 164, 165, 202, + 203, 214, 13, 49, 132, 6, 139, 6, 132, 139, + 132, 132, 70, 132, 139, 132, 132, 70, 139, 132, + 132, 53, 49, 132, 49, 49, 49, 46, 49, 51, + 51, 43, 46, 49, 51, 49, 132, 139, 122, 123, + 132, 139, 204, 205, 204, 139, 43, 46, 49, 139, + 204, 49, 49, 46, 4, 99, 139, 4, 6, 46, + 4, 4, 4, 132, 132, 132, 4, 139, 210, 4, + 132, 132, 6, 134, 4, 4, 4, 5, 139, 213, + 214, 139, 213, 4, 134, 136, 141, 165, 139, 214, + 132, 134, 132, 134, 132, 134, 132, 134, 132, 134, + 132, 134, 132, 134, 132, 134, 132, 134, 132, 134, + 132, 134, 132, 134, 132, 134, 132, 134, 132, 134, + 132, 134, 132, 134, 132, 134, 132, 134, 132, 134, + 132, 134, 132, 132, 132, 132, 7, 132, 4, 202, + 202, 202, 202, 135, 139, 202, 4, 91, 92, 4, + 4, 171, 172, 173, 202, 6, 6, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, 131, 6, 6, 202, 5, 202, 202, 4, 43, + 123, 171, 179, 202, 208, 209, 202, 202, 132, 202, + 209, 202, 202, 132, 209, 202, 202, 123, 139, 202, + 207, 208, 132, 202, 139, 132, 132, 207, 207, 139, + 132, 132, 132, 132, 132, 132, 4, 204, 204, 204, + 202, 202, 122, 123, 139, 139, 204, 139, 139, 139, + 122, 123, 132, 173, 204, 139, 207, 207, 132, 4, + 6, 134, 134, 173, 6, 139, 134, 134, 6, 202, + 202, 202, 136, 202, 139, 94, 202, 202, 202, 6, + 134, 136, 173, 6, 173, 6, 134, 202, 4, 139, + 149, 6, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 213, 213, 213, 213, 202, 5, + 134, 133, 7, 112, 209, 135, 7, 164, 165, 136, + 7, 134, 140, 43, 46, 49, 51, 170, 6, 202, + 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, + 202, 202, 202, 202, 6, 133, 138, 138, 133, 134, + 139, 202, 208, 8, 124, 138, 140, 133, 133, 202, + 133, 140, 133, 133, 202, 140, 133, 133, 139, 140, + 209, 124, 7, 202, 133, 202, 202, 202, 7, 7, + 197, 202, 202, 167, 202, 214, 167, 167, 167, 202, + 133, 138, 138, 138, 204, 204, 172, 172, 138, 202, + 202, 202, 202, 183, 138, 173, 7, 198, 7, 202, + 6, 202, 202, 140, 209, 202, 202, 133, 133, 133, + 91, 138, 173, 139, 8, 133, 135, 202, 4, 140, + 140, 202, 135, 165, 202, 4, 81, 82, 83, 84, + 140, 152, 156, 159, 161, 162, 133, 135, 133, 135, + 133, 135, 133, 135, 133, 135, 133, 135, 133, 135, + 133, 135, 133, 135, 133, 135, 133, 135, 138, 138, + 133, 135, 133, 135, 133, 135, 133, 135, 133, 135, + 133, 135, 138, 138, 138, 138, 138, 138, 133, 138, + 138, 133, 133, 6, 138, 202, 207, 207, 140, 7, + 136, 164, 165, 214, 202, 6, 4, 4, 139, 211, + 135, 139, 139, 139, 139, 8, 6, 119, 146, 209, + 202, 7, 135, 139, 202, 202, 202, 208, 202, 208, + 94, 7, 7, 133, 7, 94, 7, 7, 133, 94, + 7, 7, 209, 140, 139, 202, 133, 7, 140, 133, + 133, 202, 207, 4, 196, 140, 133, 133, 133, 133, + 133, 133, 136, 204, 202, 202, 140, 140, 202, 138, + 138, 138, 71, 77, 78, 193, 194, 204, 140, 180, + 202, 6, 202, 133, 135, 135, 140, 135, 135, 7, + 7, 7, 136, 202, 140, 202, 202, 7, 136, 135, + 135, 136, 165, 213, 140, 153, 132, 132, 139, 163, + 6, 202, 202, 202, 202, 202, 202, 202, 202, 209, + 213, 202, 135, 6, 6, 135, 4, 91, 92, 202, + 6, 6, 6, 7, 134, 210, 212, 6, 209, 209, + 209, 209, 202, 119, 213, 133, 138, 204, 209, 140, + 8, 49, 207, 207, 7, 207, 49, 51, 207, 207, + 7, 51, 207, 207, 140, 209, 6, 7, 139, 7, + 7, 7, 63, 195, 6, 7, 7, 7, 7, 7, + 7, 7, 4, 138, 138, 138, 140, 204, 204, 204, + 6, 139, 132, 140, 194, 138, 193, 6, 139, 6, + 6, 49, 6, 6, 207, 207, 207, 4, 138, 8, + 8, 133, 4, 4, 136, 6, 4, 6, 132, 202, + 202, 206, 207, 139, 133, 135, 133, 135, 133, 135, + 133, 135, 133, 133, 133, 164, 7, 164, 165, 136, + 7, 6, 210, 202, 138, 140, 140, 140, 140, 140, + 6, 6, 146, 202, 6, 140, 202, 139, 56, 169, + 169, 207, 6, 139, 139, 6, 6, 207, 139, 6, + 6, 140, 5, 202, 207, 207, 207, 4, 6, 207, + 207, 207, 207, 207, 207, 207, 6, 7, 202, 202, + 202, 139, 138, 140, 138, 140, 138, 140, 202, 207, + 202, 202, 204, 140, 209, 139, 6, 6, 90, 202, + 202, 202, 6, 7, 4, 165, 150, 202, 138, 138, + 138, 140, 151, 202, 207, 214, 202, 6, 4, 211, + 6, 135, 210, 6, 6, 6, 6, 213, 138, 135, + 202, 204, 6, 6, 6, 202, 202, 6, 202, 5, + 138, 6, 6, 94, 168, 202, 6, 6, 6, 6, + 6, 6, 62, 202, 214, 140, 133, 138, 140, 172, + 204, 6, 184, 204, 6, 185, 204, 6, 186, 140, + 138, 133, 140, 138, 140, 202, 207, 138, 140, 8, + 140, 133, 139, 202, 214, 133, 138, 202, 202, 207, + 139, 138, 140, 6, 6, 6, 7, 6, 136, 6, + 202, 140, 140, 140, 140, 5, 202, 47, 6, 139, + 6, 6, 139, 202, 140, 138, 139, 138, 139, 138, + 139, 6, 207, 7, 139, 202, 6, 140, 89, 202, + 202, 209, 6, 6, 154, 202, 138, 138, 206, 202, + 6, 210, 92, 138, 6, 6, 6, 6, 6, 138, + 139, 206, 172, 138, 140, 202, 204, 193, 202, 204, + 193, 202, 204, 193, 138, 140, 207, 173, 140, 202, + 140, 140, 140, 139, 202, 202, 140, 6, 202, 5, + 202, 140, 140, 202, 140, 138, 140, 140, 138, 140, + 140, 138, 140, 207, 6, 63, 140, 181, 139, 6, + 6, 151, 133, 138, 6, 139, 138, 138, 140, 6, + 140, 6, 187, 202, 6, 6, 188, 202, 6, 6, + 189, 202, 6, 140, 202, 193, 173, 140, 157, 202, + 206, 202, 5, 139, 140, 139, 140, 139, 140, 6, + 6, 140, 140, 182, 6, 139, 133, 140, 140, 138, + 193, 6, 190, 193, 6, 191, 193, 6, 192, 193, + 155, 213, 160, 139, 6, 5, 140, 139, 140, 139, + 140, 139, 140, 138, 140, 139, 206, 140, 6, 193, + 6, 193, 6, 193, 213, 6, 158, 213, 140, 6, + 140, 140, 140, 138, 140, 6, 6, 6, 6, 213, + 6 }; #define yyerrok (yyerrstatus = 0) @@ -5183,7 +5171,36 @@ yyreduce: break; case 114: -#line 1462 "Gmsh.y" +#line 1459 "Gmsh.y" + { + int num = (int)(yyvsp[(4) - (12)].d); + if(FindPhysicalGroup(num, MSH_PHYSICAL_SURFACE)){ + yymsg(0, "Physical surface %d already exists", num); + } + else{ + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (12)].l)); + List_T *S[4] = {0,0,0,0}; + for (int i=0;i<List_Nbr((yyvsp[(10) - (12)].l));i++){ + List_T *ll; + List_Read((yyvsp[(10) - (12)].l),i,&ll); + S[i] = ListOfDouble2ListOfInt(ll); + } + + PhysicalGroup *p = Create_PhysicalGroup(num, MSH_PHYSICAL_SURFACE, temp, S); + List_Delete(temp); + for (int i=0;i<List_Nbr((yyvsp[(10) - (12)].l));i++) + List_Delete(S[i]); + + List_Add(GModel::current()->getGEOInternals()->PhysicalGroups, &p); + } + List_Delete((yyvsp[(7) - (12)].l)); + (yyval.s).Type = MSH_PHYSICAL_SURFACE; + (yyval.s).Num = num; + ;} + break; + + case 115: +#line 1489 "Gmsh.y" { yymsg(0, "'Complex Volume' command is deprecated: use 'Volume' instead"); int num = (int)(yyvsp[(4) - (8)].d); @@ -5203,8 +5220,8 @@ yyreduce: ;} break; - case 115: -#line 1480 "Gmsh.y" + case 116: +#line 1507 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindVolume(num)){ @@ -5223,8 +5240,8 @@ yyreduce: ;} break; - case 116: -#line 1497 "Gmsh.y" + case 117: +#line 1524 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].i); if(FindPhysicalGroup(num, MSH_PHYSICAL_VOLUME)){ @@ -5242,40 +5259,40 @@ yyreduce: ;} break; - case 117: -#line 1518 "Gmsh.y" + case 118: +#line 1545 "Gmsh.y" { TranslateShapes((yyvsp[(2) - (5)].v)[0], (yyvsp[(2) - (5)].v)[1], (yyvsp[(2) - (5)].v)[2], (yyvsp[(4) - (5)].l)); (yyval.l) = (yyvsp[(4) - (5)].l); ;} break; - case 118: -#line 1523 "Gmsh.y" + case 119: +#line 1550 "Gmsh.y" { RotateShapes((yyvsp[(3) - (11)].v)[0], (yyvsp[(3) - (11)].v)[1], (yyvsp[(3) - (11)].v)[2], (yyvsp[(5) - (11)].v)[0], (yyvsp[(5) - (11)].v)[1], (yyvsp[(5) - (11)].v)[2], (yyvsp[(7) - (11)].d), (yyvsp[(10) - (11)].l)); (yyval.l) = (yyvsp[(10) - (11)].l); ;} break; - case 119: -#line 1528 "Gmsh.y" + case 120: +#line 1555 "Gmsh.y" { SymmetryShapes((yyvsp[(2) - (5)].v)[0], (yyvsp[(2) - (5)].v)[1], (yyvsp[(2) - (5)].v)[2], (yyvsp[(2) - (5)].v)[3], (yyvsp[(4) - (5)].l)); (yyval.l) = (yyvsp[(4) - (5)].l); ;} break; - case 120: -#line 1533 "Gmsh.y" + case 121: +#line 1560 "Gmsh.y" { DilatShapes((yyvsp[(3) - (9)].v)[0], (yyvsp[(3) - (9)].v)[1], (yyvsp[(3) - (9)].v)[2], (yyvsp[(5) - (9)].d), (yyvsp[(8) - (9)].l)); (yyval.l) = (yyvsp[(8) - (9)].l); ;} break; - case 121: -#line 1538 "Gmsh.y" + case 122: +#line 1565 "Gmsh.y" { (yyval.l) = List_Create(3, 3, sizeof(Shape)); if(!strcmp((yyvsp[(1) - (4)].c), "Duplicata")){ @@ -5297,8 +5314,8 @@ yyreduce: ;} break; - case 122: -#line 1558 "Gmsh.y" + case 123: +#line 1585 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); IntersectCurvesWithSurface((yyvsp[(4) - (9)].l), (int)(yyvsp[(8) - (9)].d), (yyval.l)); @@ -5306,8 +5323,8 @@ yyreduce: ;} break; - case 123: -#line 1564 "Gmsh.y" + case 124: +#line 1591 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape*)); List_T *tmp=ListOfDouble2ListOfInt((yyvsp[(7) - (9)].l)); @@ -5317,32 +5334,32 @@ yyreduce: ;} break; - case 124: -#line 1574 "Gmsh.y" + case 125: +#line 1601 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 125: -#line 1575 "Gmsh.y" + case 126: +#line 1602 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 126: -#line 1580 "Gmsh.y" + case 127: +#line 1607 "Gmsh.y" { (yyval.l) = List_Create(3, 3, sizeof(Shape)); ;} break; - case 127: -#line 1584 "Gmsh.y" + case 128: +#line 1611 "Gmsh.y" { List_Add((yyval.l), &(yyvsp[(2) - (2)].s)); ;} break; - case 128: -#line 1588 "Gmsh.y" + case 129: +#line 1615 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -5367,8 +5384,8 @@ yyreduce: ;} break; - case 129: -#line 1611 "Gmsh.y" + case 130: +#line 1638 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -5393,8 +5410,8 @@ yyreduce: ;} break; - case 130: -#line 1634 "Gmsh.y" + case 131: +#line 1661 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -5419,8 +5436,8 @@ yyreduce: ;} break; - case 131: -#line 1657 "Gmsh.y" + case 132: +#line 1684 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -5445,8 +5462,8 @@ yyreduce: ;} break; - case 132: -#line 1685 "Gmsh.y" + case 133: +#line 1712 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; @@ -5457,15 +5474,15 @@ yyreduce: ;} break; - case 133: -#line 1694 "Gmsh.y" + case 134: +#line 1721 "Gmsh.y" { GModel::current()->getFields()->delete_field((int)(yyvsp[(4) - (6)].d)); ;} break; - case 134: -#line 1698 "Gmsh.y" + case 135: +#line 1725 "Gmsh.y" { #if !defined(HAVE_NO_POST) if(!strcmp((yyvsp[(2) - (6)].c), "View")){ @@ -5482,8 +5499,8 @@ yyreduce: ;} break; - case 135: -#line 1713 "Gmsh.y" + case 136: +#line 1740 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (3)].c), "Model") || !strcmp((yyvsp[(2) - (3)].c), "Meshes") || !strcmp((yyvsp[(2) - (3)].c), "All")){ GModel::current()->destroy(); @@ -5506,8 +5523,8 @@ yyreduce: ;} break; - case 136: -#line 1734 "Gmsh.y" + case 137: +#line 1761 "Gmsh.y" { #if !defined(HAVE_NO_POST) if(!strcmp((yyvsp[(2) - (4)].c), "Empty") && !strcmp((yyvsp[(3) - (4)].c), "Views")){ @@ -5521,8 +5538,8 @@ yyreduce: ;} break; - case 137: -#line 1751 "Gmsh.y" + case 138: +#line 1778 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; @@ -5533,8 +5550,8 @@ yyreduce: ;} break; - case 138: -#line 1765 "Gmsh.y" + case 139: +#line 1792 "Gmsh.y" { for(int i = 0; i < 4; i++) VisibilityShape((yyvsp[(2) - (3)].c), i, 1); @@ -5542,8 +5559,8 @@ yyreduce: ;} break; - case 139: -#line 1771 "Gmsh.y" + case 140: +#line 1798 "Gmsh.y" { for(int i = 0; i < 4; i++) VisibilityShape((yyvsp[(2) - (3)].c), i, 0); @@ -5551,8 +5568,8 @@ yyreduce: ;} break; - case 140: -#line 1777 "Gmsh.y" + case 141: +#line 1804 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; @@ -5563,8 +5580,8 @@ yyreduce: ;} break; - case 141: -#line 1786 "Gmsh.y" + case 142: +#line 1813 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; @@ -5575,8 +5592,8 @@ yyreduce: ;} break; - case 142: -#line 1800 "Gmsh.y" + case 143: +#line 1827 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (3)].c), "Include")){ char tmpstring[1024]; @@ -5626,8 +5643,8 @@ yyreduce: ;} break; - case 143: -#line 1848 "Gmsh.y" + case 144: +#line 1875 "Gmsh.y" { #if !defined(HAVE_NO_POST) if(!strcmp((yyvsp[(1) - (7)].c), "Save") && !strcmp((yyvsp[(2) - (7)].c), "View")){ @@ -5647,8 +5664,8 @@ yyreduce: ;} break; - case 144: -#line 1866 "Gmsh.y" + case 145: +#line 1893 "Gmsh.y" { #if !defined(HAVE_NO_POST) if(!strcmp((yyvsp[(1) - (7)].c), "Background") && !strcmp((yyvsp[(2) - (7)].c), "Mesh") && !strcmp((yyvsp[(3) - (7)].c), "View")){ @@ -5665,8 +5682,8 @@ yyreduce: ;} break; - case 145: -#line 1881 "Gmsh.y" + case 146: +#line 1908 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (3)].c), "Sleep")){ SleepInSeconds((yyvsp[(2) - (3)].d)); @@ -5687,8 +5704,8 @@ yyreduce: ;} break; - case 146: -#line 1900 "Gmsh.y" + case 147: +#line 1927 "Gmsh.y" { #if !defined(HAVE_NO_POST) try { @@ -5702,8 +5719,8 @@ yyreduce: ;} break; - case 147: -#line 1912 "Gmsh.y" + case 148: +#line 1939 "Gmsh.y" { #if !defined(HAVE_NO_POST) if(!strcmp((yyvsp[(2) - (3)].c), "ElementsFromAllViews")) @@ -5729,31 +5746,31 @@ yyreduce: ;} break; - case 148: -#line 1936 "Gmsh.y" + case 149: +#line 1963 "Gmsh.y" { exit(0); ;} break; - case 149: -#line 1940 "Gmsh.y" + case 150: +#line 1967 "Gmsh.y" { CTX.forced_bbox = 0; SetBoundingBox(); ;} break; - case 150: -#line 1945 "Gmsh.y" + case 151: +#line 1972 "Gmsh.y" { CTX.forced_bbox = 1; SetBoundingBox((yyvsp[(3) - (15)].d), (yyvsp[(5) - (15)].d), (yyvsp[(7) - (15)].d), (yyvsp[(9) - (15)].d), (yyvsp[(11) - (15)].d), (yyvsp[(13) - (15)].d)); ;} break; - case 151: -#line 1950 "Gmsh.y" + case 152: +#line 1977 "Gmsh.y" { #if defined(HAVE_FLTK) Draw(); @@ -5761,8 +5778,8 @@ yyreduce: ;} break; - case 152: -#line 1962 "Gmsh.y" + case 153: +#line 1989 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(3) - (6)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(5) - (6)].d); @@ -5781,8 +5798,8 @@ yyreduce: ;} break; - case 153: -#line 1979 "Gmsh.y" + case 154: +#line 2006 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(3) - (8)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(5) - (8)].d); @@ -5801,8 +5818,8 @@ yyreduce: ;} break; - case 154: -#line 1996 "Gmsh.y" + case 155: +#line 2023 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(5) - (8)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(7) - (8)].d); @@ -5823,8 +5840,8 @@ yyreduce: ;} break; - case 155: -#line 2015 "Gmsh.y" + case 156: +#line 2042 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(5) - (10)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(7) - (10)].d); @@ -5845,8 +5862,8 @@ yyreduce: ;} break; - case 156: -#line 2034 "Gmsh.y" + case 157: +#line 2061 "Gmsh.y" { if(ImbricatedLoop <= 0){ yymsg(0, "Invalid For/EndFor loop"); @@ -5876,8 +5893,8 @@ yyreduce: ;} break; - case 157: -#line 2062 "Gmsh.y" + case 158: +#line 2089 "Gmsh.y" { if(!FunctionManager::Instance()->createFunction((yyvsp[(2) - (2)].c), gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -5887,8 +5904,8 @@ yyreduce: ;} break; - case 158: -#line 2070 "Gmsh.y" + case 159: +#line 2097 "Gmsh.y" { if(!FunctionManager::Instance()->leaveFunction(&gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -5896,8 +5913,8 @@ yyreduce: ;} break; - case 159: -#line 2076 "Gmsh.y" + case 160: +#line 2103 "Gmsh.y" { if(!FunctionManager::Instance()->enterFunction((yyvsp[(2) - (3)].c), &gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -5906,21 +5923,21 @@ yyreduce: ;} break; - case 160: -#line 2083 "Gmsh.y" + case 161: +#line 2110 "Gmsh.y" { if(!(yyvsp[(3) - (4)].d)) skip_until("If", "EndIf"); ;} break; - case 161: -#line 2087 "Gmsh.y" + case 162: +#line 2114 "Gmsh.y" { ;} break; - case 162: -#line 2096 "Gmsh.y" + case 163: +#line 2123 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE, (yyvsp[(4) - (5)].l), @@ -5930,8 +5947,8 @@ yyreduce: ;} break; - case 163: -#line 2104 "Gmsh.y" + case 164: +#line 2131 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(ROTATE, (yyvsp[(10) - (11)].l), @@ -5941,8 +5958,8 @@ yyreduce: ;} break; - case 164: -#line 2112 "Gmsh.y" + case 165: +#line 2139 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[(12) - (13)].l), @@ -5952,15 +5969,15 @@ yyreduce: ;} break; - case 165: -#line 2120 "Gmsh.y" + case 166: +#line 2147 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 166: -#line 2124 "Gmsh.y" + case 167: +#line 2151 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE, (yyvsp[(4) - (7)].l), @@ -5970,15 +5987,15 @@ yyreduce: ;} break; - case 167: -#line 2132 "Gmsh.y" + case 168: +#line 2159 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 168: -#line 2136 "Gmsh.y" + case 169: +#line 2163 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(ROTATE, (yyvsp[(10) - (13)].l), @@ -5988,15 +6005,15 @@ yyreduce: ;} break; - case 169: -#line 2144 "Gmsh.y" + case 170: +#line 2171 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 170: -#line 2148 "Gmsh.y" + case 171: +#line 2175 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[(12) - (15)].l), @@ -6006,15 +6023,15 @@ yyreduce: ;} break; - case 171: -#line 2156 "Gmsh.y" + case 172: +#line 2183 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 172: -#line 2160 "Gmsh.y" + case 173: +#line 2187 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(BOUNDARY_LAYER, (yyvsp[(3) - (6)].l), 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., @@ -6023,8 +6040,8 @@ yyreduce: ;} break; - case 173: -#line 2169 "Gmsh.y" + case 174: +#line 2196 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[(4) - (8)].d), @@ -6033,8 +6050,8 @@ yyreduce: ;} break; - case 174: -#line 2176 "Gmsh.y" + case 175: +#line 2203 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (8)].d), @@ -6043,8 +6060,8 @@ yyreduce: ;} break; - case 175: -#line 2183 "Gmsh.y" + case 176: +#line 2210 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (8)].d), @@ -6053,8 +6070,8 @@ yyreduce: ;} break; - case 176: -#line 2190 "Gmsh.y" + case 177: +#line 2217 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[(4) - (12)].d), @@ -6063,8 +6080,8 @@ yyreduce: ;} break; - case 177: -#line 2197 "Gmsh.y" + case 178: +#line 2224 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (12)].d), @@ -6073,8 +6090,8 @@ yyreduce: ;} break; - case 178: -#line 2204 "Gmsh.y" + case 179: +#line 2231 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (12)].d), @@ -6083,8 +6100,8 @@ yyreduce: ;} break; - case 179: -#line 2211 "Gmsh.y" + case 180: +#line 2238 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[(4) - (14)].d), @@ -6093,8 +6110,8 @@ yyreduce: ;} break; - case 180: -#line 2218 "Gmsh.y" + case 181: +#line 2245 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (14)].d), @@ -6103,8 +6120,8 @@ yyreduce: ;} break; - case 181: -#line 2225 "Gmsh.y" + case 182: +#line 2252 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (14)].d), @@ -6113,15 +6130,15 @@ yyreduce: ;} break; - case 182: -#line 2232 "Gmsh.y" + case 183: +#line 2259 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 183: -#line 2236 "Gmsh.y" + case 184: +#line 2263 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[(4) - (12)].d), @@ -6130,15 +6147,15 @@ yyreduce: ;} break; - case 184: -#line 2243 "Gmsh.y" + case 185: +#line 2270 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 185: -#line 2247 "Gmsh.y" + case 186: +#line 2274 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (12)].d), @@ -6147,15 +6164,15 @@ yyreduce: ;} break; - case 186: -#line 2254 "Gmsh.y" + case 187: +#line 2281 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 187: -#line 2258 "Gmsh.y" + case 188: +#line 2285 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (12)].d), @@ -6164,15 +6181,15 @@ yyreduce: ;} break; - case 188: -#line 2265 "Gmsh.y" + case 189: +#line 2292 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 189: -#line 2269 "Gmsh.y" + case 190: +#line 2296 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[(4) - (16)].d), @@ -6181,15 +6198,15 @@ yyreduce: ;} break; - case 190: -#line 2276 "Gmsh.y" + case 191: +#line 2303 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 191: -#line 2280 "Gmsh.y" + case 192: +#line 2307 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (16)].d), @@ -6198,15 +6215,15 @@ yyreduce: ;} break; - case 192: -#line 2287 "Gmsh.y" + case 193: +#line 2314 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 193: -#line 2291 "Gmsh.y" + case 194: +#line 2318 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (16)].d), @@ -6215,15 +6232,15 @@ yyreduce: ;} break; - case 194: -#line 2298 "Gmsh.y" + case 195: +#line 2325 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 195: -#line 2302 "Gmsh.y" + case 196: +#line 2329 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[(4) - (18)].d), @@ -6232,15 +6249,15 @@ yyreduce: ;} break; - case 196: -#line 2309 "Gmsh.y" + case 197: +#line 2336 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 197: -#line 2313 "Gmsh.y" + case 198: +#line 2340 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (18)].d), @@ -6249,15 +6266,15 @@ yyreduce: ;} break; - case 198: -#line 2320 "Gmsh.y" + case 199: +#line 2347 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; ;} break; - case 199: -#line 2324 "Gmsh.y" + case 200: +#line 2351 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (18)].d), @@ -6266,20 +6283,20 @@ yyreduce: ;} break; - case 200: -#line 2335 "Gmsh.y" + case 201: +#line 2362 "Gmsh.y" { ;} break; - case 201: -#line 2338 "Gmsh.y" + case 202: +#line 2365 "Gmsh.y" { ;} break; - case 202: -#line 2344 "Gmsh.y" + case 203: +#line 2371 "Gmsh.y" { extr.mesh.ExtrudeMesh = true; extr.mesh.NbLayer = 1; @@ -6290,8 +6307,8 @@ yyreduce: ;} break; - case 203: -#line 2353 "Gmsh.y" + case 204: +#line 2380 "Gmsh.y" { extr.mesh.ExtrudeMesh = true; extr.mesh.NbLayer = List_Nbr((yyvsp[(3) - (7)].l)); @@ -6313,8 +6330,8 @@ yyreduce: ;} break; - case 204: -#line 2373 "Gmsh.y" + case 205: +#line 2400 "Gmsh.y" { yymsg(0, "Explicit region numbers in layers are deprecated"); extr.mesh.ExtrudeMesh = true; @@ -6339,15 +6356,15 @@ yyreduce: ;} break; - case 205: -#line 2396 "Gmsh.y" + case 206: +#line 2423 "Gmsh.y" { extr.mesh.Recombine = true; ;} break; - case 206: -#line 2400 "Gmsh.y" + case 207: +#line 2427 "Gmsh.y" { int num = (int)(yyvsp[(3) - (9)].d); if(FindSurface(num)){ @@ -6368,15 +6385,15 @@ yyreduce: ;} break; - case 207: -#line 2423 "Gmsh.y" + case 208: +#line 2450 "Gmsh.y" { (yyval.v)[0] = (yyval.v)[1] = 1.; ;} break; - case 208: -#line 2427 "Gmsh.y" + case 209: +#line 2454 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (3)].c), "Progression") || !strcmp((yyvsp[(2) - (3)].c), "Power")) (yyval.v)[0] = 1.; @@ -6391,15 +6408,15 @@ yyreduce: ;} break; - case 209: -#line 2442 "Gmsh.y" + case 210: +#line 2469 "Gmsh.y" { (yyval.i) = -1; // left ;} break; - case 210: -#line 2446 "Gmsh.y" + case 211: +#line 2473 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (1)].c), "Right")) (yyval.i) = 1; @@ -6411,36 +6428,36 @@ yyreduce: ;} break; - case 211: -#line 2458 "Gmsh.y" + case 212: +#line 2485 "Gmsh.y" { (yyval.l) = List_Create(1, 1, sizeof(double)); ;} break; - case 212: -#line 2462 "Gmsh.y" + case 213: +#line 2489 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (2)].l); ;} break; - case 213: -#line 2467 "Gmsh.y" + case 214: +#line 2494 "Gmsh.y" { (yyval.i) = 45; ;} break; - case 214: -#line 2471 "Gmsh.y" + case 215: +#line 2498 "Gmsh.y" { (yyval.i) = (int)(yyvsp[(2) - (2)].d); ;} break; - case 215: -#line 2478 "Gmsh.y" + case 216: +#line 2505 "Gmsh.y" { int type = (int)(yyvsp[(6) - (7)].v)[0]; double coef = fabs((yyvsp[(6) - (7)].v)[1]); @@ -6471,8 +6488,8 @@ yyreduce: ;} break; - case 216: -#line 2507 "Gmsh.y" + case 217: +#line 2534 "Gmsh.y" { int k = List_Nbr((yyvsp[(4) - (6)].l)); if(k != 0 && k != 3 && k != 4){ @@ -6522,16 +6539,16 @@ yyreduce: ;} break; - case 217: -#line 2555 "Gmsh.y" + case 218: +#line 2582 "Gmsh.y" { yymsg(1, "Elliptic Surface is deprecated: use Transfinite instead (with smoothing)"); List_Delete((yyvsp[(7) - (8)].l)); ;} break; - case 218: -#line 2560 "Gmsh.y" + case 219: +#line 2587 "Gmsh.y" { int k = List_Nbr((yyvsp[(7) - (8)].l)); if(k != 6 && k != 8){ @@ -6575,8 +6592,8 @@ yyreduce: ;} break; - case 219: -#line 2602 "Gmsh.y" + case 220: +#line 2629 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (5)].l)); i++){ double d; @@ -6600,8 +6617,8 @@ yyreduce: ;} break; - case 220: -#line 2624 "Gmsh.y" + case 221: +#line 2651 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ double d; @@ -6623,8 +6640,8 @@ yyreduce: ;} break; - case 221: -#line 2650 "Gmsh.y" + case 222: +#line 2677 "Gmsh.y" { Surface *s = FindSurface((int)(yyvsp[(8) - (10)].d)); if(s){ @@ -6649,8 +6666,8 @@ yyreduce: ;} break; - case 222: -#line 2673 "Gmsh.y" + case 223: +#line 2700 "Gmsh.y" { Surface *s = FindSurface((int)(yyvsp[(8) - (10)].d)); if(s){ @@ -6675,27 +6692,27 @@ yyreduce: ;} break; - case 223: -#line 2696 "Gmsh.y" + case 224: +#line 2723 "Gmsh.y" { ;} break; - case 224: -#line 2699 "Gmsh.y" + case 225: +#line 2726 "Gmsh.y" { ;} break; - case 225: -#line 2708 "Gmsh.y" + case 226: +#line 2735 "Gmsh.y" { ReplaceAllDuplicates(); ;} break; - case 226: -#line 2712 "Gmsh.y" + case 227: +#line 2739 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (3)].c), "Geometry")) ReplaceAllDuplicates(); @@ -6707,48 +6724,48 @@ yyreduce: ;} break; - case 227: -#line 2727 "Gmsh.y" + case 228: +#line 2754 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (1)].d); ;} break; - case 228: -#line 2728 "Gmsh.y" + case 229: +#line 2755 "Gmsh.y" { (yyval.d) = (yyvsp[(2) - (3)].d); ;} break; - case 229: -#line 2729 "Gmsh.y" + case 230: +#line 2756 "Gmsh.y" { (yyval.d) = -(yyvsp[(2) - (2)].d); ;} break; - case 230: -#line 2730 "Gmsh.y" + case 231: +#line 2757 "Gmsh.y" { (yyval.d) = (yyvsp[(2) - (2)].d); ;} break; - case 231: -#line 2731 "Gmsh.y" + case 232: +#line 2758 "Gmsh.y" { (yyval.d) = !(yyvsp[(2) - (2)].d); ;} break; - case 232: -#line 2732 "Gmsh.y" + case 233: +#line 2759 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) - (yyvsp[(3) - (3)].d); ;} break; - case 233: -#line 2733 "Gmsh.y" + case 234: +#line 2760 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) + (yyvsp[(3) - (3)].d); ;} break; - case 234: -#line 2734 "Gmsh.y" + case 235: +#line 2761 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) * (yyvsp[(3) - (3)].d); ;} break; - case 235: -#line 2736 "Gmsh.y" + case 236: +#line 2763 "Gmsh.y" { if(!(yyvsp[(3) - (3)].d)) yymsg(0, "Division by zero in '%g / %g'", (yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].d)); @@ -6757,308 +6774,308 @@ yyreduce: ;} break; - case 236: -#line 2742 "Gmsh.y" - { (yyval.d) = (int)(yyvsp[(1) - (3)].d) % (int)(yyvsp[(3) - (3)].d); ;} - break; - case 237: -#line 2743 "Gmsh.y" - { (yyval.d) = pow((yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].d)); ;} +#line 2769 "Gmsh.y" + { (yyval.d) = (int)(yyvsp[(1) - (3)].d) % (int)(yyvsp[(3) - (3)].d); ;} break; case 238: -#line 2744 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d); ;} +#line 2770 "Gmsh.y" + { (yyval.d) = pow((yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].d)); ;} break; case 239: -#line 2745 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (3)].d) > (yyvsp[(3) - (3)].d); ;} +#line 2771 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d); ;} break; case 240: -#line 2746 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (3)].d) <= (yyvsp[(3) - (3)].d); ;} +#line 2772 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) > (yyvsp[(3) - (3)].d); ;} break; case 241: -#line 2747 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (3)].d) >= (yyvsp[(3) - (3)].d); ;} +#line 2773 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) <= (yyvsp[(3) - (3)].d); ;} break; case 242: -#line 2748 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (3)].d) == (yyvsp[(3) - (3)].d); ;} +#line 2774 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) >= (yyvsp[(3) - (3)].d); ;} break; case 243: -#line 2749 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (3)].d) != (yyvsp[(3) - (3)].d); ;} +#line 2775 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) == (yyvsp[(3) - (3)].d); ;} break; case 244: -#line 2750 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (3)].d) && (yyvsp[(3) - (3)].d); ;} +#line 2776 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) != (yyvsp[(3) - (3)].d); ;} break; case 245: -#line 2751 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (3)].d) || (yyvsp[(3) - (3)].d); ;} +#line 2777 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) && (yyvsp[(3) - (3)].d); ;} break; case 246: -#line 2752 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (5)].d) ? (yyvsp[(3) - (5)].d) : (yyvsp[(5) - (5)].d); ;} +#line 2778 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) || (yyvsp[(3) - (3)].d); ;} break; case 247: -#line 2753 "Gmsh.y" - { (yyval.d) = exp((yyvsp[(3) - (4)].d)); ;} +#line 2779 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (5)].d) ? (yyvsp[(3) - (5)].d) : (yyvsp[(5) - (5)].d); ;} break; case 248: -#line 2754 "Gmsh.y" - { (yyval.d) = log((yyvsp[(3) - (4)].d)); ;} +#line 2780 "Gmsh.y" + { (yyval.d) = exp((yyvsp[(3) - (4)].d)); ;} break; case 249: -#line 2755 "Gmsh.y" - { (yyval.d) = log10((yyvsp[(3) - (4)].d)); ;} +#line 2781 "Gmsh.y" + { (yyval.d) = log((yyvsp[(3) - (4)].d)); ;} break; case 250: -#line 2756 "Gmsh.y" - { (yyval.d) = sqrt((yyvsp[(3) - (4)].d)); ;} +#line 2782 "Gmsh.y" + { (yyval.d) = log10((yyvsp[(3) - (4)].d)); ;} break; case 251: -#line 2757 "Gmsh.y" - { (yyval.d) = sin((yyvsp[(3) - (4)].d)); ;} +#line 2783 "Gmsh.y" + { (yyval.d) = sqrt((yyvsp[(3) - (4)].d)); ;} break; case 252: -#line 2758 "Gmsh.y" - { (yyval.d) = asin((yyvsp[(3) - (4)].d)); ;} +#line 2784 "Gmsh.y" + { (yyval.d) = sin((yyvsp[(3) - (4)].d)); ;} break; case 253: -#line 2759 "Gmsh.y" - { (yyval.d) = cos((yyvsp[(3) - (4)].d)); ;} +#line 2785 "Gmsh.y" + { (yyval.d) = asin((yyvsp[(3) - (4)].d)); ;} break; case 254: -#line 2760 "Gmsh.y" - { (yyval.d) = acos((yyvsp[(3) - (4)].d)); ;} +#line 2786 "Gmsh.y" + { (yyval.d) = cos((yyvsp[(3) - (4)].d)); ;} break; case 255: -#line 2761 "Gmsh.y" - { (yyval.d) = tan((yyvsp[(3) - (4)].d)); ;} +#line 2787 "Gmsh.y" + { (yyval.d) = acos((yyvsp[(3) - (4)].d)); ;} break; case 256: -#line 2762 "Gmsh.y" - { (yyval.d) = atan((yyvsp[(3) - (4)].d)); ;} +#line 2788 "Gmsh.y" + { (yyval.d) = tan((yyvsp[(3) - (4)].d)); ;} break; case 257: -#line 2763 "Gmsh.y" - { (yyval.d) = atan2((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d));;} +#line 2789 "Gmsh.y" + { (yyval.d) = atan((yyvsp[(3) - (4)].d)); ;} break; case 258: -#line 2764 "Gmsh.y" - { (yyval.d) = sinh((yyvsp[(3) - (4)].d)); ;} +#line 2790 "Gmsh.y" + { (yyval.d) = atan2((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d));;} break; case 259: -#line 2765 "Gmsh.y" - { (yyval.d) = cosh((yyvsp[(3) - (4)].d)); ;} +#line 2791 "Gmsh.y" + { (yyval.d) = sinh((yyvsp[(3) - (4)].d)); ;} break; case 260: -#line 2766 "Gmsh.y" - { (yyval.d) = tanh((yyvsp[(3) - (4)].d)); ;} +#line 2792 "Gmsh.y" + { (yyval.d) = cosh((yyvsp[(3) - (4)].d)); ;} break; case 261: -#line 2767 "Gmsh.y" - { (yyval.d) = fabs((yyvsp[(3) - (4)].d)); ;} +#line 2793 "Gmsh.y" + { (yyval.d) = tanh((yyvsp[(3) - (4)].d)); ;} break; case 262: -#line 2768 "Gmsh.y" - { (yyval.d) = floor((yyvsp[(3) - (4)].d)); ;} +#line 2794 "Gmsh.y" + { (yyval.d) = fabs((yyvsp[(3) - (4)].d)); ;} break; case 263: -#line 2769 "Gmsh.y" - { (yyval.d) = ceil((yyvsp[(3) - (4)].d)); ;} +#line 2795 "Gmsh.y" + { (yyval.d) = floor((yyvsp[(3) - (4)].d)); ;} break; case 264: -#line 2770 "Gmsh.y" - { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} +#line 2796 "Gmsh.y" + { (yyval.d) = ceil((yyvsp[(3) - (4)].d)); ;} break; case 265: -#line 2771 "Gmsh.y" +#line 2797 "Gmsh.y" { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 266: -#line 2772 "Gmsh.y" - { (yyval.d) = sqrt((yyvsp[(3) - (6)].d) * (yyvsp[(3) - (6)].d) + (yyvsp[(5) - (6)].d) * (yyvsp[(5) - (6)].d)); ;} +#line 2798 "Gmsh.y" + { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 267: -#line 2773 "Gmsh.y" - { (yyval.d) = (yyvsp[(3) - (4)].d) * (double)rand() / (double)RAND_MAX; ;} +#line 2799 "Gmsh.y" + { (yyval.d) = sqrt((yyvsp[(3) - (6)].d) * (yyvsp[(3) - (6)].d) + (yyvsp[(5) - (6)].d) * (yyvsp[(5) - (6)].d)); ;} break; case 268: -#line 2775 "Gmsh.y" - { (yyval.d) = exp((yyvsp[(3) - (4)].d)); ;} +#line 2800 "Gmsh.y" + { (yyval.d) = (yyvsp[(3) - (4)].d) * (double)rand() / (double)RAND_MAX; ;} break; case 269: -#line 2776 "Gmsh.y" - { (yyval.d) = log((yyvsp[(3) - (4)].d)); ;} +#line 2802 "Gmsh.y" + { (yyval.d) = exp((yyvsp[(3) - (4)].d)); ;} break; case 270: -#line 2777 "Gmsh.y" - { (yyval.d) = log10((yyvsp[(3) - (4)].d)); ;} +#line 2803 "Gmsh.y" + { (yyval.d) = log((yyvsp[(3) - (4)].d)); ;} break; case 271: -#line 2778 "Gmsh.y" - { (yyval.d) = sqrt((yyvsp[(3) - (4)].d)); ;} +#line 2804 "Gmsh.y" + { (yyval.d) = log10((yyvsp[(3) - (4)].d)); ;} break; case 272: -#line 2779 "Gmsh.y" - { (yyval.d) = sin((yyvsp[(3) - (4)].d)); ;} +#line 2805 "Gmsh.y" + { (yyval.d) = sqrt((yyvsp[(3) - (4)].d)); ;} break; case 273: -#line 2780 "Gmsh.y" - { (yyval.d) = asin((yyvsp[(3) - (4)].d)); ;} +#line 2806 "Gmsh.y" + { (yyval.d) = sin((yyvsp[(3) - (4)].d)); ;} break; case 274: -#line 2781 "Gmsh.y" - { (yyval.d) = cos((yyvsp[(3) - (4)].d)); ;} +#line 2807 "Gmsh.y" + { (yyval.d) = asin((yyvsp[(3) - (4)].d)); ;} break; case 275: -#line 2782 "Gmsh.y" - { (yyval.d) = acos((yyvsp[(3) - (4)].d)); ;} +#line 2808 "Gmsh.y" + { (yyval.d) = cos((yyvsp[(3) - (4)].d)); ;} break; case 276: -#line 2783 "Gmsh.y" - { (yyval.d) = tan((yyvsp[(3) - (4)].d)); ;} +#line 2809 "Gmsh.y" + { (yyval.d) = acos((yyvsp[(3) - (4)].d)); ;} break; case 277: -#line 2784 "Gmsh.y" - { (yyval.d) = atan((yyvsp[(3) - (4)].d)); ;} +#line 2810 "Gmsh.y" + { (yyval.d) = tan((yyvsp[(3) - (4)].d)); ;} break; case 278: -#line 2785 "Gmsh.y" - { (yyval.d) = atan2((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d));;} +#line 2811 "Gmsh.y" + { (yyval.d) = atan((yyvsp[(3) - (4)].d)); ;} break; case 279: -#line 2786 "Gmsh.y" - { (yyval.d) = sinh((yyvsp[(3) - (4)].d)); ;} +#line 2812 "Gmsh.y" + { (yyval.d) = atan2((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d));;} break; case 280: -#line 2787 "Gmsh.y" - { (yyval.d) = cosh((yyvsp[(3) - (4)].d)); ;} +#line 2813 "Gmsh.y" + { (yyval.d) = sinh((yyvsp[(3) - (4)].d)); ;} break; case 281: -#line 2788 "Gmsh.y" - { (yyval.d) = tanh((yyvsp[(3) - (4)].d)); ;} +#line 2814 "Gmsh.y" + { (yyval.d) = cosh((yyvsp[(3) - (4)].d)); ;} break; case 282: -#line 2789 "Gmsh.y" - { (yyval.d) = fabs((yyvsp[(3) - (4)].d)); ;} +#line 2815 "Gmsh.y" + { (yyval.d) = tanh((yyvsp[(3) - (4)].d)); ;} break; case 283: -#line 2790 "Gmsh.y" - { (yyval.d) = floor((yyvsp[(3) - (4)].d)); ;} +#line 2816 "Gmsh.y" + { (yyval.d) = fabs((yyvsp[(3) - (4)].d)); ;} break; case 284: -#line 2791 "Gmsh.y" - { (yyval.d) = ceil((yyvsp[(3) - (4)].d)); ;} +#line 2817 "Gmsh.y" + { (yyval.d) = floor((yyvsp[(3) - (4)].d)); ;} break; case 285: -#line 2792 "Gmsh.y" - { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} +#line 2818 "Gmsh.y" + { (yyval.d) = ceil((yyvsp[(3) - (4)].d)); ;} break; case 286: -#line 2793 "Gmsh.y" +#line 2819 "Gmsh.y" { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 287: -#line 2794 "Gmsh.y" - { (yyval.d) = sqrt((yyvsp[(3) - (6)].d) * (yyvsp[(3) - (6)].d) + (yyvsp[(5) - (6)].d) * (yyvsp[(5) - (6)].d)); ;} +#line 2820 "Gmsh.y" + { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 288: -#line 2795 "Gmsh.y" - { (yyval.d) = (yyvsp[(3) - (4)].d) * (double)rand() / (double)RAND_MAX; ;} +#line 2821 "Gmsh.y" + { (yyval.d) = sqrt((yyvsp[(3) - (6)].d) * (yyvsp[(3) - (6)].d) + (yyvsp[(5) - (6)].d) * (yyvsp[(5) - (6)].d)); ;} break; case 289: -#line 2804 "Gmsh.y" - { (yyval.d) = (yyvsp[(1) - (1)].d); ;} +#line 2822 "Gmsh.y" + { (yyval.d) = (yyvsp[(3) - (4)].d) * (double)rand() / (double)RAND_MAX; ;} break; case 290: -#line 2805 "Gmsh.y" - { (yyval.d) = 3.141592653589793; ;} +#line 2831 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (1)].d); ;} break; case 291: -#line 2806 "Gmsh.y" - { (yyval.d) = Msg::GetCommRank(); ;} +#line 2832 "Gmsh.y" + { (yyval.d) = 3.141592653589793; ;} break; case 292: -#line 2807 "Gmsh.y" - { (yyval.d) = Msg::GetCommSize(); ;} +#line 2833 "Gmsh.y" + { (yyval.d) = Msg::GetCommRank(); ;} break; case 293: -#line 2808 "Gmsh.y" - { (yyval.d) = Get_GmshMajorVersion(); ;} +#line 2834 "Gmsh.y" + { (yyval.d) = Msg::GetCommSize(); ;} break; case 294: -#line 2809 "Gmsh.y" - { (yyval.d) = Get_GmshMinorVersion(); ;} +#line 2835 "Gmsh.y" + { (yyval.d) = Get_GmshMajorVersion(); ;} break; case 295: -#line 2810 "Gmsh.y" - { (yyval.d) = Get_GmshPatchVersion(); ;} +#line 2836 "Gmsh.y" + { (yyval.d) = Get_GmshMinorVersion(); ;} break; case 296: -#line 2815 "Gmsh.y" +#line 2837 "Gmsh.y" + { (yyval.d) = Get_GmshPatchVersion(); ;} + break; + + case 297: +#line 2842 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (1)].c))){ yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (1)].c)); @@ -7070,8 +7087,8 @@ yyreduce: ;} break; - case 297: -#line 2828 "Gmsh.y" + case 298: +#line 2855 "Gmsh.y" { char tmpstring[1024]; sprintf(tmpstring, "%s_%d", (yyvsp[(1) - (5)].c), (int)(yyvsp[(4) - (5)].d)) ; @@ -7085,8 +7102,8 @@ yyreduce: ;} break; - case 298: -#line 2840 "Gmsh.y" + case 299: +#line 2867 "Gmsh.y" { int index = (int)(yyvsp[(3) - (4)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ @@ -7103,8 +7120,8 @@ yyreduce: ;} break; - case 299: -#line 2855 "Gmsh.y" + case 300: +#line 2882 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(2) - (4)].c))){ yymsg(0, "Unknown variable '%s'", (yyvsp[(2) - (4)].c)); @@ -7116,8 +7133,8 @@ yyreduce: ;} break; - case 300: -#line 2865 "Gmsh.y" + case 301: +#line 2892 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (2)].c))){ yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (2)].c)); @@ -7129,8 +7146,8 @@ yyreduce: ;} break; - case 301: -#line 2875 "Gmsh.y" + case 302: +#line 2902 "Gmsh.y" { int index = (int)(yyvsp[(3) - (5)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ @@ -7147,24 +7164,24 @@ yyreduce: ;} break; - case 302: -#line 2893 "Gmsh.y" + case 303: +#line 2920 "Gmsh.y" { NumberOption(GMSH_GET, (yyvsp[(1) - (3)].c), 0, (yyvsp[(3) - (3)].c), (yyval.d)); Free((yyvsp[(1) - (3)].c)); Free((yyvsp[(3) - (3)].c)); ;} break; - case 303: -#line 2898 "Gmsh.y" + case 304: +#line 2925 "Gmsh.y" { NumberOption(GMSH_GET, (yyvsp[(1) - (6)].c), (int)(yyvsp[(3) - (6)].d), (yyvsp[(6) - (6)].c), (yyval.d)); Free((yyvsp[(1) - (6)].c)); Free((yyvsp[(6) - (6)].c)); ;} break; - case 304: -#line 2903 "Gmsh.y" + case 305: +#line 2930 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (4)].c), 0, (yyvsp[(3) - (4)].c), d)){ @@ -7176,8 +7193,8 @@ yyreduce: ;} break; - case 305: -#line 2913 "Gmsh.y" + case 306: +#line 2940 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(6) - (7)].c), d)){ @@ -7189,124 +7206,124 @@ yyreduce: ;} break; - case 306: -#line 2923 "Gmsh.y" + case 307: +#line 2950 "Gmsh.y" { (yyval.d) = Msg::GetValue((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].d)); Free((yyvsp[(3) - (6)].c)); ;} break; - case 307: -#line 2931 "Gmsh.y" + case 308: +#line 2958 "Gmsh.y" { memcpy((yyval.v), (yyvsp[(1) - (1)].v), 5*sizeof(double)); ;} break; - case 308: -#line 2935 "Gmsh.y" + case 309: +#line 2962 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = -(yyvsp[(2) - (2)].v)[i]; ;} break; - case 309: -#line 2939 "Gmsh.y" + case 310: +#line 2966 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(2) - (2)].v)[i]; ;} break; - case 310: -#line 2943 "Gmsh.y" + case 311: +#line 2970 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(1) - (3)].v)[i] - (yyvsp[(3) - (3)].v)[i]; ;} break; - case 311: -#line 2947 "Gmsh.y" + case 312: +#line 2974 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(1) - (3)].v)[i] + (yyvsp[(3) - (3)].v)[i]; ;} break; - case 312: -#line 2954 "Gmsh.y" + case 313: +#line 2981 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (11)].d); (yyval.v)[1] = (yyvsp[(4) - (11)].d); (yyval.v)[2] = (yyvsp[(6) - (11)].d); (yyval.v)[3] = (yyvsp[(8) - (11)].d); (yyval.v)[4] = (yyvsp[(10) - (11)].d); ;} break; - case 313: -#line 2958 "Gmsh.y" + case 314: +#line 2985 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (9)].d); (yyval.v)[1] = (yyvsp[(4) - (9)].d); (yyval.v)[2] = (yyvsp[(6) - (9)].d); (yyval.v)[3] = (yyvsp[(8) - (9)].d); (yyval.v)[4] = 1.0; ;} break; - case 314: -#line 2962 "Gmsh.y" + case 315: +#line 2989 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (7)].d); (yyval.v)[1] = (yyvsp[(4) - (7)].d); (yyval.v)[2] = (yyvsp[(6) - (7)].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; ;} break; - case 315: -#line 2966 "Gmsh.y" + case 316: +#line 2993 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (7)].d); (yyval.v)[1] = (yyvsp[(4) - (7)].d); (yyval.v)[2] = (yyvsp[(6) - (7)].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; ;} break; - case 316: -#line 2973 "Gmsh.y" + case 317: +#line 3000 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(List_T*)); List_Add((yyval.l), &((yyvsp[(1) - (1)].l))); ;} break; - case 317: -#line 2978 "Gmsh.y" + case 318: +#line 3005 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].l))); ;} break; - case 318: -#line 2985 "Gmsh.y" + case 319: +#line 3012 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); List_Add((yyval.l), &((yyvsp[(1) - (1)].d))); ;} break; - case 319: -#line 2990 "Gmsh.y" + case 320: +#line 3017 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 320: -#line 2994 "Gmsh.y" + case 321: +#line 3021 "Gmsh.y" { // creates an empty list (yyval.l) = List_Create(2, 1, sizeof(double)); ;} break; - case 321: -#line 2999 "Gmsh.y" + case 322: +#line 3026 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (3)].l); ;} break; - case 322: -#line 3003 "Gmsh.y" + case 323: +#line 3030 "Gmsh.y" { (yyval.l) = (yyvsp[(3) - (4)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -7316,8 +7333,8 @@ yyreduce: ;} break; - case 323: -#line 3011 "Gmsh.y" + case 324: +#line 3038 "Gmsh.y" { (yyval.l) = (yyvsp[(4) - (5)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -7327,8 +7344,8 @@ yyreduce: ;} break; - case 324: -#line 3022 "Gmsh.y" + case 325: +#line 3049 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (2)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -7338,8 +7355,8 @@ yyreduce: ;} break; - case 325: -#line 3030 "Gmsh.y" + case 326: +#line 3057 "Gmsh.y" { (yyval.l) = (yyvsp[(3) - (3)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -7349,8 +7366,8 @@ yyreduce: ;} break; - case 326: -#line 3038 "Gmsh.y" + case 327: +#line 3065 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); for(double d = (yyvsp[(1) - (3)].d); ((yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d)) ? (d <= (yyvsp[(3) - (3)].d)) : (d >= (yyvsp[(3) - (3)].d)); @@ -7359,8 +7376,8 @@ yyreduce: ;} break; - case 327: -#line 3045 "Gmsh.y" + case 328: +#line 3072 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!(yyvsp[(5) - (5)].d) || ((yyvsp[(1) - (5)].d) < (yyvsp[(3) - (5)].d) && (yyvsp[(5) - (5)].d) < 0) || ((yyvsp[(1) - (5)].d) > (yyvsp[(3) - (5)].d) && (yyvsp[(5) - (5)].d) > 0)){ @@ -7373,8 +7390,8 @@ yyreduce: ;} break; - case 328: -#line 3056 "Gmsh.y" + case 329: +#line 3083 "Gmsh.y" { // Returns the coordinates of a point and fills a list with it. // This allows to ensure e.g. that relative point positions are @@ -7396,8 +7413,8 @@ yyreduce: ;} break; - case 329: -#line 3076 "Gmsh.y" + case 330: +#line 3103 "Gmsh.y" { (yyval.l) = List_Create(List_Nbr((yyvsp[(1) - (1)].l)), 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(1) - (1)].l)); i++){ @@ -7409,8 +7426,8 @@ yyreduce: ;} break; - case 330: -#line 3086 "Gmsh.y" + case 331: +#line 3113 "Gmsh.y" { (yyval.l) = List_Create(List_Nbr((yyvsp[(1) - (1)].l)), 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(1) - (1)].l)); i++){ @@ -7422,8 +7439,8 @@ yyreduce: ;} break; - case 331: -#line 3096 "Gmsh.y" + case 332: +#line 3123 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) @@ -7435,8 +7452,8 @@ yyreduce: ;} break; - case 332: -#line 3106 "Gmsh.y" + case 333: +#line 3133 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (6)].c))) @@ -7455,30 +7472,30 @@ yyreduce: ;} break; - case 333: -#line 3126 "Gmsh.y" + case 334: +#line 3153 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); List_Add((yyval.l), &((yyvsp[(1) - (1)].d))); ;} break; - case 334: -#line 3131 "Gmsh.y" + case 335: +#line 3158 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 335: -#line 3135 "Gmsh.y" + case 336: +#line 3162 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].d))); ;} break; - case 336: -#line 3139 "Gmsh.y" + case 337: +#line 3166 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (3)].l)); i++){ double d; @@ -7489,22 +7506,22 @@ yyreduce: ;} break; - case 337: -#line 3151 "Gmsh.y" + case 338: +#line 3178 "Gmsh.y" { (yyval.u) = CTX.PACK_COLOR((int)(yyvsp[(2) - (9)].d), (int)(yyvsp[(4) - (9)].d), (int)(yyvsp[(6) - (9)].d), (int)(yyvsp[(8) - (9)].d)); ;} break; - case 338: -#line 3155 "Gmsh.y" + case 339: +#line 3182 "Gmsh.y" { (yyval.u) = CTX.PACK_COLOR((int)(yyvsp[(2) - (7)].d), (int)(yyvsp[(4) - (7)].d), (int)(yyvsp[(6) - (7)].d), 255); ;} break; - case 339: -#line 3167 "Gmsh.y" + case 340: +#line 3194 "Gmsh.y" { int flag; (yyval.u) = Get_ColorForString(ColorString, -1, (yyvsp[(1) - (1)].c), &flag); @@ -7513,8 +7530,8 @@ yyreduce: ;} break; - case 340: -#line 3174 "Gmsh.y" + case 341: +#line 3201 "Gmsh.y" { unsigned int val = 0; ColorOption(GMSH_GET, (yyvsp[(1) - (5)].c), 0, (yyvsp[(5) - (5)].c), val); @@ -7523,15 +7540,15 @@ yyreduce: ;} break; - case 341: -#line 3184 "Gmsh.y" + case 342: +#line 3211 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (3)].l); ;} break; - case 342: -#line 3188 "Gmsh.y" + case 343: +#line 3215 "Gmsh.y" { (yyval.l) = List_Create(256, 10, sizeof(unsigned int)); GmshColorTable *ct = Get_ColorTable((int)(yyvsp[(3) - (6)].d)); @@ -7545,30 +7562,30 @@ yyreduce: ;} break; - case 343: -#line 3203 "Gmsh.y" + case 344: +#line 3230 "Gmsh.y" { (yyval.l) = List_Create(256, 10, sizeof(unsigned int)); List_Add((yyval.l), &((yyvsp[(1) - (1)].u))); ;} break; - case 344: -#line 3208 "Gmsh.y" + case 345: +#line 3235 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].u))); ;} break; - case 345: -#line 3215 "Gmsh.y" + case 346: +#line 3242 "Gmsh.y" { (yyval.c) = (yyvsp[(1) - (1)].c); ;} break; - case 346: -#line 3219 "Gmsh.y" + case 347: +#line 3246 "Gmsh.y" { if(!gmsh_yystringsymbols.count((yyvsp[(1) - (1)].c))){ yymsg(0, "Unknown string variable '%s'", (yyvsp[(1) - (1)].c)); @@ -7583,8 +7600,8 @@ yyreduce: ;} break; - case 347: -#line 3232 "Gmsh.y" + case 348: +#line 3259 "Gmsh.y" { const char *val = ""; StringOption(GMSH_GET, (yyvsp[(1) - (3)].c), 0, (yyvsp[(3) - (3)].c), val); @@ -7594,8 +7611,8 @@ yyreduce: ;} break; - case 348: -#line 3240 "Gmsh.y" + case 349: +#line 3267 "Gmsh.y" { const char *val = ""; StringOption(GMSH_GET, (yyvsp[(1) - (6)].c), (int)(yyvsp[(3) - (6)].d), (yyvsp[(6) - (6)].c), val); @@ -7605,15 +7622,15 @@ yyreduce: ;} break; - case 349: -#line 3251 "Gmsh.y" + case 350: +#line 3278 "Gmsh.y" { (yyval.c) = (yyvsp[(1) - (1)].c); ;} break; - case 350: -#line 3255 "Gmsh.y" + case 351: +#line 3282 "Gmsh.y" { (yyval.c) = (char *)Malloc(32 * sizeof(char)); time_t now; @@ -7623,8 +7640,8 @@ yyreduce: ;} break; - case 351: -#line 3263 "Gmsh.y" + case 352: +#line 3290 "Gmsh.y" { (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (6)].c)) + strlen((yyvsp[(5) - (6)].c)) + 1) * sizeof(char)); strcpy((yyval.c), (yyvsp[(3) - (6)].c)); @@ -7634,8 +7651,8 @@ yyreduce: ;} break; - case 352: -#line 3271 "Gmsh.y" + case 353: +#line 3298 "Gmsh.y" { (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (4)].c)) + 1) * sizeof(char)); int i; @@ -7651,8 +7668,8 @@ yyreduce: ;} break; - case 353: -#line 3285 "Gmsh.y" + case 354: +#line 3312 "Gmsh.y" { (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (4)].c)) + 1) * sizeof(char)); int i; @@ -7668,15 +7685,15 @@ yyreduce: ;} break; - case 354: -#line 3299 "Gmsh.y" + case 355: +#line 3326 "Gmsh.y" { (yyval.c) = (yyvsp[(3) - (4)].c); ;} break; - case 355: -#line 3303 "Gmsh.y" + case 356: +#line 3330 "Gmsh.y" { char tmpstring[1024]; int i = PrintListOfDouble((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].l), tmpstring); @@ -7699,7 +7716,7 @@ yyreduce: /* Line 1267 of yacc.c. */ -#line 7703 "Gmsh.tab.cpp" +#line 7720 "Gmsh.tab.cpp" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -7913,7 +7930,7 @@ yyreturn: } -#line 3323 "Gmsh.y" +#line 3350 "Gmsh.y" int PrintListOfDouble(char *format, List_T *list, char *buffer) diff --git a/Parser/Gmsh.tab.hpp b/Parser/Gmsh.tab.hpp index d15de655a57f5fbe45b56e98892fc57fab141313..5f805ef2519ee30c5f133636f68a490beb4fb9ec 100644 --- a/Parser/Gmsh.tab.hpp +++ b/Parser/Gmsh.tab.hpp @@ -97,65 +97,67 @@ tTransfinite = 313, tComplex = 314, tPhysical = 315, - tUsing = 316, - tPlugin = 317, - tRotate = 318, - tTranslate = 319, - tSymmetry = 320, - tDilate = 321, - tExtrude = 322, - tLoop = 323, - tRecombine = 324, - tSmoother = 325, - tSplit = 326, - tDelete = 327, - tCoherence = 328, - tIntersect = 329, - tLayers = 330, - tHole = 331, - tAlias = 332, - tAliasWithOptions = 333, - tText2D = 334, - tText3D = 335, - tInterpolationScheme = 336, - tTime = 337, - tCombine = 338, - tBSpline = 339, - tBezier = 340, - tNurbs = 341, - tOrder = 342, - tKnots = 343, - tColor = 344, - tColorTable = 345, - tFor = 346, - tIn = 347, - tEndFor = 348, - tIf = 349, - tEndIf = 350, - tExit = 351, - tField = 352, - tReturn = 353, - tCall = 354, - tFunction = 355, - tShow = 356, - tHide = 357, - tGetValue = 358, - tGMSH_MAJOR_VERSION = 359, - tGMSH_MINOR_VERSION = 360, - tGMSH_PATCH_VERSION = 361, - tAFFECTDIVIDE = 362, - tAFFECTTIMES = 363, - tAFFECTMINUS = 364, - tAFFECTPLUS = 365, - tOR = 366, - tAND = 367, - tNOTEQUAL = 368, - tEQUAL = 369, - tGREATEROREQUAL = 370, - tLESSOREQUAL = 371, - UNARYPREC = 372, - tMINUSMINUS = 373, - tPLUSPLUS = 374 + tCompound = 316, + tBoundary = 317, + tUsing = 318, + tPlugin = 319, + tRotate = 320, + tTranslate = 321, + tSymmetry = 322, + tDilate = 323, + tExtrude = 324, + tLoop = 325, + tRecombine = 326, + tSmoother = 327, + tSplit = 328, + tDelete = 329, + tCoherence = 330, + tIntersect = 331, + tLayers = 332, + tHole = 333, + tAlias = 334, + tAliasWithOptions = 335, + tText2D = 336, + tText3D = 337, + tInterpolationScheme = 338, + tTime = 339, + tCombine = 340, + tBSpline = 341, + tBezier = 342, + tNurbs = 343, + tOrder = 344, + tKnots = 345, + tColor = 346, + tColorTable = 347, + tFor = 348, + tIn = 349, + tEndFor = 350, + tIf = 351, + tEndIf = 352, + tExit = 353, + tField = 354, + tReturn = 355, + tCall = 356, + tFunction = 357, + tShow = 358, + tHide = 359, + tGetValue = 360, + tGMSH_MAJOR_VERSION = 361, + tGMSH_MINOR_VERSION = 362, + tGMSH_PATCH_VERSION = 363, + tAFFECTDIVIDE = 364, + tAFFECTTIMES = 365, + tAFFECTMINUS = 366, + tAFFECTPLUS = 367, + tOR = 368, + tAND = 369, + tNOTEQUAL = 370, + tEQUAL = 371, + tGREATEROREQUAL = 372, + tLESSOREQUAL = 373, + UNARYPREC = 374, + tMINUSMINUS = 375, + tPLUSPLUS = 376 }; #endif /* Tokens. */ @@ -217,65 +219,67 @@ #define tTransfinite 313 #define tComplex 314 #define tPhysical 315 -#define tUsing 316 -#define tPlugin 317 -#define tRotate 318 -#define tTranslate 319 -#define tSymmetry 320 -#define tDilate 321 -#define tExtrude 322 -#define tLoop 323 -#define tRecombine 324 -#define tSmoother 325 -#define tSplit 326 -#define tDelete 327 -#define tCoherence 328 -#define tIntersect 329 -#define tLayers 330 -#define tHole 331 -#define tAlias 332 -#define tAliasWithOptions 333 -#define tText2D 334 -#define tText3D 335 -#define tInterpolationScheme 336 -#define tTime 337 -#define tCombine 338 -#define tBSpline 339 -#define tBezier 340 -#define tNurbs 341 -#define tOrder 342 -#define tKnots 343 -#define tColor 344 -#define tColorTable 345 -#define tFor 346 -#define tIn 347 -#define tEndFor 348 -#define tIf 349 -#define tEndIf 350 -#define tExit 351 -#define tField 352 -#define tReturn 353 -#define tCall 354 -#define tFunction 355 -#define tShow 356 -#define tHide 357 -#define tGetValue 358 -#define tGMSH_MAJOR_VERSION 359 -#define tGMSH_MINOR_VERSION 360 -#define tGMSH_PATCH_VERSION 361 -#define tAFFECTDIVIDE 362 -#define tAFFECTTIMES 363 -#define tAFFECTMINUS 364 -#define tAFFECTPLUS 365 -#define tOR 366 -#define tAND 367 -#define tNOTEQUAL 368 -#define tEQUAL 369 -#define tGREATEROREQUAL 370 -#define tLESSOREQUAL 371 -#define UNARYPREC 372 -#define tMINUSMINUS 373 -#define tPLUSPLUS 374 +#define tCompound 316 +#define tBoundary 317 +#define tUsing 318 +#define tPlugin 319 +#define tRotate 320 +#define tTranslate 321 +#define tSymmetry 322 +#define tDilate 323 +#define tExtrude 324 +#define tLoop 325 +#define tRecombine 326 +#define tSmoother 327 +#define tSplit 328 +#define tDelete 329 +#define tCoherence 330 +#define tIntersect 331 +#define tLayers 332 +#define tHole 333 +#define tAlias 334 +#define tAliasWithOptions 335 +#define tText2D 336 +#define tText3D 337 +#define tInterpolationScheme 338 +#define tTime 339 +#define tCombine 340 +#define tBSpline 341 +#define tBezier 342 +#define tNurbs 343 +#define tOrder 344 +#define tKnots 345 +#define tColor 346 +#define tColorTable 347 +#define tFor 348 +#define tIn 349 +#define tEndFor 350 +#define tIf 351 +#define tEndIf 352 +#define tExit 353 +#define tField 354 +#define tReturn 355 +#define tCall 356 +#define tFunction 357 +#define tShow 358 +#define tHide 359 +#define tGetValue 360 +#define tGMSH_MAJOR_VERSION 361 +#define tGMSH_MINOR_VERSION 362 +#define tGMSH_PATCH_VERSION 363 +#define tAFFECTDIVIDE 364 +#define tAFFECTTIMES 365 +#define tAFFECTMINUS 366 +#define tAFFECTPLUS 367 +#define tOR 368 +#define tAND 369 +#define tNOTEQUAL 370 +#define tEQUAL 371 +#define tGREATEROREQUAL 372 +#define tLESSOREQUAL 373 +#define UNARYPREC 374 +#define tMINUSMINUS 375 +#define tPLUSPLUS 376 @@ -293,7 +297,7 @@ typedef union YYSTYPE List_T *l; } /* Line 1529 of yacc.c. */ -#line 297 "Gmsh.tab.hpp" +#line 301 "Gmsh.tab.hpp" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 diff --git a/Parser/Gmsh.y b/Parser/Gmsh.y index f4fa633cd3459f2dc7c879a41e96e70f30e407b8..c402b91561db21c03301e749f3be453d8b43fecf 100644 --- a/Parser/Gmsh.y +++ b/Parser/Gmsh.y @@ -89,7 +89,7 @@ void FixRelativePath(const char *in, char *out); %token tBoundingBox tDraw tToday %token tPoint tCircle tEllipse tLine tSphere tPolarSphere tSurface tSpline tVolume %token tCharacteristic tLength tParametric tElliptic -%token tPlane tRuled tTransfinite tComplex tPhysical +%token tPlane tRuled tTransfinite tComplex tPhysical tCompound tBoundary %token tUsing tPlugin %token tRotate tTranslate tSymmetry tDilate tExtrude %token tLoop tRecombine tSmoother tSplit tDelete tCoherence tIntersect @@ -1455,6 +1455,33 @@ Shape : $$.Num = num; } + | tCompound tSurface '(' FExpr ')' tAFFECT ListOfDouble tBoundary '{' RecursiveListOfListOfDouble '}' tEND + { + int num = (int)$4; + if(FindPhysicalGroup(num, MSH_PHYSICAL_SURFACE)){ + yymsg(0, "Physical surface %d already exists", num); + } + else{ + List_T *temp = ListOfDouble2ListOfInt($7); + List_T *S[4] = {0,0,0,0}; + for (int i=0;i<List_Nbr($10);i++){ + List_T *ll; + List_Read($10,i,&ll); + S[i] = ListOfDouble2ListOfInt(ll); + } + + PhysicalGroup *p = Create_PhysicalGroup(num, MSH_PHYSICAL_SURFACE, temp, S); + List_Delete(temp); + for (int i=0;i<List_Nbr($10);i++) + List_Delete(S[i]); + + List_Add(GModel::current()->getGEOInternals()->PhysicalGroups, &p); + } + List_Delete($7); + $$.Type = MSH_PHYSICAL_SURFACE; + $$.Num = num; + } + // Volumes // for backward compatibility: diff --git a/Parser/Gmsh.yy.cpp b/Parser/Gmsh.yy.cpp index ab33a065bc94d1df3ee0aefd8442710838d80156..5c619aaccf3c51c49a299fa57e07d2d9e4c57fd4 100644 --- a/Parser/Gmsh.yy.cpp +++ b/Parser/Gmsh.yy.cpp @@ -364,8 +364,8 @@ static void yy_fatal_error (yyconst char msg[] ); *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 141 -#define YY_END_OF_BUFFER 142 +#define YY_NUM_RULES 142 +#define YY_END_OF_BUFFER 143 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info @@ -373,72 +373,74 @@ struct yy_trans_info flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static yyconst flex_int16_t yy_accept[588] = +static yyconst flex_int16_t yy_accept[592] = { 0, - 0, 0, 142, 140, 1, 1, 140, 5, 140, 6, - 140, 140, 140, 140, 140, 135, 21, 2, 140, 16, - 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 140, 28, 24, 19, 25, 17, 26, - 18, 0, 137, 3, 4, 20, 136, 135, 0, 29, - 27, 30, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 83, 82, 139, 139, 139, - - 139, 139, 139, 139, 139, 139, 139, 139, 99, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 125, 126, 139, 139, 139, 139, - 139, 139, 139, 23, 22, 0, 136, 0, 0, 138, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 49, 139, 139, - 139, 139, 139, 139, 139, 60, 139, 139, 139, 139, - 139, 73, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 90, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - - 139, 139, 139, 113, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 131, 139, 139, 139, 139, 139, 0, - 137, 0, 0, 136, 31, 139, 139, 139, 139, 35, - 37, 139, 139, 139, 56, 139, 44, 139, 139, 139, - 139, 139, 139, 139, 48, 139, 139, 59, 139, 139, - 139, 139, 68, 139, 69, 139, 139, 72, 139, 139, - 139, 79, 80, 139, 139, 139, 139, 139, 139, 88, - 139, 89, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 109, 139, 139, 139, 139, 123, 114, - 139, 139, 139, 139, 112, 139, 139, 139, 139, 139, - - 127, 130, 139, 139, 139, 139, 10, 15, 9, 8, - 139, 12, 14, 0, 136, 33, 139, 139, 139, 39, - 139, 139, 139, 139, 139, 139, 139, 52, 139, 139, - 139, 139, 139, 139, 139, 66, 139, 139, 70, 71, - 139, 139, 139, 81, 139, 139, 86, 139, 139, 91, - 139, 139, 139, 96, 97, 139, 139, 100, 139, 101, - 139, 139, 139, 139, 139, 108, 139, 139, 139, 117, - 139, 139, 139, 139, 139, 139, 132, 139, 133, 139, - 11, 139, 13, 139, 32, 36, 38, 139, 41, 139, - 139, 139, 45, 139, 139, 139, 139, 139, 57, 58, - - 139, 139, 65, 139, 139, 139, 139, 139, 139, 139, - 139, 92, 87, 139, 139, 93, 139, 139, 105, 139, - 104, 139, 110, 107, 139, 115, 116, 139, 120, 139, - 139, 139, 139, 139, 139, 134, 7, 139, 40, 42, - 139, 139, 139, 139, 139, 47, 51, 139, 62, 139, - 139, 139, 63, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 119, 139, 139, - 118, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 61, 64, 139, 74, 139, 139, 139, 75, 139, - 139, 94, 95, 139, 98, 139, 139, 111, 139, 139, - - 124, 139, 139, 139, 139, 139, 139, 46, 139, 139, - 67, 139, 139, 139, 139, 84, 139, 139, 106, 121, - 139, 139, 129, 139, 139, 55, 139, 53, 139, 139, - 139, 139, 139, 102, 139, 139, 139, 139, 43, 139, - 54, 139, 139, 139, 139, 103, 122, 128, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 50, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 34, 139, 139, 139, 139, 139, 139, 139, 139, - 76, 77, 78, 139, 139, 85, 0 + 0, 0, 143, 141, 1, 1, 141, 5, 141, 6, + 141, 141, 141, 141, 141, 136, 21, 2, 141, 16, + 141, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 141, 28, 24, 19, 25, 17, 26, + 18, 0, 138, 3, 4, 20, 137, 136, 0, 29, + 27, 30, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 84, 83, 140, 140, 140, + + 140, 140, 140, 140, 140, 140, 140, 140, 100, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 126, 127, 140, 140, 140, 140, + 140, 140, 140, 23, 22, 0, 137, 0, 0, 139, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 49, 140, 140, + 140, 140, 140, 140, 140, 61, 140, 140, 140, 140, + 140, 74, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 91, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + + 140, 140, 140, 114, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 132, 140, 140, 140, 140, 140, 0, + 138, 0, 0, 137, 31, 140, 140, 140, 140, 35, + 37, 140, 140, 140, 57, 140, 44, 140, 140, 140, + 140, 140, 140, 140, 48, 140, 140, 60, 140, 140, + 140, 140, 69, 140, 70, 140, 140, 73, 140, 140, + 140, 80, 81, 140, 140, 140, 140, 140, 140, 89, + 140, 90, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 110, 140, 140, 140, 140, 124, 115, + 140, 140, 140, 140, 113, 140, 140, 140, 140, 140, + + 128, 131, 140, 140, 140, 140, 10, 15, 9, 8, + 140, 12, 14, 0, 137, 33, 140, 140, 140, 39, + 140, 140, 140, 140, 140, 140, 140, 52, 140, 140, + 140, 140, 140, 140, 140, 140, 67, 140, 140, 71, + 72, 140, 140, 140, 82, 140, 140, 87, 140, 140, + 92, 140, 140, 140, 97, 98, 140, 140, 101, 140, + 102, 140, 140, 140, 140, 140, 109, 140, 140, 140, + 118, 140, 140, 140, 140, 140, 140, 133, 140, 134, + 140, 11, 140, 13, 140, 32, 36, 38, 140, 41, + 140, 140, 140, 45, 140, 140, 140, 140, 140, 140, + + 58, 59, 140, 140, 66, 140, 140, 140, 140, 140, + 140, 140, 140, 93, 88, 140, 140, 94, 140, 140, + 106, 140, 105, 140, 111, 108, 140, 116, 117, 140, + 121, 140, 140, 140, 140, 140, 140, 135, 7, 140, + 40, 42, 140, 140, 140, 140, 140, 47, 51, 140, + 140, 63, 140, 140, 140, 64, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 120, 140, 140, 119, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 54, 140, 62, 65, 140, 75, 140, + 140, 140, 76, 140, 140, 95, 96, 140, 99, 140, + + 140, 112, 140, 140, 125, 140, 140, 140, 140, 140, + 140, 46, 140, 140, 68, 140, 140, 140, 140, 85, + 140, 140, 107, 122, 140, 140, 130, 140, 140, 56, + 140, 53, 140, 140, 140, 140, 140, 103, 140, 140, + 140, 140, 43, 140, 55, 140, 140, 140, 140, 104, + 123, 129, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 50, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 34, 140, 140, 140, 140, + 140, 140, 140, 140, 77, 78, 79, 140, 140, 86, + 0 + } ; static yyconst flex_int32_t yy_ec[256] = @@ -485,143 +487,147 @@ static yyconst flex_int32_t yy_meta[73] = 2, 1 } ; -static yyconst flex_int16_t yy_base[589] = +static yyconst flex_int16_t yy_base[593] = { 0, - 0, 0, 709, 710, 710, 710, 687, 710, 701, 710, - 685, 64, 65, 63, 75, 77, 710, 710, 684, 683, - 682, 46, 48, 65, 50, 58, 74, 46, 63, 48, - 0, 643, 75, 76, 635, 637, 90, 91, 94, 146, - 635, 638, 646, 624, 710, 710, 710, 710, 710, 710, - 710, 684, 152, 710, 710, 710, 157, 172, 181, 710, - 710, 710, 0, 634, 638, 643, 636, 643, 628, 617, - 621, 41, 631, 638, 621, 147, 626, 625, 634, 623, - 629, 629, 155, 629, 625, 615, 614, 610, 613, 630, - 605, 619, 611, 606, 624, 0, 600, 604, 593, 603, - - 602, 86, 629, 609, 595, 607, 593, 585, 0, 116, - 86, 599, 594, 127, 587, 594, 590, 590, 588, 158, - 584, 583, 582, 586, 0, 0, 608, 583, 591, 593, - 584, 581, 569, 710, 710, 215, 220, 229, 235, 240, - 572, 588, 177, 575, 574, 575, 576, 571, 572, 570, - 570, 563, 576, 573, 563, 152, 559, 567, 569, 572, - 550, 562, 147, 559, 550, 0, 551, 549, 555, 551, - 560, 0, 560, 578, 563, 555, 554, 544, 576, 551, - 536, 549, 546, 547, 583, 535, 549, 528, 545, 541, - 544, 526, 530, 535, 528, 539, 526, 534, 523, 516, - - 534, 529, 511, 524, 517, 525, 520, 519, 508, 234, - 520, 513, 543, 515, 521, 508, 507, 499, 212, 267, - 272, 281, 286, 291, 0, 500, 503, 507, 514, 0, - 545, 504, 507, 507, 0, 490, 0, 508, 497, 490, - 489, 496, 493, 499, 0, 483, 482, 0, 485, 485, - 492, 488, 0, 476, 0, 491, 477, 0, 474, 492, - 490, 0, 0, 471, 495, 471, 469, 469, 466, 0, - 517, 0, 140, 472, 464, 464, 468, 470, 473, 468, - 457, 458, 455, 0, 461, 455, 452, 466, 0, 0, - 450, 451, 201, 454, 0, 465, 448, 459, 462, 457, - - 0, 0, 437, 442, 452, 446, 0, 0, 446, 0, - 451, 444, 0, 296, 301, 455, 435, 439, 438, 0, - 437, 432, 439, 436, 443, 440, 439, 447, 429, 436, - 431, 434, 433, 162, 420, 0, 432, 431, 0, 0, - 425, 179, 422, 0, 440, 413, 0, 412, 421, 0, - 427, 418, 412, 0, 0, 420, 421, 0, 410, 0, - 427, 415, 418, 406, 413, 0, 409, 411, 410, 0, - 395, 394, 407, 400, 407, 390, 0, 206, 0, 403, - 0, 400, 0, 397, 0, 0, 436, 399, 0, 390, - 391, 382, 0, 387, 398, 393, 374, 383, 0, 0, - - 103, 386, 0, 385, 388, 378, 239, 414, 370, 398, - 383, 0, 0, 374, 361, 0, 366, 383, 0, 368, - 0, 373, 0, 0, 376, 0, 0, 374, 0, 373, - 377, 372, 359, 366, 373, 0, 0, 354, 0, 0, - 365, 377, 365, 366, 366, 0, 0, 366, 0, 348, - 362, 363, 0, 350, 376, 371, 364, 354, 370, 354, - 346, 350, 337, 342, 344, 338, 333, 0, 340, 329, - 0, 323, 333, 326, 336, 365, 328, 324, 335, 328, - 319, 0, 0, 324, 0, 345, 344, 355, 0, 356, - 313, 0, 0, 322, 0, 325, 324, 0, 305, 318, - - 0, 317, 320, 333, 309, 310, 312, 0, 315, 314, - 0, 324, 323, 332, 319, 0, 311, 296, 0, 0, - 291, 292, 0, 295, 286, 0, 290, 0, 289, 306, - 305, 304, 318, 0, 297, 296, 295, 280, 0, 279, - 0, 299, 298, 297, 303, 0, 0, 0, 284, 283, - 310, 309, 308, 298, 273, 283, 291, 290, 289, 282, - 268, 0, 285, 284, 283, 282, 258, 290, 289, 288, - 268, 0, 255, 241, 240, 238, 231, 229, 205, 213, - 0, 0, 0, 187, 75, 0, 710, 80 + 0, 0, 713, 714, 714, 714, 691, 714, 705, 714, + 689, 64, 65, 63, 75, 77, 714, 714, 688, 687, + 686, 46, 48, 65, 50, 58, 74, 46, 63, 48, + 0, 647, 75, 76, 639, 641, 90, 91, 94, 146, + 639, 642, 650, 628, 714, 714, 714, 714, 714, 714, + 714, 688, 152, 714, 714, 714, 157, 172, 181, 714, + 714, 714, 0, 638, 642, 647, 640, 647, 632, 621, + 625, 41, 635, 642, 625, 147, 630, 629, 638, 627, + 633, 633, 155, 633, 629, 619, 618, 614, 617, 634, + 609, 623, 615, 610, 628, 0, 604, 608, 597, 607, + + 606, 86, 633, 613, 599, 611, 597, 589, 0, 116, + 86, 603, 598, 127, 591, 598, 594, 594, 592, 158, + 588, 587, 586, 590, 0, 0, 612, 587, 595, 597, + 588, 585, 573, 714, 714, 215, 220, 229, 235, 240, + 576, 592, 177, 579, 578, 579, 580, 575, 576, 574, + 574, 567, 580, 577, 567, 152, 563, 571, 573, 576, + 554, 566, 147, 563, 554, 0, 555, 553, 559, 555, + 564, 0, 564, 582, 567, 559, 558, 548, 580, 555, + 540, 553, 550, 551, 587, 539, 553, 532, 549, 545, + 548, 530, 534, 539, 532, 543, 530, 538, 527, 520, + + 538, 533, 515, 528, 521, 529, 524, 523, 512, 234, + 524, 517, 547, 519, 525, 512, 511, 503, 212, 267, + 272, 281, 286, 291, 0, 504, 507, 511, 518, 0, + 549, 508, 511, 511, 0, 494, 0, 512, 501, 494, + 493, 500, 157, 504, 0, 488, 487, 0, 490, 490, + 497, 493, 0, 481, 0, 496, 482, 0, 479, 497, + 495, 0, 0, 476, 500, 476, 474, 474, 471, 0, + 522, 0, 140, 477, 469, 469, 473, 475, 478, 473, + 462, 463, 460, 0, 466, 460, 457, 471, 0, 0, + 455, 456, 201, 459, 0, 470, 453, 464, 467, 462, + + 0, 0, 442, 447, 457, 451, 0, 0, 451, 0, + 456, 449, 0, 296, 301, 460, 440, 444, 443, 0, + 442, 437, 444, 441, 448, 445, 444, 452, 434, 441, + 425, 435, 438, 437, 162, 424, 0, 436, 435, 0, + 0, 429, 227, 426, 0, 444, 417, 0, 416, 425, + 0, 431, 422, 416, 0, 0, 424, 425, 0, 414, + 0, 431, 419, 422, 410, 417, 0, 413, 415, 414, + 0, 399, 398, 411, 404, 411, 394, 0, 206, 0, + 407, 0, 404, 0, 401, 0, 0, 440, 403, 0, + 394, 395, 386, 0, 391, 402, 397, 378, 387, 386, + + 0, 0, 103, 389, 0, 388, 391, 381, 247, 417, + 373, 401, 386, 0, 0, 377, 364, 0, 369, 386, + 0, 371, 0, 376, 0, 0, 379, 0, 0, 377, + 0, 376, 380, 375, 362, 369, 376, 0, 0, 357, + 0, 0, 368, 380, 368, 369, 369, 0, 0, 366, + 368, 0, 350, 364, 365, 0, 352, 378, 373, 366, + 356, 372, 356, 348, 352, 339, 344, 346, 340, 335, + 0, 342, 331, 0, 325, 335, 328, 338, 367, 330, + 326, 337, 330, 0, 321, 0, 0, 326, 0, 347, + 346, 357, 0, 358, 315, 0, 0, 324, 0, 327, + + 326, 0, 307, 320, 0, 319, 322, 335, 311, 312, + 314, 0, 317, 316, 0, 326, 325, 334, 321, 0, + 313, 298, 0, 0, 293, 294, 0, 297, 288, 0, + 292, 0, 291, 308, 307, 306, 320, 0, 299, 298, + 297, 282, 0, 281, 0, 301, 300, 299, 305, 0, + 0, 0, 286, 285, 312, 311, 310, 300, 275, 285, + 293, 292, 291, 284, 270, 0, 287, 286, 285, 284, + 260, 292, 291, 290, 295, 0, 282, 256, 255, 247, + 232, 231, 205, 213, 0, 0, 0, 187, 75, 0, + 714, 80 + } ; -static yyconst flex_int16_t yy_def[589] = +static yyconst flex_int16_t yy_def[593] = { 0, - 587, 1, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 587, 587, 587, 587, 587, 587, 587, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 587, - 587, 587, 587, 587, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 587, 587, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - 588, 588, 588, 588, 588, 588, 0, 587 + 591, 1, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 591, 591, 591, 591, 591, 591, 591, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 591, + 591, 591, 591, 591, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 591, 591, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, + 0, 591 + } ; -static yyconst flex_int16_t yy_nxt[783] = +static yyconst flex_int16_t yy_nxt[787] = { 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 16, 16, 16, 16, 17, 18, 19, @@ -634,84 +640,84 @@ static yyconst flex_int16_t yy_nxt[783] = 90, 63, 54, 95, 49, 51, 55, 57, 69, 58, 58, 58, 58, 58, 64, 56, 91, 149, 70, 96, - 77, 586, 65, 59, 78, 150, 97, 71, 66, 67, + 77, 590, 65, 59, 78, 150, 97, 71, 66, 67, 68, 72, 79, 103, 80, 73, 81, 92, 74, 75, 84, 99, 93, 82, 76, 100, 83, 59, 85, 101, 86, 87, 94, 88, 102, 104, 107, 113, 185, 89, 195, 114, 196, 108, 109, 186, 110, 117, 118, 111, - 115, 119, 112, 449, 120, 121, 116, 450, 122, 123, + 115, 119, 112, 452, 120, 121, 116, 453, 122, 123, 125, 126, 193, 124, 53, 53, 53, 53, 53, 137, - 137, 137, 137, 137, 250, 199, 127, 251, 136, 351, - 352, 194, 57, 138, 58, 58, 58, 58, 58, 139, + 137, 137, 137, 137, 250, 199, 127, 251, 136, 352, + 353, 194, 57, 138, 58, 58, 58, 58, 58, 139, 139, 200, 128, 140, 140, 140, 140, 140, 59, 242, 154, 227, 136, 155, 156, 129, 157, 138, 130, 165, - 158, 206, 243, 407, 207, 166, 408, 228, 229, 167, - 208, 585, 59, 220, 220, 401, 402, 221, 221, 221, - 221, 221, 137, 137, 137, 137, 137, 223, 223, 584, - 583, 224, 224, 224, 224, 224, 222, 140, 140, 140, - 140, 140, 140, 140, 140, 140, 140, 434, 296, 369, - 307, 455, 435, 308, 582, 370, 581, 580, 309, 456, - 222, 297, 310, 298, 311, 312, 579, 578, 313, 221, + 158, 206, 243, 330, 207, 166, 331, 228, 229, 167, + 208, 589, 59, 220, 220, 403, 404, 221, 221, 221, + 221, 221, 137, 137, 137, 137, 137, 223, 223, 588, + 587, 224, 224, 224, 224, 224, 222, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 436, 296, 370, + 307, 409, 437, 308, 410, 371, 586, 585, 309, 458, + 222, 297, 310, 298, 311, 312, 584, 459, 313, 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, 314, - 314, 577, 576, 315, 315, 315, 315, 315, 224, 224, + 314, 583, 582, 315, 315, 315, 315, 315, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 315, 315, - 315, 315, 315, 315, 315, 315, 315, 315, 575, 574, - 573, 572, 571, 570, 569, 568, 567, 566, 565, 564, - 563, 562, 561, 560, 559, 558, 557, 556, 555, 554, - 553, 552, 551, 550, 549, 548, 547, 546, 545, 544, - 543, 542, 541, 540, 539, 538, 537, 536, 535, 534, - 533, 532, 531, 530, 529, 528, 527, 526, 525, 524, - 523, 522, 521, 520, 519, 518, 517, 516, 515, 514, - 513, 512, 511, 510, 509, 508, 507, 506, 505, 504, - 503, 502, 501, 500, 499, 498, 497, 496, 495, 494, - - 493, 492, 491, 490, 489, 488, 487, 486, 485, 484, - 483, 482, 481, 480, 479, 478, 477, 476, 475, 474, - 473, 472, 471, 470, 469, 468, 467, 466, 465, 464, - 463, 462, 461, 460, 459, 458, 457, 454, 453, 452, - 451, 448, 447, 446, 445, 444, 443, 442, 441, 440, - 439, 438, 437, 436, 433, 432, 431, 430, 429, 428, - 427, 426, 425, 424, 423, 422, 421, 420, 419, 418, - 417, 416, 415, 414, 413, 412, 411, 410, 409, 406, - 405, 404, 403, 400, 399, 398, 397, 396, 395, 394, - 393, 392, 391, 390, 389, 388, 387, 386, 385, 384, - - 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, - 373, 372, 371, 368, 367, 366, 365, 364, 363, 362, - 361, 360, 359, 358, 357, 356, 355, 354, 353, 350, - 349, 348, 347, 346, 345, 344, 343, 342, 341, 340, - 339, 338, 337, 336, 335, 334, 333, 332, 331, 330, - 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, - 319, 318, 317, 316, 306, 305, 304, 303, 302, 301, - 300, 299, 295, 294, 293, 292, 291, 290, 289, 288, - 287, 286, 285, 284, 283, 282, 281, 280, 279, 278, - 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, - - 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, - 257, 256, 255, 254, 253, 252, 249, 248, 247, 246, - 245, 244, 241, 240, 239, 238, 237, 236, 235, 234, - 233, 232, 231, 230, 226, 225, 219, 218, 217, 216, - 215, 214, 213, 212, 211, 210, 209, 205, 204, 203, - 202, 201, 198, 197, 192, 191, 190, 189, 188, 187, - 184, 183, 182, 181, 180, 179, 178, 177, 176, 175, - 174, 173, 172, 171, 170, 169, 168, 164, 163, 162, - 161, 160, 159, 153, 152, 151, 148, 147, 146, 145, - 144, 143, 142, 141, 135, 134, 133, 132, 131, 106, - - 105, 98, 62, 61, 60, 47, 46, 45, 587, 3, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587 + 315, 315, 315, 315, 315, 315, 315, 315, 581, 580, + 579, 578, 577, 576, 575, 574, 573, 572, 571, 570, + 569, 568, 567, 566, 565, 564, 563, 562, 561, 560, + 559, 558, 557, 556, 555, 554, 553, 552, 551, 550, + 549, 548, 547, 546, 545, 544, 543, 542, 541, 540, + 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, + 529, 528, 527, 526, 525, 524, 523, 522, 521, 520, + 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, + 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, + + 499, 498, 497, 496, 495, 494, 493, 492, 491, 490, + 489, 488, 487, 486, 485, 484, 483, 482, 481, 480, + 479, 478, 477, 476, 475, 474, 473, 472, 471, 470, + 469, 468, 467, 466, 465, 464, 463, 462, 461, 460, + 457, 456, 455, 454, 451, 450, 449, 448, 447, 446, + 445, 444, 443, 442, 441, 440, 439, 438, 435, 434, + 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, + 423, 422, 421, 420, 419, 418, 417, 416, 415, 414, + 413, 412, 411, 408, 407, 406, 405, 402, 401, 400, + 399, 398, 397, 396, 395, 394, 393, 392, 391, 390, + + 389, 388, 387, 386, 385, 384, 383, 382, 381, 380, + 379, 378, 377, 376, 375, 374, 373, 372, 369, 368, + 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, + 357, 356, 355, 354, 351, 350, 349, 348, 347, 346, + 345, 344, 343, 342, 341, 340, 339, 338, 337, 336, + 335, 334, 333, 332, 329, 328, 327, 326, 325, 324, + 323, 322, 321, 320, 319, 318, 317, 316, 306, 305, + 304, 303, 302, 301, 300, 299, 295, 294, 293, 292, + 291, 290, 289, 288, 287, 286, 285, 284, 283, 282, + 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, + + 271, 270, 269, 268, 267, 266, 265, 264, 263, 262, + 261, 260, 259, 258, 257, 256, 255, 254, 253, 252, + 249, 248, 247, 246, 245, 244, 241, 240, 239, 238, + 237, 236, 235, 234, 233, 232, 231, 230, 226, 225, + 219, 218, 217, 216, 215, 214, 213, 212, 211, 210, + 209, 205, 204, 203, 202, 201, 198, 197, 192, 191, + 190, 189, 188, 187, 184, 183, 182, 181, 180, 179, + 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, + 168, 164, 163, 162, 161, 160, 159, 153, 152, 151, + 148, 147, 146, 145, 144, 143, 142, 141, 135, 134, + + 133, 132, 131, 106, 105, 98, 62, 61, 60, 47, + 46, 45, 591, 3, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591 } ; -static yyconst flex_int16_t yy_chk[783] = +static yyconst flex_int16_t yy_chk[787] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -721,84 +727,84 @@ static yyconst flex_int16_t yy_chk[783] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 12, 14, 13, 14, 14, 14, 14, 14, - 28, 588, 15, 30, 12, 13, 15, 16, 23, 16, + 28, 592, 15, 30, 12, 13, 15, 16, 23, 16, 16, 16, 16, 16, 22, 15, 28, 72, 23, 30, - 25, 585, 22, 16, 25, 72, 30, 23, 22, 22, + 25, 589, 22, 16, 25, 72, 30, 23, 22, 22, 22, 24, 25, 34, 26, 24, 26, 29, 24, 24, 27, 33, 29, 26, 24, 33, 26, 16, 27, 33, 27, 27, 29, 27, 33, 34, 37, 38, 102, 27, 111, 38, 111, 37, 37, 102, 37, 39, 39, 37, - 38, 39, 37, 401, 39, 39, 38, 401, 39, 39, + 38, 39, 37, 403, 39, 39, 38, 403, 39, 39, 40, 40, 110, 39, 53, 53, 53, 53, 53, 57, 57, 57, 57, 57, 163, 114, 40, 163, 53, 273, 273, 110, 58, 57, 58, 58, 58, 58, 58, 59, 59, 114, 40, 59, 59, 59, 59, 59, 58, 156, 76, 143, 53, 76, 76, 40, 76, 57, 40, 83, - 76, 120, 156, 342, 120, 83, 342, 143, 143, 83, - 120, 584, 58, 136, 136, 334, 334, 136, 136, 136, - 136, 136, 137, 137, 137, 137, 137, 138, 138, 580, - 579, 138, 138, 138, 138, 138, 137, 139, 139, 139, - 139, 139, 140, 140, 140, 140, 140, 378, 210, 293, - 219, 407, 378, 219, 578, 293, 577, 576, 219, 407, - 137, 210, 219, 210, 219, 219, 575, 574, 219, 220, + 76, 120, 156, 243, 120, 83, 243, 143, 143, 83, + 120, 588, 58, 136, 136, 335, 335, 136, 136, 136, + 136, 136, 137, 137, 137, 137, 137, 138, 138, 584, + 583, 138, 138, 138, 138, 138, 137, 139, 139, 139, + 139, 139, 140, 140, 140, 140, 140, 379, 210, 293, + 219, 343, 379, 219, 343, 293, 582, 581, 219, 409, + 137, 210, 219, 210, 219, 219, 580, 409, 219, 220, 220, 220, 220, 220, 221, 221, 221, 221, 221, 222, - 222, 573, 571, 222, 222, 222, 222, 222, 223, 223, + 222, 579, 578, 222, 222, 222, 222, 222, 223, 223, 223, 223, 223, 224, 224, 224, 224, 224, 314, 314, - 314, 314, 314, 315, 315, 315, 315, 315, 570, 569, - 568, 567, 566, 565, 564, 563, 561, 560, 559, 558, - 557, 556, 555, 554, 553, 552, 551, 550, 549, 545, - 544, 543, 542, 540, 538, 537, 536, 535, 533, 532, - 531, 530, 529, 527, 525, 524, 522, 521, 518, 517, - 515, 514, 513, 512, 510, 509, 507, 506, 505, 504, - 503, 502, 500, 499, 497, 496, 494, 491, 490, 488, - 487, 486, 484, 481, 480, 479, 478, 477, 476, 475, - 474, 473, 472, 470, 469, 467, 466, 465, 464, 463, - - 462, 461, 460, 459, 458, 457, 456, 455, 454, 452, - 451, 450, 448, 445, 444, 443, 442, 441, 438, 435, - 434, 433, 432, 431, 430, 428, 425, 422, 420, 418, - 417, 415, 414, 411, 410, 409, 408, 406, 405, 404, - 402, 398, 397, 396, 395, 394, 392, 391, 390, 388, - 387, 384, 382, 380, 376, 375, 374, 373, 372, 371, - 369, 368, 367, 365, 364, 363, 362, 361, 359, 357, - 356, 353, 352, 351, 349, 348, 346, 345, 343, 341, - 338, 337, 335, 333, 332, 331, 330, 329, 328, 327, - 326, 325, 324, 323, 322, 321, 319, 318, 317, 316, - - 312, 311, 309, 306, 305, 304, 303, 300, 299, 298, - 297, 296, 294, 292, 291, 288, 287, 286, 285, 283, - 282, 281, 280, 279, 278, 277, 276, 275, 274, 271, - 269, 268, 267, 266, 265, 264, 261, 260, 259, 257, - 256, 254, 252, 251, 250, 249, 247, 246, 244, 243, - 242, 241, 240, 239, 238, 236, 234, 233, 232, 231, - 229, 228, 227, 226, 218, 217, 216, 215, 214, 213, - 212, 211, 209, 208, 207, 206, 205, 204, 203, 202, - 201, 200, 199, 198, 197, 196, 195, 194, 193, 192, - 191, 190, 189, 188, 187, 186, 185, 184, 183, 182, - - 181, 180, 179, 178, 177, 176, 175, 174, 173, 171, - 170, 169, 168, 167, 165, 164, 162, 161, 160, 159, - 158, 157, 155, 154, 153, 152, 151, 150, 149, 148, - 147, 146, 145, 144, 142, 141, 133, 132, 131, 130, - 129, 128, 127, 124, 123, 122, 121, 119, 118, 117, - 116, 115, 113, 112, 108, 107, 106, 105, 104, 103, - 101, 100, 99, 98, 97, 95, 94, 93, 92, 91, - 90, 89, 88, 87, 86, 85, 84, 82, 81, 80, - 79, 78, 77, 75, 74, 73, 71, 70, 69, 68, - 67, 66, 65, 64, 52, 44, 43, 42, 41, 36, - - 35, 32, 21, 20, 19, 11, 9, 7, 3, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - 587, 587 + 314, 314, 314, 315, 315, 315, 315, 315, 577, 575, + 574, 573, 572, 571, 570, 569, 568, 567, 565, 564, + 563, 562, 561, 560, 559, 558, 557, 556, 555, 554, + 553, 549, 548, 547, 546, 544, 542, 541, 540, 539, + 537, 536, 535, 534, 533, 531, 529, 528, 526, 525, + 522, 521, 519, 518, 517, 516, 514, 513, 511, 510, + 509, 508, 507, 506, 504, 503, 501, 500, 498, 495, + 494, 492, 491, 490, 488, 485, 483, 482, 481, 480, + 479, 478, 477, 476, 475, 473, 472, 470, 469, 468, + + 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, + 457, 455, 454, 453, 451, 450, 447, 446, 445, 444, + 443, 440, 437, 436, 435, 434, 433, 432, 430, 427, + 424, 422, 420, 419, 417, 416, 413, 412, 411, 410, + 408, 407, 406, 404, 400, 399, 398, 397, 396, 395, + 393, 392, 391, 389, 388, 385, 383, 381, 377, 376, + 375, 374, 373, 372, 370, 369, 368, 366, 365, 364, + 363, 362, 360, 358, 357, 354, 353, 352, 350, 349, + 347, 346, 344, 342, 339, 338, 336, 334, 333, 332, + 331, 330, 329, 328, 327, 326, 325, 324, 323, 322, + + 321, 319, 318, 317, 316, 312, 311, 309, 306, 305, + 304, 303, 300, 299, 298, 297, 296, 294, 292, 291, + 288, 287, 286, 285, 283, 282, 281, 280, 279, 278, + 277, 276, 275, 274, 271, 269, 268, 267, 266, 265, + 264, 261, 260, 259, 257, 256, 254, 252, 251, 250, + 249, 247, 246, 244, 242, 241, 240, 239, 238, 236, + 234, 233, 232, 231, 229, 228, 227, 226, 218, 217, + 216, 215, 214, 213, 212, 211, 209, 208, 207, 206, + 205, 204, 203, 202, 201, 200, 199, 198, 197, 196, + 195, 194, 193, 192, 191, 190, 189, 188, 187, 186, + + 185, 184, 183, 182, 181, 180, 179, 178, 177, 176, + 175, 174, 173, 171, 170, 169, 168, 167, 165, 164, + 162, 161, 160, 159, 158, 157, 155, 154, 153, 152, + 151, 150, 149, 148, 147, 146, 145, 144, 142, 141, + 133, 132, 131, 130, 129, 128, 127, 124, 123, 122, + 121, 119, 118, 117, 116, 115, 113, 112, 108, 107, + 106, 105, 104, 103, 101, 100, 99, 98, 97, 95, + 94, 93, 92, 91, 90, 89, 88, 87, 86, 85, + 84, 82, 81, 80, 79, 78, 77, 75, 74, 73, + 71, 70, 69, 68, 67, 66, 65, 64, 52, 44, + + 43, 42, 41, 36, 35, 32, 21, 20, 19, 11, + 9, 7, 3, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591 } ; static yy_state_type yy_last_accepting_state; @@ -855,7 +861,7 @@ void skipline(void); #define YY_NO_UNISTD_H #endif -#line 859 "Gmsh.yy.cpp" +#line 865 "Gmsh.yy.cpp" #define INITIAL 0 @@ -1011,7 +1017,7 @@ YY_DECL #line 49 "Gmsh.l" -#line 1015 "Gmsh.yy.cpp" +#line 1021 "Gmsh.yy.cpp" if ( !(yy_init) ) { @@ -1064,13 +1070,13 @@ yy_match: while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 588 ) + if ( yy_current_state >= 592 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } - while ( yy_base[yy_current_state] != 710 ); + while ( yy_base[yy_current_state] != 714 ); yy_find_action: yy_act = yy_accept[yy_current_state]; @@ -1363,42 +1369,42 @@ return tColorTable; case 54: YY_RULE_SETUP #line 107 "Gmsh.l" -return tCoordinates; +return tCompound; YY_BREAK case 55: YY_RULE_SETUP #line 108 "Gmsh.l" -return tSpline; +return tCoordinates; YY_BREAK case 56: YY_RULE_SETUP #line 109 "Gmsh.l" -return tCall; +return tSpline; YY_BREAK case 57: YY_RULE_SETUP -#line 111 "Gmsh.l" -return tDelete; +#line 110 "Gmsh.l" +return tCall; YY_BREAK case 58: YY_RULE_SETUP #line 112 "Gmsh.l" -return tDilate; +return tDelete; YY_BREAK case 59: YY_RULE_SETUP #line 113 "Gmsh.l" -return tDraw; +return tDilate; YY_BREAK case 60: YY_RULE_SETUP -#line 115 "Gmsh.l" -return tExp; +#line 114 "Gmsh.l" +return tDraw; YY_BREAK case 61: YY_RULE_SETUP #line 116 "Gmsh.l" -return tEllipse; +return tExp; YY_BREAK case 62: YY_RULE_SETUP @@ -1408,390 +1414,395 @@ return tEllipse; case 63: YY_RULE_SETUP #line 118 "Gmsh.l" -return tExtrude; +return tEllipse; YY_BREAK case 64: YY_RULE_SETUP #line 119 "Gmsh.l" -return tElliptic; +return tExtrude; YY_BREAK case 65: YY_RULE_SETUP #line 120 "Gmsh.l" -return tEndFor; +return tElliptic; YY_BREAK case 66: YY_RULE_SETUP #line 121 "Gmsh.l" -return tEndIf; +return tEndFor; YY_BREAK case 67: YY_RULE_SETUP #line 122 "Gmsh.l" -return tEuclidian; +return tEndIf; YY_BREAK case 68: YY_RULE_SETUP #line 123 "Gmsh.l" -return tExit; +return tEuclidian; YY_BREAK case 69: YY_RULE_SETUP -#line 125 "Gmsh.l" -return tFabs; +#line 124 "Gmsh.l" +return tExit; YY_BREAK case 70: YY_RULE_SETUP #line 126 "Gmsh.l" -return tField; +return tFabs; YY_BREAK case 71: YY_RULE_SETUP #line 127 "Gmsh.l" -return tFloor; +return tField; YY_BREAK case 72: YY_RULE_SETUP #line 128 "Gmsh.l" -return tFmod; +return tFloor; YY_BREAK case 73: YY_RULE_SETUP #line 129 "Gmsh.l" -return tFor; +return tFmod; YY_BREAK case 74: YY_RULE_SETUP #line 130 "Gmsh.l" -return tFunction; +return tFor; YY_BREAK case 75: YY_RULE_SETUP -#line 132 "Gmsh.l" -return tGetValue; +#line 131 "Gmsh.l" +return tFunction; YY_BREAK case 76: YY_RULE_SETUP #line 133 "Gmsh.l" -return tGMSH_MAJOR_VERSION; +return tGetValue; YY_BREAK case 77: YY_RULE_SETUP #line 134 "Gmsh.l" -return tGMSH_MINOR_VERSION; +return tGMSH_MAJOR_VERSION; YY_BREAK case 78: YY_RULE_SETUP #line 135 "Gmsh.l" -return tGMSH_PATCH_VERSION; +return tGMSH_MINOR_VERSION; YY_BREAK case 79: YY_RULE_SETUP -#line 137 "Gmsh.l" -return tHide; +#line 136 "Gmsh.l" +return tGMSH_PATCH_VERSION; YY_BREAK case 80: YY_RULE_SETUP #line 138 "Gmsh.l" -return tHole; +return tHide; YY_BREAK case 81: YY_RULE_SETUP #line 139 "Gmsh.l" -return tHypot; +return tHole; YY_BREAK case 82: YY_RULE_SETUP -#line 141 "Gmsh.l" -return tIn; +#line 140 "Gmsh.l" +return tHypot; YY_BREAK case 83: YY_RULE_SETUP #line 142 "Gmsh.l" -return tIf; +return tIn; YY_BREAK case 84: YY_RULE_SETUP #line 143 "Gmsh.l" -return tIntersect; +return tIf; YY_BREAK case 85: YY_RULE_SETUP #line 144 "Gmsh.l" -return tInterpolationScheme; +return tIntersect; YY_BREAK case 86: YY_RULE_SETUP -#line 146 "Gmsh.l" -return tKnots; +#line 145 "Gmsh.l" +return tInterpolationScheme; YY_BREAK case 87: YY_RULE_SETUP -#line 148 "Gmsh.l" -return tLength; +#line 147 "Gmsh.l" +return tKnots; YY_BREAK case 88: YY_RULE_SETUP #line 149 "Gmsh.l" -return tLine; +return tLength; YY_BREAK case 89: YY_RULE_SETUP #line 150 "Gmsh.l" -return tLoop; +return tLine; YY_BREAK case 90: YY_RULE_SETUP #line 151 "Gmsh.l" -return tLog; +return tLoop; YY_BREAK case 91: YY_RULE_SETUP #line 152 "Gmsh.l" -return tLog10; +return tLog; YY_BREAK case 92: YY_RULE_SETUP #line 153 "Gmsh.l" -return tLayers; +return tLog10; YY_BREAK case 93: YY_RULE_SETUP -#line 155 "Gmsh.l" -return tModulo; +#line 154 "Gmsh.l" +return tLayers; YY_BREAK case 94: YY_RULE_SETUP #line 156 "Gmsh.l" -return tMPI_Rank; +return tModulo; YY_BREAK case 95: YY_RULE_SETUP #line 157 "Gmsh.l" -return tMPI_Size; +return tMPI_Rank; YY_BREAK case 96: YY_RULE_SETUP -#line 159 "Gmsh.l" -return tNurbs; +#line 158 "Gmsh.l" +return tMPI_Size; YY_BREAK case 97: YY_RULE_SETUP -#line 161 "Gmsh.l" -return tOrder; +#line 160 "Gmsh.l" +return tNurbs; YY_BREAK case 98: YY_RULE_SETUP -#line 163 "Gmsh.l" -return tPhysical; +#line 162 "Gmsh.l" +return tOrder; YY_BREAK case 99: YY_RULE_SETUP #line 164 "Gmsh.l" -return tPi; +return tPhysical; YY_BREAK case 100: YY_RULE_SETUP #line 165 "Gmsh.l" -return tPlane; +return tPi; YY_BREAK case 101: YY_RULE_SETUP #line 166 "Gmsh.l" -return tPoint; +return tPlane; YY_BREAK case 102: YY_RULE_SETUP #line 167 "Gmsh.l" -return tParametric; +return tPoint; YY_BREAK case 103: YY_RULE_SETUP #line 168 "Gmsh.l" -return tPolarSphere; +return tParametric; YY_BREAK case 104: YY_RULE_SETUP #line 169 "Gmsh.l" -return tPrintf; +return tPolarSphere; YY_BREAK case 105: YY_RULE_SETUP #line 170 "Gmsh.l" -return tPlugin; +return tPrintf; YY_BREAK case 106: YY_RULE_SETUP -#line 172 "Gmsh.l" -return tRecombine; +#line 171 "Gmsh.l" +return tPlugin; YY_BREAK case 107: YY_RULE_SETUP #line 173 "Gmsh.l" -return tRotate; +return tRecombine; YY_BREAK case 108: YY_RULE_SETUP #line 174 "Gmsh.l" -return tRuled; +return tRotate; YY_BREAK case 109: YY_RULE_SETUP #line 175 "Gmsh.l" -return tRand; +return tRuled; YY_BREAK case 110: YY_RULE_SETUP #line 176 "Gmsh.l" -return tReturn; +return tRand; YY_BREAK case 111: YY_RULE_SETUP -#line 178 "Gmsh.l" -return tSmoother; +#line 177 "Gmsh.l" +return tReturn; YY_BREAK case 112: YY_RULE_SETUP #line 179 "Gmsh.l" -return tSqrt; +return tSmoother; YY_BREAK case 113: YY_RULE_SETUP #line 180 "Gmsh.l" -return tSin; +return tSqrt; YY_BREAK case 114: YY_RULE_SETUP #line 181 "Gmsh.l" -return tSinh; +return tSin; YY_BREAK case 115: YY_RULE_SETUP #line 182 "Gmsh.l" -return tSphere; +return tSinh; YY_BREAK case 116: YY_RULE_SETUP #line 183 "Gmsh.l" -return tSpline; +return tSphere; YY_BREAK case 117: YY_RULE_SETUP #line 184 "Gmsh.l" -return tSplit; +return tSpline; YY_BREAK case 118: YY_RULE_SETUP #line 185 "Gmsh.l" -return tSurface; +return tSplit; YY_BREAK case 119: YY_RULE_SETUP #line 186 "Gmsh.l" -return tSprintf; +return tSurface; YY_BREAK case 120: YY_RULE_SETUP #line 187 "Gmsh.l" -return tStrCat; +return tSprintf; YY_BREAK case 121: YY_RULE_SETUP #line 188 "Gmsh.l" -return tStrPrefix; +return tStrCat; YY_BREAK case 122: YY_RULE_SETUP #line 189 "Gmsh.l" -return tStrRelative; +return tStrPrefix; YY_BREAK case 123: YY_RULE_SETUP #line 190 "Gmsh.l" -return tShow; +return tStrRelative; YY_BREAK case 124: YY_RULE_SETUP #line 191 "Gmsh.l" -return tSymmetry; +return tShow; YY_BREAK case 125: YY_RULE_SETUP -#line 193 "Gmsh.l" -return tText2D; +#line 192 "Gmsh.l" +return tSymmetry; YY_BREAK case 126: YY_RULE_SETUP #line 194 "Gmsh.l" -return tText3D; +return tText2D; YY_BREAK case 127: YY_RULE_SETUP #line 195 "Gmsh.l" -return tTime; +return tText3D; YY_BREAK case 128: YY_RULE_SETUP #line 196 "Gmsh.l" -return tTransfinite; +return tTime; YY_BREAK case 129: YY_RULE_SETUP #line 197 "Gmsh.l" -return tTranslate; +return tTransfinite; YY_BREAK case 130: YY_RULE_SETUP #line 198 "Gmsh.l" -return tTanh; +return tTranslate; YY_BREAK case 131: YY_RULE_SETUP #line 199 "Gmsh.l" -return tTan; +return tTanh; YY_BREAK case 132: YY_RULE_SETUP #line 200 "Gmsh.l" -return tToday; +return tTan; YY_BREAK case 133: YY_RULE_SETUP -#line 202 "Gmsh.l" -return tUsing; +#line 201 "Gmsh.l" +return tToday; YY_BREAK case 134: YY_RULE_SETUP -#line 204 "Gmsh.l" -return tVolume; +#line 203 "Gmsh.l" +return tUsing; YY_BREAK case 135: -#line 207 "Gmsh.l" +YY_RULE_SETUP +#line 205 "Gmsh.l" +return tVolume; + YY_BREAK case 136: #line 208 "Gmsh.l" case 137: #line 209 "Gmsh.l" case 138: +#line 210 "Gmsh.l" +case 139: YY_RULE_SETUP -#line 209 "Gmsh.l" +#line 210 "Gmsh.l" { gmsh_yylval.d = atof((char *)gmsh_yytext); return tDOUBLE; } YY_BREAK -case 139: +case 140: YY_RULE_SETUP -#line 211 "Gmsh.l" +#line 212 "Gmsh.l" { gmsh_yylval.c = strsave((char*)gmsh_yytext); return tSTRING; } YY_BREAK -case 140: +case 141: YY_RULE_SETUP -#line 213 "Gmsh.l" +#line 214 "Gmsh.l" return gmsh_yytext[0]; YY_BREAK -case 141: +case 142: YY_RULE_SETUP -#line 215 "Gmsh.l" +#line 216 "Gmsh.l" ECHO; YY_BREAK -#line 1795 "Gmsh.yy.cpp" +#line 1806 "Gmsh.yy.cpp" case YY_STATE_EOF(INITIAL): yyterminate(); @@ -2075,7 +2086,7 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 588 ) + if ( yy_current_state >= 592 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; @@ -2103,11 +2114,11 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 588 ) + if ( yy_current_state >= 592 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - yy_is_jam = (yy_current_state == 587); + yy_is_jam = (yy_current_state == 591); return yy_is_jam ? 0 : yy_current_state; } @@ -2777,7 +2788,7 @@ void gmsh_yyfree (void * ptr ) #define YYTABLES_NAME "yytables" -#line 215 "Gmsh.l" +#line 216 "Gmsh.l" diff --git a/Plugin/Makefile b/Plugin/Makefile index 0b3f27f9ce928e24353f80a373540852971b2584..5a877b78db318647298deed5804cf514e8aa87e4 100644 --- a/Plugin/Makefile +++ b/Plugin/Makefile @@ -63,13 +63,82 @@ depend: Plugin.o: Plugin.cpp Plugin.h ../Common/Options.h ../Post/ColorTable.h \ ../Common/Message.h ../Post/PView.h ../Geo/SPoint3.h \ ../Post/PViewDataList.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Common/ListUtils.h ../Common/GmshMatrix.h + ../Geo/SPoint3.h ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h PluginManager.o: PluginManager.cpp Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h PluginManager.h CutMap.h Levelset.h CutGrid.h \ - StreamLines.h CutPlane.h CutParametric.h CutSphere.h Skin.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h PluginManager.h CutMap.h Levelset.h \ + CutGrid.h StreamLines.h CutPlane.h CutParametric.h CutSphere.h Skin.h \ ../Common/TreeUtils.h ../Common/avl.h ../Common/ListUtils.h Extract.h \ ExtractElements.h ExtractEdges.h HarmonicToTime.h ModulusPhase.h \ Integrate.h Gradient.h Curl.h Divergence.h Annotate.h Remove.h \ @@ -82,64 +151,406 @@ Levelset.o: Levelset.cpp Levelset.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h MakeSimplex.h ../Numeric/Numeric.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h MakeSimplex.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h ../Post/adaptiveData.h CutPlane.o: CutPlane.cpp CutPlane.h Levelset.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h ../Common/Context.h \ - ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h ../Common/GmshUI.h \ - ../Graphics/Draw.h + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Mesh/PartitionOptions.h ../Common/GmshUI.h ../Graphics/Draw.h CutSphere.o: CutSphere.cpp CutSphere.h Levelset.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h ../Common/Context.h \ - ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h ../Common/GmshUI.h \ - ../Graphics/Draw.h + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Mesh/PartitionOptions.h ../Common/GmshUI.h ../Graphics/Draw.h CutMap.o: CutMap.cpp CutMap.h Levelset.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ ../Mesh/PartitionOptions.h Smooth.o: Smooth.cpp Smooth.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h CutParametric.o: CutParametric.cpp ../Post/OctreePost.h \ ../Common/Octree.h ../Common/OctreeInternals.h CutParametric.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h ../Common/Context.h \ - ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h ../Common/GmshUI.h \ - ../Graphics/Draw.h + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Mesh/PartitionOptions.h ../Common/GmshUI.h ../Graphics/Draw.h \ + ../contrib/MathEval/matheval.h Lambda2.o: Lambda2.cpp Lambda2.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Numeric/Numeric.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h Eigenvectors.o: Eigenvectors.cpp Eigenvectors.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h ../Numeric/Numeric.h \ + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h ../Numeric/EigSolve.h Eigenvalues.o: Eigenvalues.cpp Eigenvalues.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Numeric/Numeric.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h StreamLines.o: StreamLines.cpp StreamLines.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Post/OctreePost.h ../Common/Octree.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Post/OctreePost.h ../Common/Octree.h \ ../Common/OctreeInternals.h ../Common/Context.h ../Geo/CGNSOptions.h \ ../Mesh/PartitionOptions.h ../Post/PViewOptions.h ../Post/ColorTable.h \ ../Common/GmshUI.h ../Graphics/Draw.h @@ -148,18 +559,121 @@ CutGrid.o: CutGrid.cpp ../Post/OctreePost.h ../Common/Octree.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ ../Mesh/PartitionOptions.h ../Common/GmshUI.h ../Graphics/Draw.h Transform.o: Transform.cpp Transform.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h LongitudeLatitude.o: LongitudeLatitude.cpp LongitudeLatitude.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h Triangulate.o: Triangulate.cpp ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ @@ -173,33 +687,204 @@ Triangulate.o: Triangulate.cpp ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/MVertex.h ../Geo/SPoint3.h Triangulate.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Post/PView.h \ ../Post/PViewDataList.h ../Post/PViewData.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ ../Mesh/PartitionOptions.h Warp.o: Warp.cpp Warp.h Plugin.h ../Common/Options.h ../Post/ColorTable.h \ ../Common/Message.h ../Post/PView.h ../Geo/SPoint3.h \ ../Post/PViewDataList.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ ../Geo/SPoint3.h ../Common/ListUtils.h ../Common/GmshMatrix.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/SmoothData.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h SphericalRaise.o: SphericalRaise.cpp SphericalRaise.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h ../Numeric/Numeric.h \ + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h Skin.o: Skin.cpp Skin.h Plugin.h ../Common/Options.h ../Post/ColorTable.h \ ../Common/Message.h ../Post/PView.h ../Geo/SPoint3.h \ ../Post/PViewDataList.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ ../Geo/SPoint3.h ../Common/ListUtils.h ../Common/GmshMatrix.h \ - ../Common/TreeUtils.h ../Common/avl.h ../Common/ListUtils.h \ - ../Common/MallocUtils.h ../Common/Context.h ../Geo/CGNSOptions.h \ - ../Mesh/PartitionOptions.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/TreeUtils.h ../Common/avl.h \ + ../Common/ListUtils.h ../Common/MallocUtils.h ../Common/Context.h \ + ../Geo/CGNSOptions.h ../Mesh/PartitionOptions.h GSHHS.o: GSHHS.cpp GSHHS.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Mesh/Field.h ../Geo/GModel.h ../Geo/GVertex.h \ - ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Mesh/Field.h ../Geo/GModel.h \ + ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \ ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \ ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h \ @@ -210,19 +895,123 @@ Extract.o: Extract.cpp Extract.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../contrib/MathEval/matheval.h ExtractElements.o: ExtractElements.cpp ExtractElements.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h ../Numeric/Numeric.h \ + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Numeric/Numeric.h \ ../Numeric/NumericEmbedded.h ExtractEdges.o: ExtractEdges.cpp ExtractEdges.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h ../Mesh/BDS.h \ - ../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Mesh/BDS.h ../Geo/GFace.h \ + ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \ ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/GEntity.h \ ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/SPoint3.h \ @@ -232,19 +1021,121 @@ MakeSimplex.o: MakeSimplex.cpp MakeSimplex.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h Evaluate.o: Evaluate.cpp Evaluate.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Post/OctreePost.h ../Common/Octree.h \ - ../Common/OctreeInternals.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Post/OctreePost.h ../Common/Octree.h \ + ../Common/OctreeInternals.h ../contrib/MathEval/matheval.h FieldView.o: FieldView.cpp FieldView.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Mesh/Field.h ../Geo/GModel.h ../Geo/GVertex.h \ - ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Mesh/Field.h ../Geo/GModel.h \ + ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \ ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \ ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h \ @@ -255,32 +1146,202 @@ Integrate.o: Integrate.cpp Integrate.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Post/shapeFunctions.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Post/shapeFunctions.h \ + ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \ + ../Post/PViewOptions.h ../Post/ColorTable.h Gradient.o: Gradient.cpp Gradient.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Post/shapeFunctions.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Post/shapeFunctions.h \ + ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h Curl.o: Curl.cpp Curl.h Plugin.h ../Common/Options.h ../Post/ColorTable.h \ ../Common/Message.h ../Post/PView.h ../Geo/SPoint3.h \ ../Post/PViewDataList.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ ../Geo/SPoint3.h ../Common/ListUtils.h ../Common/GmshMatrix.h \ - ../Post/shapeFunctions.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Post/shapeFunctions.h \ + ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h Divergence.o: Divergence.cpp Divergence.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Post/shapeFunctions.h ../Numeric/Numeric.h \ - ../Numeric/NumericEmbedded.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Post/shapeFunctions.h \ + ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h Annotate.o: Annotate.cpp Annotate.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ ../Mesh/PartitionOptions.h ../Common/GmshUI.h ../Fltk/GUI.h \ ../Fltk/Opengl_Window.h ../Fltk/Colorbar_Window.h \ ../Fltk/Popup_Button.h ../Fltk/SpherePosition_Widget.h ../Mesh/Field.h \ @@ -289,21 +1350,159 @@ Remove.o: Remove.cpp Remove.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h Probe.o: Probe.cpp Probe.h Plugin.h ../Common/Options.h \ ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ ../Geo/SPoint3.h ../Post/PViewDataList.h ../Post/PViewData.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/ListUtils.h \ - ../Common/GmshMatrix.h ../Common/Context.h ../Geo/CGNSOptions.h \ + ../Common/GmshMatrix.h /sw/include/gsl/gsl_linalg.h \ + /sw/include/gsl/gsl_mode.h /sw/include/gsl/gsl_permutation.h \ + /sw/include/gsl/gsl_types.h /sw/include/gsl/gsl_errno.h \ + /sw/include/gsl/gsl_check_range.h /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ../Common/Context.h ../Geo/CGNSOptions.h \ ../Mesh/PartitionOptions.h ../Post/OctreePost.h ../Common/Octree.h \ ../Common/OctreeInternals.h ../Common/GmshUI.h ../Graphics/Draw.h HarmonicToTime.o: HarmonicToTime.cpp HarmonicToTime.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h ModulusPhase.o: ModulusPhase.cpp ModulusPhase.h Plugin.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ ../Post/PView.h ../Geo/SPoint3.h ../Post/PViewDataList.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/ListUtils.h ../Common/GmshMatrix.h + ../Common/ListUtils.h ../Common/GmshMatrix.h \ + /sw/include/gsl/gsl_linalg.h /sw/include/gsl/gsl_mode.h \ + /sw/include/gsl/gsl_permutation.h /sw/include/gsl/gsl_types.h \ + /sw/include/gsl/gsl_errno.h /sw/include/gsl/gsl_check_range.h \ + /sw/include/gsl/gsl_vector.h \ + /sw/include/gsl/gsl_vector_complex_long_double.h \ + /sw/include/gsl/gsl_complex.h /sw/include/gsl/gsl_vector_long_double.h \ + /sw/include/gsl/gsl_block_long_double.h \ + /sw/include/gsl/gsl_vector_complex.h \ + /sw/include/gsl/gsl_block_complex_long_double.h \ + /sw/include/gsl/gsl_vector_complex_double.h \ + /sw/include/gsl/gsl_vector_double.h /sw/include/gsl/gsl_block_double.h \ + /sw/include/gsl/gsl_block_complex_double.h \ + /sw/include/gsl/gsl_vector_complex_float.h \ + /sw/include/gsl/gsl_vector_float.h /sw/include/gsl/gsl_block_float.h \ + /sw/include/gsl/gsl_block_complex_float.h \ + /sw/include/gsl/gsl_vector_ulong.h /sw/include/gsl/gsl_block_ulong.h \ + /sw/include/gsl/gsl_vector_long.h /sw/include/gsl/gsl_block_long.h \ + /sw/include/gsl/gsl_vector_uint.h /sw/include/gsl/gsl_block_uint.h \ + /sw/include/gsl/gsl_vector_int.h /sw/include/gsl/gsl_block_int.h \ + /sw/include/gsl/gsl_vector_ushort.h /sw/include/gsl/gsl_block_ushort.h \ + /sw/include/gsl/gsl_vector_short.h /sw/include/gsl/gsl_block_short.h \ + /sw/include/gsl/gsl_vector_uchar.h /sw/include/gsl/gsl_block_uchar.h \ + /sw/include/gsl/gsl_vector_char.h /sw/include/gsl/gsl_block_char.h \ + /sw/include/gsl/gsl_matrix.h \ + /sw/include/gsl/gsl_matrix_complex_long_double.h \ + /sw/include/gsl/gsl_matrix_complex_double.h \ + /sw/include/gsl/gsl_matrix_complex_float.h \ + /sw/include/gsl/gsl_matrix_long_double.h \ + /sw/include/gsl/gsl_matrix_double.h /sw/include/gsl/gsl_matrix_float.h \ + /sw/include/gsl/gsl_matrix_ulong.h /sw/include/gsl/gsl_matrix_long.h \ + /sw/include/gsl/gsl_matrix_uint.h /sw/include/gsl/gsl_matrix_int.h \ + /sw/include/gsl/gsl_matrix_ushort.h /sw/include/gsl/gsl_matrix_short.h \ + /sw/include/gsl/gsl_matrix_uchar.h /sw/include/gsl/gsl_matrix_char.h \ + /sw/include/gsl/gsl_blas.h /sw/include/gsl/gsl_blas_types.h \ + /sw/include/gsl/gsl_cblas.h diff --git a/configure b/configure index f84c2e0e9194dd83152d2828bed6db8cbee4f76a..08e564f0d94a3a238b8dbc82a19685d70fffce91 100755 --- a/configure +++ b/configure @@ -1278,6 +1278,7 @@ Optional Features: --enable-chaco compile Chaco partitioner (default=yes) --enable-tetgen compile Tetgen if available (default=yes) --enable-matheval compile MathEval if available (default=yes) + --enable-gmm use gmm++ if available (default=yes) --enable-osmesa use OSMesa for offscreen rendering (default=no) --enable-cgns enable CGNS output (default=no) --enable-occ enable OpenCascade support (default=no) @@ -1913,6 +1914,11 @@ if test "${enable_matheval+set}" = set; then enableval=$enable_matheval; fi +# Check whether --enable-gmm was given. +if test "${enable_gmm+set}" = set; then + enableval=$enable_gmm; +fi + # Check whether --enable-osmesa was given. if test "${enable_osmesa+set}" = set; then enableval=$enable_osmesa; @@ -1961,6 +1967,7 @@ if test "x$enable_minimal" = "xyes"; then enable_netgen=no; enable_tetgen=no; enable_matheval=no; + enable_gmm=no; enable_ann=no; enable_metis=no; enable_chaco=no; @@ -4466,6 +4473,41 @@ fi fi fi + if test "x$enable_gmm" != "xno"; then + { echo "$as_me:$LINENO: checking for ./contrib/gmm/gmm.h" >&5 +echo $ECHO_N "checking for ./contrib/gmm/gmm.h... $ECHO_C" >&6; } +if test "${ac_cv_file___contrib_gmm_gmm_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + test "$cross_compiling" = yes && + { { echo "$as_me:$LINENO: error: cannot check for file existence when cross compiling" >&5 +echo "$as_me: error: cannot check for file existence when cross compiling" >&2;} + { (exit 1); exit 1; }; } +if test -r "./contrib/gmm/gmm.h"; then + ac_cv_file___contrib_gmm_gmm_h=yes +else + ac_cv_file___contrib_gmm_gmm_h=no +fi +fi +{ echo "$as_me:$LINENO: result: $ac_cv_file___contrib_gmm_gmm_h" >&5 +echo "${ECHO_T}$ac_cv_file___contrib_gmm_gmm_h" >&6; } +if test $ac_cv_file___contrib_gmm_gmm_h = yes; then + GMM="yes" +else + GMM="no" +fi + + if test "x${GMM}" = "xyes"; then + FLAGS="${FLAGS} -DHAVE_GMM" + echo "********************************************************************" + echo " You are building a version of Gmsh that contains the gmm++ mesh" + echo " partitioner. Gmm++ is available under the GNU LGPL." + echo " To disable gmm++, run configure again with the --disable-gmm" + echo " option." + echo "********************************************************************" + fi + fi + if test "x$enable_chaco" != "xno"; then { echo "$as_me:$LINENO: checking for ./contrib/Chaco/main/interface.c" >&5 echo $ECHO_N "checking for ./contrib/Chaco/main/interface.c... $ECHO_C" >&6; } @@ -4837,6 +4879,7 @@ echo "$as_me: error: Could not find GSL, aborting." >&2;} fi fi + if test "x${CGNS_PREFIX}" != "x"; then if test "x$enable_cgns" != "xno"; then enable_cgns="yes" diff --git a/configure.in b/configure.in index 2eddc6213fcb042d198315971544ae789bdc818a..1af17258a43c6c21bbdcfca93a519e3cbe256bca 100644 --- a/configure.in +++ b/configure.in @@ -116,6 +116,9 @@ AC_ARG_ENABLE(tetgen, AC_ARG_ENABLE(matheval, AC_HELP_STRING([--enable-matheval], [compile MathEval if available (default=yes)])) +AC_ARG_ENABLE(gmm, + AC_HELP_STRING([--enable-gmm], + [use gmm++ if available (default=yes)])) AC_ARG_ENABLE(osmesa, AC_HELP_STRING([--enable-osmesa], [use OSMesa for offscreen rendering (default=no)])) @@ -149,6 +152,7 @@ if test "x$enable_minimal" = "xyes"; then enable_netgen=no; enable_tetgen=no; enable_matheval=no; + enable_gmm=no; enable_ann=no; enable_metis=no; enable_chaco=no; @@ -415,6 +419,20 @@ if test "x$enable_contrib" != "xno"; then fi fi + dnl Check for gmm++ linear solver + if test "x$enable_gmm" != "xno"; then + AC_CHECK_FILE(./contrib/gmm/gmm.h, GMM="yes", GMM="no") + if test "x${GMM}" = "xyes"; then + FLAGS="${FLAGS} -DHAVE_GMM" + echo "********************************************************************" + echo " You are building a version of Gmsh that contains the gmm++ mesh" + echo " partitioner. Gmm++ is available under the GNU LGPL." + echo " To disable gmm++, run configure again with the --disable-gmm" + echo " option." + echo "********************************************************************" + fi + fi + dnl Check for Chaco partitionner if test "x$enable_chaco" != "xno"; then AC_CHECK_FILE(./contrib/Chaco/main/interface.c, CHACO="yes", CHACO="no") @@ -535,6 +553,7 @@ if test "x${GSL}" != "xyes"; then fi fi + dnl Check for CGNS if test "x${CGNS_PREFIX}" != "x"; then if test "x$enable_cgns" != "xno"; then