Porównaj commity

...

2 Commity

Autor SHA1 Wiadomość Data
Enrique Condes 419d7b044e
Merge pull request #83 from FintasticMan/customisable_sqrt
Make the sqrt_internal macro customisable
2023-05-26 14:55:19 -06:00
Finlay Davidson 5c652cdc95 Make the sqrt_internal macro customisable 2023-04-03 22:00:36 +02:00
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -50,7 +50,9 @@
#ifdef FFT_SQRT_APPROXIMATION
#include <type_traits>
#else
#define sqrt_internal sqrt
#ifndef sqrt_internal
#define sqrt_internal sqrt
#endif
#endif
enum class FFTDirection