diff --git a/Makefile b/Makefile index 2229240..4024598 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,8 @@ ############################################################################## ### compile time configuration options FFTW3 = yes +MULTITHREADFFTW = no MULTITHREADFFTW = yes -MULTITHREADFFTW = no -MULTITHREADFFTW = no SINGLEPRECISION = no HAVEHDF5 = no HAVEBOXLIB = yes @@ -19,7 +18,7 @@ CPATHS = -I. -I$(HOME)/local/include -I/opt/local/include -I/usr/local/include LPATHS = -L$(HOME)/local/lib -L/opt/local/lib -L/usr/local/lib CPATHS = -I. -I$(HOME)/music-stuff/inst/include -LPATHS = -L$(HOME)/music-stuff/inst/lib +LPATHS = -L$(HOME)/music-stuff/inst/lib -L$(HOME)/fftw-3.3.3/lib ############################################################################## # if you have FFTW 2.1.5 or 3.x with multi-thread support, you can enable the diff --git a/plugins/boxlib_stuff/output_nyx.cpp b/plugins/boxlib_stuff/output_nyx.cpp index 057c10a..de87ec3 100644 --- a/plugins/boxlib_stuff/output_nyx.cpp +++ b/plugins/boxlib_stuff/output_nyx.cpp @@ -388,7 +388,7 @@ public: inputs << "mg.v = 0 # verbosity in Amr.cpp" << std::endl; inputs << "particles.v = 1 # verbosity in Particle class" << std::endl; inputs << "amr.ref_ratio = 2 2 2 2 2 2 2 2 " << std::endl; - inputs << "amr.regrid_int = 1 1 1 1 1 1 1 1 " << std::endl; + inputs << "amr.regrid_int = 2 2 2 2 2 2 2 2 " << std::endl; inputs << "amr.initial_grid_file = init/grids_file" << std::endl; inputs << "amr.useFixedCoarseGrids = 1" << std::endl; inputs << "amr.useFixedUpToLevel = " << levelmax_-levelmin_ << std::endl;