view libcruft/arpack/util/second.f @ 12276:e4ed10d59f18 release-3-4-x

fix declaration of ETIME in arpack/util/second.f
author John W. Eaton <jwe@octave.org>
date Fri, 28 Jan 2011 14:05:30 -0500
parents 9f5d2ef078e8
children c943be5f929d
line wrap: on
line source

      SUBROUTINE ARSCND( T )
*
      REAL       T
*
*  -- LAPACK auxiliary routine (preliminary version) --
*     Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,
*     Courant Institute, Argonne National Lab, and Rice University
*     July 26, 1991
*
*  Purpose
*  =======
*
*  SECOND returns the user time for a process in arscnds.
*  This version gets the time from the system function ETIME.
*
*     .. Local Scalars ..
      REAL               T1
*     ..
*     .. Local Arrays ..
      REAL               TARRAY( 2 )
*     ..
*     .. External Functions ..
      REAL               ETIME
      INTRINSIC          ETIME
*     ..
*     .. Executable Statements ..
*

      T1 = ETIME( TARRAY )
      T  = TARRAY( 1 )

      RETURN
*
*     End of ARSCND
*
      END