Skip to content
Snippets Groups Projects
Commit 1f2893ac authored by Gauthier Becker's avatar Gauthier Becker
Browse files

Add switch implicit->explicit (other case has to be done)

Fix bug with restart file format
parent dda33d63
No related branches found
No related tags found
No related merge requests found
...@@ -73,6 +73,8 @@ class GaussQuadrature : public QuadratureBase ...@@ -73,6 +73,8 @@ class GaussQuadrature : public QuadratureBase
e->getIntegrationPoints(integrationOrder, &npts, GP); e->getIntegrationPoints(integrationOrder, &npts, GP);
return npts; return npts;
} }
// copy constructor
GaussQuadrature(const GaussQuadrature &other) : info(other.info), order(other.order){}
}; };
#endif //_QUADRATURERULES_H_ #endif //_QUADRATURERULES_H_
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