Update fast_fourier_transform.cpp

This commit is contained in:
Ameya Chawla 2021-10-24 09:42:00 +05:30 committed by GitHub
parent c7dcd92d1b
commit e2c9838541
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -156,6 +156,6 @@ std::complex<double>* FastFourierTransform(std::complex<double>*p,uint8_t n)
int main(int argc, char const *argv[])
{
test();/// run self-test implementations
test();/// run self-test implementations with 2 defined test cases
return 0;
}