#include <fft_roots.hpp>
Definition at line 291 of file fft_roots.hpp.
typedef V::C C |
Definition at line 292 of file fft_roots.hpp.
typedef V::U U |
Definition at line 293 of file fft_roots.hpp.
Definition at line 298 of file fft_roots.hpp.
References cached_roots_helper< V >::capacity, cached_roots_helper< V >::destroy_roots(), and cached_roots_helper< V >::roots.
00298 { 00299 if (n > capacity) { 00300 if (capacity != 0) V::destroy_roots (roots, capacity); 00301 roots= V::create_roots (n, fm); 00302 capacity= n; 00303 } 00304 return roots; 00305 }
static void destroy_roots | ( | U * | u, | |
nat | n | |||
) | [inline, static] |
Definition at line 308 of file fft_roots.hpp.
Referenced by cached_roots_helper< V >::create_roots().
nat capacity = 0 [inline, static] |
Definition at line 294 of file fft_roots.hpp.
Referenced by cached_roots_helper< V >::create_roots().
V::U * roots = NULL [inline, static] |
Definition at line 295 of file fft_roots.hpp.
Referenced by cached_roots_helper< V >::create_roots().