Changeset 4e219a3 for setmvs.f


Ignore:
Timestamp:
09/05/08 11:49:43 (16 years ago)
Author:
baerbaer <baerbaer@…>
Branches:
master
Children:
a52fb83
Parents:
229cc35
Message:

Update Lund init and BG/P compatibility.

  • Moved call of init_lundff after initialization of the molecule. The Lund

force field needs the molecule to calculate the hydrophobicity matrix.

  • Added bgp target to Makefile to compile SMMP on a BlueGene/P
  • Split if statement in setmvs to avoid out-of-range warning for array

access.

  • Changed setup of boundaries in Protein.zimmer() to match new version of

numpy.

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/smmp/trunk@15 26dc1dd8-5c4e-0410-9ffe-d298b4865968

File:
1 edited

Legend:

Unmodified
Added
Removed
  • setmvs.f

    r229cc35 r4e219a3  
    132132      j=l+l-ii
    133133      do while (j.le.k)
    134         if (j.lt.k.and.iadvr1(iorvr(j)).lt.iadvr1(iorvr(j+1))) j=j+1
     134!         if (j.lt.k.and.iadvr1(iorvr(j)).lt.iadvr1(iorvr(j+1))) j=j+1
     135        if (j.lt.k) then
     136            if (iadvr1(iorvr(j)).lt.iadvr1(iorvr(j+1))) then
     137                j = j + 1
     138            end if
     139        end if
    135140        if (n.lt.iadvr1(iorvr(j))) then
    136141          iorvr(i)=iorvr(j)
Note: See TracChangeset for help on using the changeset viewer.