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,8 +13,7 @@ FunctionSpace::FunctionSpace(const GroupOfElement& goe, int basisType, int order
int nVertex = element.getNumVertices();
int nEdge = element.getNumEdges();
int nFace = element.getNumFaces();
nTotVertex = goe.getNVertex();
// Init Struct //
type = basisType;
basis = BasisGenerator::generate(elementType,
......
......@@ -23,16 +23,15 @@
class FunctionSpace{
protected:
const GroupOfElement* goe;
const Basis* basis;
int fPerVertex;
int fPerEdge;
int fPerFace;
int fPerCell;
int type;
const GroupOfElement* goe;
int nTotVertex;
public:
FunctionSpace(const GroupOfElement& goe,
int basisType, int order);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment