| 2185 | } |
| 2186 | |
| 2187 | WARN_UNUSED_RESULT static int rfft_forward(rfft_plan plan, double c[], double fct) |
| 2188 | { |
| 2189 | if (plan->packplan) |
| 2190 | return rfftp_forward(plan->packplan,c,fct); |
| 2191 | else // if (plan->blueplan) |
| 2192 | return rfftblue_forward(plan->blueplan,c,fct); |
| 2193 | } |
| 2194 | |
| 2195 | static PyObject * |
| 2196 | execute_complex(PyObject *a1, int is_forward, double fct) |
no test coverage detected