******************************************************************************** * * * 2DHF version 1-2003 * * Copyright (C) 1996 Jacek Kobus, Leif Laaksonen, Dage Sundholm * * * * This software may be used and distributed according to the terms * * of the GNU General Public License, see README and COPYING. * * * ******************************************************************************** c ### refill34 ### c c Reverses the action of fill and fill[2-4] c subroutine refill34 (nnit,nmit,fun,work) implicit integer*4 (i-n) implicit real*8 (a-h,o-z) include 'commons8.inc' dimension fun(nnit,*),work(nnit+8,nmit+8) c refill the interior of work array do i=1,nmit do j=1,nnit fun(j,muoffs+i)=work(j+4,i+4) enddo enddo return end