Small bug in utils.F90

Use of Cobaya. camb, CLASS, cosmomc, compilers, etc.
Post Reply
Lukas Hollenstein
Posts: 16
Joined: March 31 2009
Affiliation: IPhT CEA-Saclay
Contact:

Small bug in utils.F90

Post by Lukas Hollenstein » October 13 2009

Hi,

Very minor thing in utils.F90: in function concat_s(...)

Code: Select all

              if (present(S7)) then
                concat = trim(concat) // S6
should be

Code: Select all

              if (present(S7)) then
                concat = trim(concat) // S7
These are lines 1092 and 1093 in the Feb 2009 version.

Best,
Lukas

Antony Lewis
Posts: 1943
Joined: September 23 2004
Affiliation: University of Sussex
Contact:

Re: Small bug in utils.F90

Post by Antony Lewis » October 14 2009

Thanks, will fix.

Post Reply