From 121d5755b6996a69d12717a7d842ed9032659478 Mon Sep 17 00:00:00 2001 From: Cristian C Lalescu Date: Wed, 24 May 2017 13:55:58 +0200 Subject: [PATCH] use DEFAULT_FFTW_FLAG instead of FFTW_MEASURE NSVE (and implicitly NSVEparticles) was using FFTW_MEASURE when creating the `vorticity_equation` object. --- bfps/cpp/full_code/NSVE.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bfps/cpp/full_code/NSVE.cpp b/bfps/cpp/full_code/NSVE.cpp index 0b82a781..9c40968a 100644 --- a/bfps/cpp/full_code/NSVE.cpp +++ b/bfps/cpp/full_code/NSVE.cpp @@ -36,11 +36,11 @@ int NSVE::initialize(void) simname.c_str(), nx, ny, nz, dkx, dky, dkz, - FFTW_MEASURE); + DEFAULT_FFTW_FLAG); this->tmp_vec_field = new field( nx, ny, nz, this->comm, - FFTW_MEASURE); + DEFAULT_FFTW_FLAG); this->fs->checkpoints_per_file = checkpoints_per_file; -- GitLab