(r)
| 170 | m = weighting["m"] |
| 171 | |
| 172 | def f(r): |
| 173 | w = c * np.power(1 + 2 * (r / r0) ** 3 - 3 * (r / r0) ** 2, m) |
| 174 | w[r > r0] = 0 |
| 175 | return w |
| 176 | |
| 177 | func = f |
| 178 | elif fname == "pow": |
nothing calls this directly
no outgoing calls
no test coverage detected