fixed printout of subsampling

This commit is contained in:
P.M. Sutter 2012-12-19 08:11:43 -06:00
parent 3dd1281cc9
commit e9b2697bc7
2 changed files with 2 additions and 2 deletions

View file

@ -524,7 +524,7 @@ int main(int argc, char **argv)
cout << "Boxsize = " << header->BoxSize << endl;
cout << "Omega_M = " << header->Omega_M << endl;
cout << "Omega_Lambda = " << header->Omega_Lambda << endl;
cout << "Subsample fraction: " << (args_info.subsample_given ? 1 : args_info.subsample_arg) << endl;
cout << "Subsample fraction: " << (args_info.subsample_given ? args_info.subsample_arg : 1.0) << endl;
}
double *expfact;