Skip to content
Snippets Groups Projects
Commit a49a348c authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Fix Windows build

parent b9976788
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include "WinDllMacros.h" #include "WinDllMacros.h"
#include "Exceptions.h" #include "Exceptions.h"
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>
#include <vector>
#include <map> #include <map>
#include <list> #include <list>
......
...@@ -27,7 +27,7 @@ protected: ...@@ -27,7 +27,7 @@ protected:
cvector_t q = eps*qdir; cvector_t q = eps*qdir;
complex_t ff = p->evaluate_for_q( q ); complex_t ff = p->evaluate_for_q( q );
//std::cout<<"q="<<q<<" -> "<<std::setprecision(16)<<" ff0="<<V<<", ff ="<<ff<<"\n"; //std::cout<<"q="<<q<<" -> "<<std::setprecision(16)<<" ff0="<<V<<", ff ="<<ff<<"\n";
EXPECT_LE( real(ff), V*(1+3e-16) ); EXPECT_LE( real(ff), V*(1+4e-16) );
if ( R*R*R<V/20 || R*R*R>20*V ) if ( R*R*R<V/20 || R*R*R>20*V )
// very excentric shape, the following tests cannot be expected to pass // very excentric shape, the following tests cannot be expected to pass
return; return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment