mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-24 04:50:34 +05:00
fix warnings, parallel
This commit is contained in:
parent
53f1264340
commit
4b249a738f
@ -39,7 +39,7 @@ namespace netgen
|
||||
cout << "bbox = " << bbox << endl;
|
||||
|
||||
|
||||
Point<3> mpc = bbox.Center();
|
||||
// Point<3> mpc = bbox.Center();
|
||||
bbox.Increase (bbox.Diam()/2);
|
||||
Box<3> meshbox = bbox;
|
||||
|
||||
|
@ -323,7 +323,7 @@ namespace netgen
|
||||
Point3d rpmid(root->xmid[0], root->xmid[1], root->xmid[2]);
|
||||
Vec3d rv(root->h2, root->h2, root->h2);
|
||||
Point3d rx2 = rpmid + rv;
|
||||
Point3d rx1 = rpmid - rv;
|
||||
// Point3d rx1 = rpmid - rv;
|
||||
|
||||
|
||||
root->flags.pinner = !adfront->SameSide (rpmid, rx2);
|
||||
@ -477,7 +477,7 @@ namespace netgen
|
||||
Point<2> rpmid(root->xmid[0], root->xmid[1], root->xmid[2]);
|
||||
Vec<2> rv(root->h2, root->h2);
|
||||
Point<2> rx2 = rpmid + rv;
|
||||
Point<2> rx1 = rpmid - rv;
|
||||
// Point<2> rx1 = rpmid - rv;
|
||||
|
||||
|
||||
root->flags.pinner = !adfront->SameSide (rpmid, rx2);
|
||||
|
@ -1,7 +1,6 @@
|
||||
#include <mystdlib.h>
|
||||
#include "meshing.hpp"
|
||||
|
||||
|
||||
namespace netgen
|
||||
{
|
||||
|
||||
@ -38,6 +37,7 @@ namespace netgen
|
||||
geomtype = NO_GEOM;
|
||||
|
||||
bcnames.SetSize(0);
|
||||
|
||||
#ifdef PARALLEL
|
||||
paralleltop = new ParallelMeshTopology (*this);
|
||||
#endif
|
||||
|
@ -770,22 +770,20 @@ namespace netgen
|
||||
return flags.deleted;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#ifdef PARALLEL
|
||||
int GetPartition () const { return partitionNumber; }
|
||||
void SetPartition (int nr) { partitionNumber = nr; };
|
||||
#endif
|
||||
|
||||
int hp_elnr;
|
||||
|
||||
#ifdef PARALLEL
|
||||
bool IsGhost () const { return isghost; }
|
||||
|
||||
void SetGhost ( const bool aisghost ) { isghost = aisghost; }
|
||||
#else
|
||||
bool IsGhost () const { return false; }
|
||||
int GetPartition () const { return 0; }
|
||||
#endif
|
||||
|
||||
// friend class Mesh;
|
||||
int hp_elnr;
|
||||
};
|
||||
|
||||
ostream & operator<<(ostream & s, const Element & el);
|
||||
|
Loading…
Reference in New Issue
Block a user