LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine chkxer ( character*(*)  SRNAMT,
integer  INFOT,
integer  NOUT,
logical  LERR,
logical  OK 
)

CHKXER

Purpose:
 
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011

Definition at line 61 of file chkxer.f.

61 *
62 * -- LAPACK test routine (input) --
63 * -- LAPACK is a software package provided by Univ. of Tennessee, --
64 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
65 * November 2011
66 *
67 * .. Scalar Arguments ..
68  LOGICAL lerr, ok
69  CHARACTER*(*) srnamt
70  INTEGER infot, nout
71 * ..
72 * .. Intrinsic Functions ..
73  INTRINSIC len_trim
74 * ..
75 * .. Executable Statements ..
76  IF( .NOT.lerr ) THEN
77  WRITE( nout, fmt = 9999 )infot,
78  $ srnamt( 1:len_trim( srnamt ) )
79  ok = .false.
80  END IF
81  lerr = .false.
82  RETURN
83 *
84  9999 FORMAT( ' *** Illegal value of parameter number ', i2,
85  $ ' not detected by ', a6, ' ***' )
86 *
87 * End of CHKXER.
88 *