Skip to content
Snippets Groups Projects
Commit 950ef43d authored by Jonathan Lambrechts's avatar Jonathan Lambrechts
Browse files

all function (and much more) binded to lua should be available in python

now
parent 69e62949
No related branches found
No related tags found
No related merge requests found
...@@ -15,8 +15,6 @@ struct IntPt{ ...@@ -15,8 +15,6 @@ struct IntPt{
int GaussLegendreTri(int n1, int n2, IntPt *pts); int GaussLegendreTri(int n1, int n2, IntPt *pts);
int GaussLegendreTet(int n1, int n2, int n3, IntPt *pts); int GaussLegendreTet(int n1, int n2, int n3, IntPt *pts);
int GaussLegendreHex(int n1, int n2, int n3, IntPt *pts);
int GaussLegendrePri(int n1, int n2, int n3, IntPt *pts);
int getNGQLPts (int order); int getNGQLPts (int order);
IntPt *getGQLPts (int order); IntPt *getGQLPts (int order);
......
...@@ -48,7 +48,6 @@ struct dirichletBC : public BoundaryCondition ...@@ -48,7 +48,6 @@ struct dirichletBC : public BoundaryCondition
int _comp; // component int _comp; // component
simpleFunction<double> *_f; simpleFunction<double> *_f;
dirichletBC ():BoundaryCondition(),_comp(0),_f(0){} dirichletBC ():BoundaryCondition(),_comp(0),_f(0){}
dirichletBC (int dim, int entityId, int component, double value);
}; };
struct neumannBC : public BoundaryCondition struct neumannBC : public BoundaryCondition
......
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