Skip to content
Snippets Groups Projects
Commit d4660189 authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

implement method thirdDerivativeOfDistanceSquaredWRTSecondArgument

[[Imported from SVN: r7414]]
parent 77465a0c
Branches
No related tags found
No related merge requests found
......@@ -104,6 +104,14 @@ public:
return result;
}
/** \brief Compute the mixed third derivative \partial d^3 / \partial db^3
The result is the constant zero-tensor.
*/
static Tensor3<double,N,N,N> thirdDerivativeOfDistanceSquaredWRTSecondArgument(const RealTuple& a, const RealTuple& b) {
return Tensor3<double,N,N,N>(0);
}
/** \brief Compute the mixed third derivative \partial d^3 / \partial da db^2
The result is the constant zero-tensor.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment