Blender V2.61 - r43446
|
00001 00005 #include <stdio.h> 00006 int xerbla_(char *, int *); 00007 00008 /* Subroutine */ int xerbla_(char *srname, int *info) 00009 { 00010 /* -- LAPACK auxiliary routine (version 2.0) -- 00011 Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., 00012 Courant Institute, Argonne National Lab, and Rice University 00013 September 30, 1994 00014 00015 00016 Purpose 00017 ======= 00018 00019 XERBLA is an error handler for the LAPACK routines. 00020 It is called by an LAPACK routine if an input parameter has an 00021 invalid value. A message is printed and execution stops. 00022 00023 Installers may consider modifying the STOP statement in order to 00024 call system-specific exception-handling facilities. 00025 00026 Arguments 00027 ========= 00028 00029 SRNAME (input) CHARACTER*6 00030 The name of the routine which called XERBLA. 00031 00032 INFO (input) INT 00033 The position of the invalid parameter in the parameter list 00034 00035 of the calling routine. 00036 00037 ===================================================================== 00038 */ 00039 00040 printf("** On entry to %6s, parameter number %2d had an illegal value\n", 00041 srname, *info); 00042 00043 /* End of XERBLA */ 00044 00045 return 0; 00046 } /* xerbla_ */ 00047