| 2125 | } |
| 2126 | |
| 2127 | WARN_UNUSED_RESULT static int cfft_forward(cfft_plan plan, double c[], double fct) |
| 2128 | { |
| 2129 | if (plan->packplan) |
| 2130 | return cfftp_forward(plan->packplan,c,fct); |
| 2131 | // if (plan->blueplan) |
| 2132 | return cfftblue_forward(plan->blueplan,c,fct); |
| 2133 | } |
| 2134 | |
| 2135 | typedef struct rfft_plan_i |
| 2136 | { |
no test coverage detected