view libcruft/fftpack/zfftf.f @ 9539:41a74dcd14df

Clear QHULL_LIBS etc on errors. Interpret --without-qhull etc correctly.
author David Grundberg <individ@acc.umu.se>
date Tue, 18 Aug 2009 11:23:03 -0400
parents 82be108cc558
children
line wrap: on
line source

      subroutine zfftf (n,c,wsave)
      implicit double precision (a-h,o-z)
      dimension       c(*)       ,wsave(*)
      if (n .eq. 1) return
      iw1 = n+n+1
      iw2 = iw1+n+n
      call zfftf1 (n,c,wsave,wsave(iw1),wsave(iw2))
      return
      end