Filepath: ./external_modules/code/cosmolike/pt_cfastpt.c
Location:
void get_FPT_bias(void)
{
static double cache[MAX_SIZE_ARRAYS];
if (fdiff(cache[1], Ntable.random))
{
FPTIA.k_min = 1.e-5; //<-🚨 alert
FPTIA.k_max = 1.e+5; //<-🚨 alert
FPTbias.N = 800 + 200 * Ntable.FPTboost;
...
}
if (fdiff(cache[0], cosmology.random) || fdiff(cache[1], Ntable.random))
{
const double dlogk = (log(FPTbias.k_max) - log(FPTbias.k_min))/FPTbias.N;
...
}
}
Expected behavior:
FPTbias.k_min and FPTbias.kmax should be set 1e-5 and 1e5 instead of FPTIA.k_min and FPTIA.kmax
Filepath: ./external_modules/code/cosmolike/pt_cfastpt.c
Location:
Expected behavior:
FPTbias.k_minandFPTbias.kmaxshould be set1e-5and1e5instead ofFPTIA.k_minandFPTIA.kmax