Dear Amber users,
I recently had trouble compiling amber 10 with G95 on my machine and noticed
two inconsistencies in the source code (note that these files have probably
been updated but if you have a version that is more than a week old this may
concern you).
1. In src/addles/addspace_atm1st.f
Line 252:
if(ipick(iph(i))>1.or.ipick(jph(i))>1.or.ipick(kph(i))>1
& .or.ipick(lph(i))) then
Should be changed to
if(ipick(iph(i))>1.or.ipick(jph(i))>1.or.ipick(kph(i))>1
& .or.ipick(lph(i))>1) then
And line 305
if(ipick(ip(i))>1.or.ipick(jp(i))>1.or.ipick(kp(i))>1
& .or.ipick(lp(i))) then
Should be changed to
if(ipick(ip(i))>1.or.ipick(jp(i))>1.or.ipick(kp(i))>1
& .or.ipick(lp(i))>1) then
2. In src/sander/ rcbond_anal2num.f
Line 26: _REAL_ , external :: bond_umb can be commented out as bond_umb
is not used in this routine. For some odd reason G95 won't compile if one
doesn't comment this line.
Yannick Bomble
-----------------------------------------------------------------------
The AMBER Mail Reflector
To post, send mail to amber.scripps.edu
To unsubscribe, send "unsubscribe amber" to majordomo.scripps.edu
Received on Wed Aug 16 2006 - 06:07:13 PDT