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

One function space for Ddm -- seems ok

parent 6f5b6e7b
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
using namespace std; using namespace std;
const size_t FunctionSpace::nGeoType = 9; const size_t FunctionSpace::nGeoType = 9;
bool FunctionSpace::once = false;
FunctionSpace::FunctionSpace(void){ FunctionSpace::FunctionSpace(void){
} }
...@@ -22,13 +21,6 @@ FunctionSpace::~FunctionSpace(void){ ...@@ -22,13 +21,6 @@ FunctionSpace::~FunctionSpace(void){
} }
void FunctionSpace::build(const GroupOfElement& goe, string family){ void FunctionSpace::build(const GroupOfElement& goe, string family){
/*
if(once)
throw Exception("FS Once");
else
once = true;
*/
// Save GroupOfElement & Mesh // // Save GroupOfElement & Mesh //
this->goe = &goe; this->goe = &goe;
this->mesh = &(goe.getMesh()); this->mesh = &(goe.getMesh());
......
...@@ -32,7 +32,6 @@ class FunctionSpace{ ...@@ -32,7 +32,6 @@ class FunctionSpace{
protected: protected:
// Number of possible geomtrical topologies // // Number of possible geomtrical topologies //
static const size_t nGeoType; static const size_t nGeoType;
static bool once;
protected: protected:
// Geometry // // Geometry //
......
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