From b1e8b5b5ce0de2211f5bc85ec4d126f9d92e37c6 Mon Sep 17 00:00:00 2001 From: ferben Date: Fri, 15 Nov 2019 11:00:25 +0000 Subject: [PATCH] changed default behaviour as discussed with antonin --- Hadrons/Modules/MDistil/PerambFromSolve.hpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Hadrons/Modules/MDistil/PerambFromSolve.hpp b/Hadrons/Modules/MDistil/PerambFromSolve.hpp index ae8431dc..98866180 100644 --- a/Hadrons/Modules/MDistil/PerambFromSolve.hpp +++ b/Hadrons/Modules/MDistil/PerambFromSolve.hpp @@ -41,7 +41,13 @@ BEGIN_MODULE_NAMESPACE(MDistil) This module computes a perambulator from an already completed solve. Optionally, the number of eigenvectors used in the perambulator and the parameter LI can be chosen to be lower than the ones in the solve, allowing - for a study of the signal with different values of nvec. + for a study of the signal with different values of nvec. + + LI_reduced : value of LI actually used in the computation + nvec_reduced: value of nvec actually used in the computation + LI : value of LI used to compute the 'solve' + nvec : value of nvec used to compute the 'solve' + ******************************************************************************/ class PerambFromSolvePar: Serializable @@ -107,8 +113,8 @@ void TPerambFromSolve::setup(void) const bool full_tdil{ dp.TI == Nt }; const int Nt_inv{ full_tdil ? 1 : dp.TI }; grid3d.reset( MakeLowerDimGrid( env().getGrid() ) ); - const int nvec_reduced{par().nvec_reduced.empty() ? dp.nvec : std::stoi(par().nvec_reduced)}; - const int LI_reduced{ par().LI_reduced.empty() ? dp.LI : std::stoi(par().LI_reduced)}; + const int nvec_reduced{par().nvec_reduced}; + const int LI_reduced{ par().LI_reduced}; envCreate(PerambTensor, getName(), 1, Nt,nvec_reduced,LI_reduced,dp.nnoise,Nt_inv,dp.SI); envCreate(NoiseTensor, getName() + "_noise", 1, dp.nnoise, Nt, dp.nvec, Ns ); envTmp(LatticeColourVector, "result3d_nospin",1,LatticeColourVector(grid3d.get()));