Skip to content
Snippets Groups Projects
Commit 54cfe24f authored by Nicolas Marsic's avatar Nicolas Marsic
Browse files

Edges...

parent 6d01c50f
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,6 @@ FunctionSpace::FunctionSpace(const GroupOfElement& goe, int basisType, int order ...@@ -13,7 +13,6 @@ FunctionSpace::FunctionSpace(const GroupOfElement& goe, int basisType, int order
int nVertex = element.getNumVertices(); int nVertex = element.getNumVertices();
int nEdge = element.getNumEdges(); int nEdge = element.getNumEdges();
int nFace = element.getNumFaces(); int nFace = element.getNumFaces();
nTotVertex = goe.getNVertex();
// Init Struct // // Init Struct //
type = basisType; type = basisType;
......
...@@ -23,16 +23,15 @@ ...@@ -23,16 +23,15 @@
class FunctionSpace{ class FunctionSpace{
protected: protected:
const GroupOfElement* goe;
const Basis* basis; const Basis* basis;
int fPerVertex; int fPerVertex;
int fPerEdge; int fPerEdge;
int fPerFace; int fPerFace;
int fPerCell; int fPerCell;
int type; int type;
const GroupOfElement* goe;
int nTotVertex;
public: public:
FunctionSpace(const GroupOfElement& goe, FunctionSpace(const GroupOfElement& goe,
int basisType, int order); int basisType, int order);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment