1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-19 17:03:46 +02:00

fixed uninitialised value for line numbers read from CAMB file (also the flag whether linear interpolation should be used was uninitialised, but always set in the end). these fixes do not affect overall behavior

This commit is contained in:
Oliver Hahn 2016-04-16 13:24:22 +02:00
parent 87aea86e48
commit 3d8c218a77

View file

@ -24,11 +24,10 @@ private:
gsl_spline *spline_vtot, *spline_vcdm, *spline_vbaryon;
double m_kmin, m_kmax;
unsigned m_nlines;
unsigned m_nlines = 0;
bool m_linbaryoninterp;
bool m_linbaryoninterp = false;
double m_velunits;
void read_table( void ){
#ifdef WITH_MPI