MCPcopy Create free account
hub / github.com/SeisSol/SeisSol / SingularityFreeJacobiPRecursion

Function SingularityFreeJacobiPRecursion

src/Numerical/Functions.cpp:49–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47}
48
49double SingularityFreeJacobiPRecursion(
50 double x, double y, const std::array<double, 5>& cm, double pm1, double pm2) {
51 return (cm[0] * (cm[1] * y + cm[2] * x) * pm1 - cm[3] * y * y * pm2) / cm[4];
52}
53
54double SingularityFreeJacobiP(unsigned n, unsigned a, unsigned b, double x, double y) {
55 if (n == 0) {

Callers 2

SingularityFreeJacobiPFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected