Build the sharp dependency

This commit is contained in:
Guilhem Lavaux 2012-11-10 11:10:04 -05:00
parent 72f658c7cf
commit 707a25bda3
3 changed files with 20 additions and 6 deletions

View file

@ -13,5 +13,8 @@ int main()
dft.analysis();
cout << "Map dot-product = " << dft.realSpace().dot_product(dft.realSpace()) << endl;
cout << "Fourier dot-product = " << dft.fourierSpace().dot_product(dft.fourierSpace()).real()*volume << endl;
dft.synthesis();
cout << "Resynthesis dot-product = " << dft.realSpace().dot_product(dft.realSpace()) << endl;
return 0;
}