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

jacobiPolynomials : fix previous commit

parent 917c2194
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,6 @@ void JacobiPolynomials::f(double u, double *val) const { ...@@ -32,7 +32,6 @@ void JacobiPolynomials::f(double u, double *val) const {
} }
void JacobiPolynomials::f(fullMatrix<double> &coord, fullMatrix<double> &val) const {}
void JacobiPolynomials::df(double u, double *val) const { void JacobiPolynomials::df(double u, double *val) const {
...@@ -52,5 +51,3 @@ void JacobiPolynomials::df(double u, double *val) const { ...@@ -52,5 +51,3 @@ void JacobiPolynomials::df(double u, double *val) const {
val[i] = (g1 * tmp[i] + g0 * tmp[i-1])/g2; val[i] = (g1 * tmp[i] + g0 * tmp[i-1])/g2;
} }
} }
void JacobiPolynomials::df(fullMatrix<double> &coord, fullMatrix<double> &val) const {}
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