Update numerical_methods/fast_fourier_transform.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Ameya Chawla 2021-10-26 00:49:52 +05:30 committed by GitHub
parent 37e74e3669
commit 276a4afb95
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 with 2 defined test cases
test(); // run self-test implementations with 2 defined test cases
return 0;
}