C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / dgesvx.c
1 #include <math.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <stdio.h>
5 #include <complex.h>
6 #ifdef complex
7 #undef complex
8 #endif
9 #ifdef I
10 #undef I
11 #endif
12
13 #if defined(_WIN64)
14 typedef long long BLASLONG;
15 typedef unsigned long long BLASULONG;
16 #else
17 typedef long BLASLONG;
18 typedef unsigned long BLASULONG;
19 #endif
20
21 #ifdef LAPACK_ILP64
22 typedef BLASLONG blasint;
23 #if defined(_WIN64)
24 #define blasabs(x) llabs(x)
25 #else
26 #define blasabs(x) labs(x)
27 #endif
28 #else
29 typedef int blasint;
30 #define blasabs(x) abs(x)
31 #endif
32
33 typedef blasint integer;
34
35 typedef unsigned int uinteger;
36 typedef char *address;
37 typedef short int shortint;
38 typedef float real;
39 typedef double doublereal;
40 typedef struct { real r, i; } complex;
41 typedef struct { doublereal r, i; } doublecomplex;
42 #ifdef _MSC_VER
43 static inline _Fcomplex Cf(complex *z) {_Fcomplex zz={z->r , z->i}; return zz;}
44 static inline _Dcomplex Cd(doublecomplex *z) {_Dcomplex zz={z->r , z->i};return zz;}
45 static inline _Fcomplex * _pCf(complex *z) {return (_Fcomplex*)z;}
46 static inline _Dcomplex * _pCd(doublecomplex *z) {return (_Dcomplex*)z;}
47 #else
48 static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;}
49 static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;}
50 static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;}
51 static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;}
52 #endif
53 #define pCf(z) (*_pCf(z))
54 #define pCd(z) (*_pCd(z))
55 typedef int logical;
56 typedef short int shortlogical;
57 typedef char logical1;
58 typedef char integer1;
59
60 #define TRUE_ (1)
61 #define FALSE_ (0)
62
63 /* Extern is for use with -E */
64 #ifndef Extern
65 #define Extern extern
66 #endif
67
68 /* I/O stuff */
69
70 typedef int flag;
71 typedef int ftnlen;
72 typedef int ftnint;
73
74 /*external read, write*/
75 typedef struct
76 {       flag cierr;
77         ftnint ciunit;
78         flag ciend;
79         char *cifmt;
80         ftnint cirec;
81 } cilist;
82
83 /*internal read, write*/
84 typedef struct
85 {       flag icierr;
86         char *iciunit;
87         flag iciend;
88         char *icifmt;
89         ftnint icirlen;
90         ftnint icirnum;
91 } icilist;
92
93 /*open*/
94 typedef struct
95 {       flag oerr;
96         ftnint ounit;
97         char *ofnm;
98         ftnlen ofnmlen;
99         char *osta;
100         char *oacc;
101         char *ofm;
102         ftnint orl;
103         char *oblnk;
104 } olist;
105
106 /*close*/
107 typedef struct
108 {       flag cerr;
109         ftnint cunit;
110         char *csta;
111 } cllist;
112
113 /*rewind, backspace, endfile*/
114 typedef struct
115 {       flag aerr;
116         ftnint aunit;
117 } alist;
118
119 /* inquire */
120 typedef struct
121 {       flag inerr;
122         ftnint inunit;
123         char *infile;
124         ftnlen infilen;
125         ftnint  *inex;  /*parameters in standard's order*/
126         ftnint  *inopen;
127         ftnint  *innum;
128         ftnint  *innamed;
129         char    *inname;
130         ftnlen  innamlen;
131         char    *inacc;
132         ftnlen  inacclen;
133         char    *inseq;
134         ftnlen  inseqlen;
135         char    *indir;
136         ftnlen  indirlen;
137         char    *infmt;
138         ftnlen  infmtlen;
139         char    *inform;
140         ftnint  informlen;
141         char    *inunf;
142         ftnlen  inunflen;
143         ftnint  *inrecl;
144         ftnint  *innrec;
145         char    *inblank;
146         ftnlen  inblanklen;
147 } inlist;
148
149 #define VOID void
150
151 union Multitype {       /* for multiple entry points */
152         integer1 g;
153         shortint h;
154         integer i;
155         /* longint j; */
156         real r;
157         doublereal d;
158         complex c;
159         doublecomplex z;
160         };
161
162 typedef union Multitype Multitype;
163
164 struct Vardesc {        /* for Namelist */
165         char *name;
166         char *addr;
167         ftnlen *dims;
168         int  type;
169         };
170 typedef struct Vardesc Vardesc;
171
172 struct Namelist {
173         char *name;
174         Vardesc **vars;
175         int nvars;
176         };
177 typedef struct Namelist Namelist;
178
179 #define abs(x) ((x) >= 0 ? (x) : -(x))
180 #define dabs(x) (fabs(x))
181 #define f2cmin(a,b) ((a) <= (b) ? (a) : (b))
182 #define f2cmax(a,b) ((a) >= (b) ? (a) : (b))
183 #define dmin(a,b) (f2cmin(a,b))
184 #define dmax(a,b) (f2cmax(a,b))
185 #define bit_test(a,b)   ((a) >> (b) & 1)
186 #define bit_clear(a,b)  ((a) & ~((uinteger)1 << (b)))
187 #define bit_set(a,b)    ((a) |  ((uinteger)1 << (b)))
188
189 #define abort_() { sig_die("Fortran abort routine called", 1); }
190 #define c_abs(z) (cabsf(Cf(z)))
191 #define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); }
192 #ifdef _MSC_VER
193 #define c_div(c, a, b) {Cf(c)._Val[0] = (Cf(a)._Val[0]/Cf(b)._Val[0]); Cf(c)._Val[1]=(Cf(a)._Val[1]/Cf(b)._Val[1]);}
194 #define z_div(c, a, b) {Cd(c)._Val[0] = (Cd(a)._Val[0]/Cd(b)._Val[0]); Cd(c)._Val[1]=(Cd(a)._Val[1]/df(b)._Val[1]);}
195 #else
196 #define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);}
197 #define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);}
198 #endif
199 #define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));}
200 #define c_log(R, Z) {pCf(R) = clogf(Cf(Z));}
201 #define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));}
202 //#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));}
203 #define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));}
204 #define d_abs(x) (fabs(*(x)))
205 #define d_acos(x) (acos(*(x)))
206 #define d_asin(x) (asin(*(x)))
207 #define d_atan(x) (atan(*(x)))
208 #define d_atn2(x, y) (atan2(*(x),*(y)))
209 #define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); }
210 #define r_cnjg(R, Z) { pCf(R) = conjf(Cf(Z)); }
211 #define d_cos(x) (cos(*(x)))
212 #define d_cosh(x) (cosh(*(x)))
213 #define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 )
214 #define d_exp(x) (exp(*(x)))
215 #define d_imag(z) (cimag(Cd(z)))
216 #define r_imag(z) (cimagf(Cf(z)))
217 #define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
218 #define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
219 #define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
220 #define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
221 #define d_log(x) (log(*(x)))
222 #define d_mod(x, y) (fmod(*(x), *(y)))
223 #define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x)))
224 #define d_nint(x) u_nint(*(x))
225 #define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a)))
226 #define d_sign(a,b) u_sign(*(a),*(b))
227 #define r_sign(a,b) u_sign(*(a),*(b))
228 #define d_sin(x) (sin(*(x)))
229 #define d_sinh(x) (sinh(*(x)))
230 #define d_sqrt(x) (sqrt(*(x)))
231 #define d_tan(x) (tan(*(x)))
232 #define d_tanh(x) (tanh(*(x)))
233 #define i_abs(x) abs(*(x))
234 #define i_dnnt(x) ((integer)u_nint(*(x)))
235 #define i_len(s, n) (n)
236 #define i_nint(x) ((integer)u_nint(*(x)))
237 #define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b)))
238 #define pow_dd(ap, bp) ( pow(*(ap), *(bp)))
239 #define pow_si(B,E) spow_ui(*(B),*(E))
240 #define pow_ri(B,E) spow_ui(*(B),*(E))
241 #define pow_di(B,E) dpow_ui(*(B),*(E))
242 #define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));}
243 #define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));}
244 #define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));}
245 #define s_cat(lpp, rpp, rnp, np, llp) {         ftnlen i, nc, ll; char *f__rp, *lp;     ll = (llp); lp = (lpp);         for(i=0; i < (int)*(np); ++i) {                 nc = ll;                if((rnp)[i] < nc) nc = (rnp)[i];                ll -= nc;               f__rp = (rpp)[i];               while(--nc >= 0) *lp++ = *(f__rp)++;         }  while(--ll >= 0) *lp++ = ' '; }
246 #define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d))))
247 #define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; }
248 #define sig_die(s, kill) { exit(1); }
249 #define s_stop(s, n) {exit(0);}
250 static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n";
251 #define z_abs(z) (cabs(Cd(z)))
252 #define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));}
253 #define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));}
254 #define myexit_() break;
255 #define mycycle() continue;
256 #define myceiling(w) {ceil(w)}
257 #define myhuge(w) {HUGE_VAL}
258 //#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);}
259 #define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)}
260
261 /* procedure parameter types for -A and -C++ */
262
263 #define F2C_proc_par_types 1
264 #ifdef __cplusplus
265 typedef logical (*L_fp)(...);
266 #else
267 typedef logical (*L_fp)();
268 #endif
269
270 static float spow_ui(float x, integer n) {
271         float pow=1.0; unsigned long int u;
272         if(n != 0) {
273                 if(n < 0) n = -n, x = 1/x;
274                 for(u = n; ; ) {
275                         if(u & 01) pow *= x;
276                         if(u >>= 1) x *= x;
277                         else break;
278                 }
279         }
280         return pow;
281 }
282 static double dpow_ui(double x, integer n) {
283         double pow=1.0; unsigned long int u;
284         if(n != 0) {
285                 if(n < 0) n = -n, x = 1/x;
286                 for(u = n; ; ) {
287                         if(u & 01) pow *= x;
288                         if(u >>= 1) x *= x;
289                         else break;
290                 }
291         }
292         return pow;
293 }
294 #ifdef _MSC_VER
295 static _Fcomplex cpow_ui(complex x, integer n) {
296         complex pow={1.0,0.0}; unsigned long int u;
297                 if(n != 0) {
298                 if(n < 0) n = -n, x.r = 1/x.r, x.i=1/x.i;
299                 for(u = n; ; ) {
300                         if(u & 01) pow.r *= x.r, pow.i *= x.i;
301                         if(u >>= 1) x.r *= x.r, x.i *= x.i;
302                         else break;
303                 }
304         }
305         _Fcomplex p={pow.r, pow.i};
306         return p;
307 }
308 #else
309 static _Complex float cpow_ui(_Complex float x, integer n) {
310         _Complex float pow=1.0; unsigned long int u;
311         if(n != 0) {
312                 if(n < 0) n = -n, x = 1/x;
313                 for(u = n; ; ) {
314                         if(u & 01) pow *= x;
315                         if(u >>= 1) x *= x;
316                         else break;
317                 }
318         }
319         return pow;
320 }
321 #endif
322 #ifdef _MSC_VER
323 static _Dcomplex zpow_ui(_Dcomplex x, integer n) {
324         _Dcomplex pow={1.0,0.0}; unsigned long int u;
325         if(n != 0) {
326                 if(n < 0) n = -n, x._Val[0] = 1/x._Val[0], x._Val[1] =1/x._Val[1];
327                 for(u = n; ; ) {
328                         if(u & 01) pow._Val[0] *= x._Val[0], pow._Val[1] *= x._Val[1];
329                         if(u >>= 1) x._Val[0] *= x._Val[0], x._Val[1] *= x._Val[1];
330                         else break;
331                 }
332         }
333         _Dcomplex p = {pow._Val[0], pow._Val[1]};
334         return p;
335 }
336 #else
337 static _Complex double zpow_ui(_Complex double x, integer n) {
338         _Complex double pow=1.0; unsigned long int u;
339         if(n != 0) {
340                 if(n < 0) n = -n, x = 1/x;
341                 for(u = n; ; ) {
342                         if(u & 01) pow *= x;
343                         if(u >>= 1) x *= x;
344                         else break;
345                 }
346         }
347         return pow;
348 }
349 #endif
350 static integer pow_ii(integer x, integer n) {
351         integer pow; unsigned long int u;
352         if (n <= 0) {
353                 if (n == 0 || x == 1) pow = 1;
354                 else if (x != -1) pow = x == 0 ? 1/x : 0;
355                 else n = -n;
356         }
357         if ((n > 0) || !(n == 0 || x == 1 || x != -1)) {
358                 u = n;
359                 for(pow = 1; ; ) {
360                         if(u & 01) pow *= x;
361                         if(u >>= 1) x *= x;
362                         else break;
363                 }
364         }
365         return pow;
366 }
367 static integer dmaxloc_(double *w, integer s, integer e, integer *n)
368 {
369         double m; integer i, mi;
370         for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
371                 if (w[i-1]>m) mi=i ,m=w[i-1];
372         return mi-s+1;
373 }
374 static integer smaxloc_(float *w, integer s, integer e, integer *n)
375 {
376         float m; integer i, mi;
377         for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
378                 if (w[i-1]>m) mi=i ,m=w[i-1];
379         return mi-s+1;
380 }
381 static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
382         integer n = *n_, incx = *incx_, incy = *incy_, i;
383 #ifdef _MSC_VER
384         _Fcomplex zdotc = {0.0, 0.0};
385         if (incx == 1 && incy == 1) {
386                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
387                         zdotc._Val[0] += conjf(Cf(&x[i]))._Val[0] * Cf(&y[i])._Val[0];
388                         zdotc._Val[1] += conjf(Cf(&x[i]))._Val[1] * Cf(&y[i])._Val[1];
389                 }
390         } else {
391                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
392                         zdotc._Val[0] += conjf(Cf(&x[i*incx]))._Val[0] * Cf(&y[i*incy])._Val[0];
393                         zdotc._Val[1] += conjf(Cf(&x[i*incx]))._Val[1] * Cf(&y[i*incy])._Val[1];
394                 }
395         }
396         pCf(z) = zdotc;
397 }
398 #else
399         _Complex float zdotc = 0.0;
400         if (incx == 1 && incy == 1) {
401                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
402                         zdotc += conjf(Cf(&x[i])) * Cf(&y[i]);
403                 }
404         } else {
405                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
406                         zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]);
407                 }
408         }
409         pCf(z) = zdotc;
410 }
411 #endif
412 static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
413         integer n = *n_, incx = *incx_, incy = *incy_, i;
414 #ifdef _MSC_VER
415         _Dcomplex zdotc = {0.0, 0.0};
416         if (incx == 1 && incy == 1) {
417                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
418                         zdotc._Val[0] += conj(Cd(&x[i]))._Val[0] * Cd(&y[i])._Val[0];
419                         zdotc._Val[1] += conj(Cd(&x[i]))._Val[1] * Cd(&y[i])._Val[1];
420                 }
421         } else {
422                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
423                         zdotc._Val[0] += conj(Cd(&x[i*incx]))._Val[0] * Cd(&y[i*incy])._Val[0];
424                         zdotc._Val[1] += conj(Cd(&x[i*incx]))._Val[1] * Cd(&y[i*incy])._Val[1];
425                 }
426         }
427         pCd(z) = zdotc;
428 }
429 #else
430         _Complex double zdotc = 0.0;
431         if (incx == 1 && incy == 1) {
432                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
433                         zdotc += conj(Cd(&x[i])) * Cd(&y[i]);
434                 }
435         } else {
436                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
437                         zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]);
438                 }
439         }
440         pCd(z) = zdotc;
441 }
442 #endif  
443 static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
444         integer n = *n_, incx = *incx_, incy = *incy_, i;
445 #ifdef _MSC_VER
446         _Fcomplex zdotc = {0.0, 0.0};
447         if (incx == 1 && incy == 1) {
448                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
449                         zdotc._Val[0] += Cf(&x[i])._Val[0] * Cf(&y[i])._Val[0];
450                         zdotc._Val[1] += Cf(&x[i])._Val[1] * Cf(&y[i])._Val[1];
451                 }
452         } else {
453                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
454                         zdotc._Val[0] += Cf(&x[i*incx])._Val[0] * Cf(&y[i*incy])._Val[0];
455                         zdotc._Val[1] += Cf(&x[i*incx])._Val[1] * Cf(&y[i*incy])._Val[1];
456                 }
457         }
458         pCf(z) = zdotc;
459 }
460 #else
461         _Complex float zdotc = 0.0;
462         if (incx == 1 && incy == 1) {
463                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
464                         zdotc += Cf(&x[i]) * Cf(&y[i]);
465                 }
466         } else {
467                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
468                         zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]);
469                 }
470         }
471         pCf(z) = zdotc;
472 }
473 #endif
474 static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
475         integer n = *n_, incx = *incx_, incy = *incy_, i;
476 #ifdef _MSC_VER
477         _Dcomplex zdotc = {0.0, 0.0};
478         if (incx == 1 && incy == 1) {
479                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
480                         zdotc._Val[0] += Cd(&x[i])._Val[0] * Cd(&y[i])._Val[0];
481                         zdotc._Val[1] += Cd(&x[i])._Val[1] * Cd(&y[i])._Val[1];
482                 }
483         } else {
484                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
485                         zdotc._Val[0] += Cd(&x[i*incx])._Val[0] * Cd(&y[i*incy])._Val[0];
486                         zdotc._Val[1] += Cd(&x[i*incx])._Val[1] * Cd(&y[i*incy])._Val[1];
487                 }
488         }
489         pCd(z) = zdotc;
490 }
491 #else
492         _Complex double zdotc = 0.0;
493         if (incx == 1 && incy == 1) {
494                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
495                         zdotc += Cd(&x[i]) * Cd(&y[i]);
496                 }
497         } else {
498                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
499                         zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]);
500                 }
501         }
502         pCd(z) = zdotc;
503 }
504 #endif
505 /*  -- translated by f2c (version 20000121).
506    You must link the resulting object file with the libraries:
507         -lf2c -lm   (in that order)
508 */
509
510
511
512
513 /* > \brief <b> DGESVX computes the solution to system of linear equations A * X = B for GE matrices</b> */
514
515 /*  =========== DOCUMENTATION =========== */
516
517 /* Online html documentation available at */
518 /*            http://www.netlib.org/lapack/explore-html/ */
519
520 /* > \htmlonly */
521 /* > Download DGESVX + dependencies */
522 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dgesvx.
523 f"> */
524 /* > [TGZ]</a> */
525 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dgesvx.
526 f"> */
527 /* > [ZIP]</a> */
528 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dgesvx.
529 f"> */
530 /* > [TXT]</a> */
531 /* > \endhtmlonly */
532
533 /*  Definition: */
534 /*  =========== */
535
536 /*       SUBROUTINE DGESVX( FACT, TRANS, N, NRHS, A, LDA, AF, LDAF, IPIV, */
537 /*                          EQUED, R, C, B, LDB, X, LDX, RCOND, FERR, BERR, */
538 /*                          WORK, IWORK, INFO ) */
539
540 /*       CHARACTER          EQUED, FACT, TRANS */
541 /*       INTEGER            INFO, LDA, LDAF, LDB, LDX, N, NRHS */
542 /*       DOUBLE PRECISION   RCOND */
543 /*       INTEGER            IPIV( * ), IWORK( * ) */
544 /*       DOUBLE PRECISION   A( LDA, * ), AF( LDAF, * ), B( LDB, * ), */
545 /*      $                   BERR( * ), C( * ), FERR( * ), R( * ), */
546 /*      $                   WORK( * ), X( LDX, * ) */
547
548
549 /* > \par Purpose: */
550 /*  ============= */
551 /* > */
552 /* > \verbatim */
553 /* > */
554 /* > DGESVX uses the LU factorization to compute the solution to a real */
555 /* > system of linear equations */
556 /* >    A * X = B, */
557 /* > where A is an N-by-N matrix and X and B are N-by-NRHS matrices. */
558 /* > */
559 /* > Error bounds on the solution and a condition estimate are also */
560 /* > provided. */
561 /* > \endverbatim */
562
563 /* > \par Description: */
564 /*  ================= */
565 /* > */
566 /* > \verbatim */
567 /* > */
568 /* > The following steps are performed: */
569 /* > */
570 /* > 1. If FACT = 'E', real scaling factors are computed to equilibrate */
571 /* >    the system: */
572 /* >       TRANS = 'N':  diag(R)*A*diag(C)     *inv(diag(C))*X = diag(R)*B */
573 /* >       TRANS = 'T': (diag(R)*A*diag(C))**T *inv(diag(R))*X = diag(C)*B */
574 /* >       TRANS = 'C': (diag(R)*A*diag(C))**H *inv(diag(R))*X = diag(C)*B */
575 /* >    Whether or not the system will be equilibrated depends on the */
576 /* >    scaling of the matrix A, but if equilibration is used, A is */
577 /* >    overwritten by diag(R)*A*diag(C) and B by diag(R)*B (if TRANS='N') */
578 /* >    or diag(C)*B (if TRANS = 'T' or 'C'). */
579 /* > */
580 /* > 2. If FACT = 'N' or 'E', the LU decomposition is used to factor the */
581 /* >    matrix A (after equilibration if FACT = 'E') as */
582 /* >       A = P * L * U, */
583 /* >    where P is a permutation matrix, L is a unit lower triangular */
584 /* >    matrix, and U is upper triangular. */
585 /* > */
586 /* > 3. If some U(i,i)=0, so that U is exactly singular, then the routine */
587 /* >    returns with INFO = i. Otherwise, the factored form of A is used */
588 /* >    to estimate the condition number of the matrix A.  If the */
589 /* >    reciprocal of the condition number is less than machine precision, */
590 /* >    INFO = N+1 is returned as a warning, but the routine still goes on */
591 /* >    to solve for X and compute error bounds as described below. */
592 /* > */
593 /* > 4. The system of equations is solved for X using the factored form */
594 /* >    of A. */
595 /* > */
596 /* > 5. Iterative refinement is applied to improve the computed solution */
597 /* >    matrix and calculate error bounds and backward error estimates */
598 /* >    for it. */
599 /* > */
600 /* > 6. If equilibration was used, the matrix X is premultiplied by */
601 /* >    diag(C) (if TRANS = 'N') or diag(R) (if TRANS = 'T' or 'C') so */
602 /* >    that it solves the original system before equilibration. */
603 /* > \endverbatim */
604
605 /*  Arguments: */
606 /*  ========== */
607
608 /* > \param[in] FACT */
609 /* > \verbatim */
610 /* >          FACT is CHARACTER*1 */
611 /* >          Specifies whether or not the factored form of the matrix A is */
612 /* >          supplied on entry, and if not, whether the matrix A should be */
613 /* >          equilibrated before it is factored. */
614 /* >          = 'F':  On entry, AF and IPIV contain the factored form of A. */
615 /* >                  If EQUED is not 'N', the matrix A has been */
616 /* >                  equilibrated with scaling factors given by R and C. */
617 /* >                  A, AF, and IPIV are not modified. */
618 /* >          = 'N':  The matrix A will be copied to AF and factored. */
619 /* >          = 'E':  The matrix A will be equilibrated if necessary, then */
620 /* >                  copied to AF and factored. */
621 /* > \endverbatim */
622 /* > */
623 /* > \param[in] TRANS */
624 /* > \verbatim */
625 /* >          TRANS is CHARACTER*1 */
626 /* >          Specifies the form of the system of equations: */
627 /* >          = 'N':  A * X = B     (No transpose) */
628 /* >          = 'T':  A**T * X = B  (Transpose) */
629 /* >          = 'C':  A**H * X = B  (Transpose) */
630 /* > \endverbatim */
631 /* > */
632 /* > \param[in] N */
633 /* > \verbatim */
634 /* >          N is INTEGER */
635 /* >          The number of linear equations, i.e., the order of the */
636 /* >          matrix A.  N >= 0. */
637 /* > \endverbatim */
638 /* > */
639 /* > \param[in] NRHS */
640 /* > \verbatim */
641 /* >          NRHS is INTEGER */
642 /* >          The number of right hand sides, i.e., the number of columns */
643 /* >          of the matrices B and X.  NRHS >= 0. */
644 /* > \endverbatim */
645 /* > */
646 /* > \param[in,out] A */
647 /* > \verbatim */
648 /* >          A is DOUBLE PRECISION array, dimension (LDA,N) */
649 /* >          On entry, the N-by-N matrix A.  If FACT = 'F' and EQUED is */
650 /* >          not 'N', then A must have been equilibrated by the scaling */
651 /* >          factors in R and/or C.  A is not modified if FACT = 'F' or */
652 /* >          'N', or if FACT = 'E' and EQUED = 'N' on exit. */
653 /* > */
654 /* >          On exit, if EQUED .ne. 'N', A is scaled as follows: */
655 /* >          EQUED = 'R':  A := diag(R) * A */
656 /* >          EQUED = 'C':  A := A * diag(C) */
657 /* >          EQUED = 'B':  A := diag(R) * A * diag(C). */
658 /* > \endverbatim */
659 /* > */
660 /* > \param[in] LDA */
661 /* > \verbatim */
662 /* >          LDA is INTEGER */
663 /* >          The leading dimension of the array A.  LDA >= f2cmax(1,N). */
664 /* > \endverbatim */
665 /* > */
666 /* > \param[in,out] AF */
667 /* > \verbatim */
668 /* >          AF is DOUBLE PRECISION array, dimension (LDAF,N) */
669 /* >          If FACT = 'F', then AF is an input argument and on entry */
670 /* >          contains the factors L and U from the factorization */
671 /* >          A = P*L*U as computed by DGETRF.  If EQUED .ne. 'N', then */
672 /* >          AF is the factored form of the equilibrated matrix A. */
673 /* > */
674 /* >          If FACT = 'N', then AF is an output argument and on exit */
675 /* >          returns the factors L and U from the factorization A = P*L*U */
676 /* >          of the original matrix A. */
677 /* > */
678 /* >          If FACT = 'E', then AF is an output argument and on exit */
679 /* >          returns the factors L and U from the factorization A = P*L*U */
680 /* >          of the equilibrated matrix A (see the description of A for */
681 /* >          the form of the equilibrated matrix). */
682 /* > \endverbatim */
683 /* > */
684 /* > \param[in] LDAF */
685 /* > \verbatim */
686 /* >          LDAF is INTEGER */
687 /* >          The leading dimension of the array AF.  LDAF >= f2cmax(1,N). */
688 /* > \endverbatim */
689 /* > */
690 /* > \param[in,out] IPIV */
691 /* > \verbatim */
692 /* >          IPIV is INTEGER array, dimension (N) */
693 /* >          If FACT = 'F', then IPIV is an input argument and on entry */
694 /* >          contains the pivot indices from the factorization A = P*L*U */
695 /* >          as computed by DGETRF; row i of the matrix was interchanged */
696 /* >          with row IPIV(i). */
697 /* > */
698 /* >          If FACT = 'N', then IPIV is an output argument and on exit */
699 /* >          contains the pivot indices from the factorization A = P*L*U */
700 /* >          of the original matrix A. */
701 /* > */
702 /* >          If FACT = 'E', then IPIV is an output argument and on exit */
703 /* >          contains the pivot indices from the factorization A = P*L*U */
704 /* >          of the equilibrated matrix A. */
705 /* > \endverbatim */
706 /* > */
707 /* > \param[in,out] EQUED */
708 /* > \verbatim */
709 /* >          EQUED is CHARACTER*1 */
710 /* >          Specifies the form of equilibration that was done. */
711 /* >          = 'N':  No equilibration (always true if FACT = 'N'). */
712 /* >          = 'R':  Row equilibration, i.e., A has been premultiplied by */
713 /* >                  diag(R). */
714 /* >          = 'C':  Column equilibration, i.e., A has been postmultiplied */
715 /* >                  by diag(C). */
716 /* >          = 'B':  Both row and column equilibration, i.e., A has been */
717 /* >                  replaced by diag(R) * A * diag(C). */
718 /* >          EQUED is an input argument if FACT = 'F'; otherwise, it is an */
719 /* >          output argument. */
720 /* > \endverbatim */
721 /* > */
722 /* > \param[in,out] R */
723 /* > \verbatim */
724 /* >          R is DOUBLE PRECISION array, dimension (N) */
725 /* >          The row scale factors for A.  If EQUED = 'R' or 'B', A is */
726 /* >          multiplied on the left by diag(R); if EQUED = 'N' or 'C', R */
727 /* >          is not accessed.  R is an input argument if FACT = 'F'; */
728 /* >          otherwise, R is an output argument.  If FACT = 'F' and */
729 /* >          EQUED = 'R' or 'B', each element of R must be positive. */
730 /* > \endverbatim */
731 /* > */
732 /* > \param[in,out] C */
733 /* > \verbatim */
734 /* >          C is DOUBLE PRECISION array, dimension (N) */
735 /* >          The column scale factors for A.  If EQUED = 'C' or 'B', A is */
736 /* >          multiplied on the right by diag(C); if EQUED = 'N' or 'R', C */
737 /* >          is not accessed.  C is an input argument if FACT = 'F'; */
738 /* >          otherwise, C is an output argument.  If FACT = 'F' and */
739 /* >          EQUED = 'C' or 'B', each element of C must be positive. */
740 /* > \endverbatim */
741 /* > */
742 /* > \param[in,out] B */
743 /* > \verbatim */
744 /* >          B is DOUBLE PRECISION array, dimension (LDB,NRHS) */
745 /* >          On entry, the N-by-NRHS right hand side matrix B. */
746 /* >          On exit, */
747 /* >          if EQUED = 'N', B is not modified; */
748 /* >          if TRANS = 'N' and EQUED = 'R' or 'B', B is overwritten by */
749 /* >          diag(R)*B; */
750 /* >          if TRANS = 'T' or 'C' and EQUED = 'C' or 'B', B is */
751 /* >          overwritten by diag(C)*B. */
752 /* > \endverbatim */
753 /* > */
754 /* > \param[in] LDB */
755 /* > \verbatim */
756 /* >          LDB is INTEGER */
757 /* >          The leading dimension of the array B.  LDB >= f2cmax(1,N). */
758 /* > \endverbatim */
759 /* > */
760 /* > \param[out] X */
761 /* > \verbatim */
762 /* >          X is DOUBLE PRECISION array, dimension (LDX,NRHS) */
763 /* >          If INFO = 0 or INFO = N+1, the N-by-NRHS solution matrix X */
764 /* >          to the original system of equations.  Note that A and B are */
765 /* >          modified on exit if EQUED .ne. 'N', and the solution to the */
766 /* >          equilibrated system is inv(diag(C))*X if TRANS = 'N' and */
767 /* >          EQUED = 'C' or 'B', or inv(diag(R))*X if TRANS = 'T' or 'C' */
768 /* >          and EQUED = 'R' or 'B'. */
769 /* > \endverbatim */
770 /* > */
771 /* > \param[in] LDX */
772 /* > \verbatim */
773 /* >          LDX is INTEGER */
774 /* >          The leading dimension of the array X.  LDX >= f2cmax(1,N). */
775 /* > \endverbatim */
776 /* > */
777 /* > \param[out] RCOND */
778 /* > \verbatim */
779 /* >          RCOND is DOUBLE PRECISION */
780 /* >          The estimate of the reciprocal condition number of the matrix */
781 /* >          A after equilibration (if done).  If RCOND is less than the */
782 /* >          machine precision (in particular, if RCOND = 0), the matrix */
783 /* >          is singular to working precision.  This condition is */
784 /* >          indicated by a return code of INFO > 0. */
785 /* > \endverbatim */
786 /* > */
787 /* > \param[out] FERR */
788 /* > \verbatim */
789 /* >          FERR is DOUBLE PRECISION array, dimension (NRHS) */
790 /* >          The estimated forward error bound for each solution vector */
791 /* >          X(j) (the j-th column of the solution matrix X). */
792 /* >          If XTRUE is the true solution corresponding to X(j), FERR(j) */
793 /* >          is an estimated upper bound for the magnitude of the largest */
794 /* >          element in (X(j) - XTRUE) divided by the magnitude of the */
795 /* >          largest element in X(j).  The estimate is as reliable as */
796 /* >          the estimate for RCOND, and is almost always a slight */
797 /* >          overestimate of the true error. */
798 /* > \endverbatim */
799 /* > */
800 /* > \param[out] BERR */
801 /* > \verbatim */
802 /* >          BERR is DOUBLE PRECISION array, dimension (NRHS) */
803 /* >          The componentwise relative backward error of each solution */
804 /* >          vector X(j) (i.e., the smallest relative change in */
805 /* >          any element of A or B that makes X(j) an exact solution). */
806 /* > \endverbatim */
807 /* > */
808 /* > \param[out] WORK */
809 /* > \verbatim */
810 /* >          WORK is DOUBLE PRECISION array, dimension (4*N) */
811 /* >          On exit, WORK(1) contains the reciprocal pivot growth */
812 /* >          factor norm(A)/norm(U). The "f2cmax absolute element" norm is */
813 /* >          used. If WORK(1) is much less than 1, then the stability */
814 /* >          of the LU factorization of the (equilibrated) matrix A */
815 /* >          could be poor. This also means that the solution X, condition */
816 /* >          estimator RCOND, and forward error bound FERR could be */
817 /* >          unreliable. If factorization fails with 0<INFO<=N, then */
818 /* >          WORK(1) contains the reciprocal pivot growth factor for the */
819 /* >          leading INFO columns of A. */
820 /* > \endverbatim */
821 /* > */
822 /* > \param[out] IWORK */
823 /* > \verbatim */
824 /* >          IWORK is INTEGER array, dimension (N) */
825 /* > \endverbatim */
826 /* > */
827 /* > \param[out] INFO */
828 /* > \verbatim */
829 /* >          INFO is INTEGER */
830 /* >          = 0:  successful exit */
831 /* >          < 0:  if INFO = -i, the i-th argument had an illegal value */
832 /* >          > 0:  if INFO = i, and i is */
833 /* >                <= N:  U(i,i) is exactly zero.  The factorization has */
834 /* >                       been completed, but the factor U is exactly */
835 /* >                       singular, so the solution and error bounds */
836 /* >                       could not be computed. RCOND = 0 is returned. */
837 /* >                = N+1: U is nonsingular, but RCOND is less than machine */
838 /* >                       precision, meaning that the matrix is singular */
839 /* >                       to working precision.  Nevertheless, the */
840 /* >                       solution and error bounds are computed because */
841 /* >                       there are a number of situations where the */
842 /* >                       computed solution can be more accurate than the */
843 /* >                       value of RCOND would suggest. */
844 /* > \endverbatim */
845
846 /*  Authors: */
847 /*  ======== */
848
849 /* > \author Univ. of Tennessee */
850 /* > \author Univ. of California Berkeley */
851 /* > \author Univ. of Colorado Denver */
852 /* > \author NAG Ltd. */
853
854 /* > \date April 2012 */
855
856 /* > \ingroup doubleGEsolve */
857
858 /*  ===================================================================== */
859 /* Subroutine */ int dgesvx_(char *fact, char *trans, integer *n, integer *
860         nrhs, doublereal *a, integer *lda, doublereal *af, integer *ldaf, 
861         integer *ipiv, char *equed, doublereal *r__, doublereal *c__, 
862         doublereal *b, integer *ldb, doublereal *x, integer *ldx, doublereal *
863         rcond, doublereal *ferr, doublereal *berr, doublereal *work, integer *
864         iwork, integer *info)
865 {
866     /* System generated locals */
867     integer a_dim1, a_offset, af_dim1, af_offset, b_dim1, b_offset, x_dim1, 
868             x_offset, i__1, i__2;
869     doublereal d__1, d__2;
870
871     /* Local variables */
872     doublereal amax;
873     char norm[1];
874     integer i__, j;
875     extern logical lsame_(char *, char *);
876     doublereal rcmin, rcmax, anorm;
877     logical equil;
878     extern doublereal dlamch_(char *), dlange_(char *, integer *, 
879             integer *, doublereal *, integer *, doublereal *);
880     extern /* Subroutine */ int dlaqge_(integer *, integer *, doublereal *, 
881             integer *, doublereal *, doublereal *, doublereal *, doublereal *,
882              doublereal *, char *), dgecon_(char *, integer *, 
883             doublereal *, integer *, doublereal *, doublereal *, doublereal *,
884              integer *, integer *);
885     doublereal colcnd;
886     logical nofact;
887     extern /* Subroutine */ int dgeequ_(integer *, integer *, doublereal *, 
888             integer *, doublereal *, doublereal *, doublereal *, doublereal *,
889              doublereal *, integer *), dgerfs_(char *, integer *, integer *, 
890             doublereal *, integer *, doublereal *, integer *, integer *, 
891             doublereal *, integer *, doublereal *, integer *, doublereal *, 
892             doublereal *, doublereal *, integer *, integer *), 
893             dgetrf_(integer *, integer *, doublereal *, integer *, integer *, 
894             integer *), dlacpy_(char *, integer *, integer *, doublereal *, 
895             integer *, doublereal *, integer *), xerbla_(char *, 
896             integer *, ftnlen);
897     doublereal bignum;
898     extern doublereal dlantr_(char *, char *, char *, integer *, integer *, 
899             doublereal *, integer *, doublereal *);
900     integer infequ;
901     logical colequ;
902     extern /* Subroutine */ int dgetrs_(char *, integer *, integer *, 
903             doublereal *, integer *, integer *, doublereal *, integer *, 
904             integer *);
905     doublereal rowcnd;
906     logical notran;
907     doublereal smlnum;
908     logical rowequ;
909     doublereal rpvgrw;
910
911
912 /*  -- LAPACK driver routine (version 3.7.0) -- */
913 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
914 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
915 /*     April 2012 */
916
917
918 /*  ===================================================================== */
919
920
921     /* Parameter adjustments */
922     a_dim1 = *lda;
923     a_offset = 1 + a_dim1 * 1;
924     a -= a_offset;
925     af_dim1 = *ldaf;
926     af_offset = 1 + af_dim1 * 1;
927     af -= af_offset;
928     --ipiv;
929     --r__;
930     --c__;
931     b_dim1 = *ldb;
932     b_offset = 1 + b_dim1 * 1;
933     b -= b_offset;
934     x_dim1 = *ldx;
935     x_offset = 1 + x_dim1 * 1;
936     x -= x_offset;
937     --ferr;
938     --berr;
939     --work;
940     --iwork;
941
942     /* Function Body */
943     *info = 0;
944     nofact = lsame_(fact, "N");
945     equil = lsame_(fact, "E");
946     notran = lsame_(trans, "N");
947     if (nofact || equil) {
948         *(unsigned char *)equed = 'N';
949         rowequ = FALSE_;
950         colequ = FALSE_;
951     } else {
952         rowequ = lsame_(equed, "R") || lsame_(equed, 
953                 "B");
954         colequ = lsame_(equed, "C") || lsame_(equed, 
955                 "B");
956         smlnum = dlamch_("Safe minimum");
957         bignum = 1. / smlnum;
958     }
959
960 /*     Test the input parameters. */
961
962     if (! nofact && ! equil && ! lsame_(fact, "F")) {
963         *info = -1;
964     } else if (! notran && ! lsame_(trans, "T") && ! 
965             lsame_(trans, "C")) {
966         *info = -2;
967     } else if (*n < 0) {
968         *info = -3;
969     } else if (*nrhs < 0) {
970         *info = -4;
971     } else if (*lda < f2cmax(1,*n)) {
972         *info = -6;
973     } else if (*ldaf < f2cmax(1,*n)) {
974         *info = -8;
975     } else if (lsame_(fact, "F") && ! (rowequ || colequ 
976             || lsame_(equed, "N"))) {
977         *info = -10;
978     } else {
979         if (rowequ) {
980             rcmin = bignum;
981             rcmax = 0.;
982             i__1 = *n;
983             for (j = 1; j <= i__1; ++j) {
984 /* Computing MIN */
985                 d__1 = rcmin, d__2 = r__[j];
986                 rcmin = f2cmin(d__1,d__2);
987 /* Computing MAX */
988                 d__1 = rcmax, d__2 = r__[j];
989                 rcmax = f2cmax(d__1,d__2);
990 /* L10: */
991             }
992             if (rcmin <= 0.) {
993                 *info = -11;
994             } else if (*n > 0) {
995                 rowcnd = f2cmax(rcmin,smlnum) / f2cmin(rcmax,bignum);
996             } else {
997                 rowcnd = 1.;
998             }
999         }
1000         if (colequ && *info == 0) {
1001             rcmin = bignum;
1002             rcmax = 0.;
1003             i__1 = *n;
1004             for (j = 1; j <= i__1; ++j) {
1005 /* Computing MIN */
1006                 d__1 = rcmin, d__2 = c__[j];
1007                 rcmin = f2cmin(d__1,d__2);
1008 /* Computing MAX */
1009                 d__1 = rcmax, d__2 = c__[j];
1010                 rcmax = f2cmax(d__1,d__2);
1011 /* L20: */
1012             }
1013             if (rcmin <= 0.) {
1014                 *info = -12;
1015             } else if (*n > 0) {
1016                 colcnd = f2cmax(rcmin,smlnum) / f2cmin(rcmax,bignum);
1017             } else {
1018                 colcnd = 1.;
1019             }
1020         }
1021         if (*info == 0) {
1022             if (*ldb < f2cmax(1,*n)) {
1023                 *info = -14;
1024             } else if (*ldx < f2cmax(1,*n)) {
1025                 *info = -16;
1026             }
1027         }
1028     }
1029
1030     if (*info != 0) {
1031         i__1 = -(*info);
1032         xerbla_("DGESVX", &i__1, (ftnlen)6);
1033         return 0;
1034     }
1035
1036     if (equil) {
1037
1038 /*        Compute row and column scalings to equilibrate the matrix A. */
1039
1040         dgeequ_(n, n, &a[a_offset], lda, &r__[1], &c__[1], &rowcnd, &colcnd, &
1041                 amax, &infequ);
1042         if (infequ == 0) {
1043
1044 /*           Equilibrate the matrix. */
1045
1046             dlaqge_(n, n, &a[a_offset], lda, &r__[1], &c__[1], &rowcnd, &
1047                     colcnd, &amax, equed);
1048             rowequ = lsame_(equed, "R") || lsame_(equed,
1049                      "B");
1050             colequ = lsame_(equed, "C") || lsame_(equed,
1051                      "B");
1052         }
1053     }
1054
1055 /*     Scale the right hand side. */
1056
1057     if (notran) {
1058         if (rowequ) {
1059             i__1 = *nrhs;
1060             for (j = 1; j <= i__1; ++j) {
1061                 i__2 = *n;
1062                 for (i__ = 1; i__ <= i__2; ++i__) {
1063                     b[i__ + j * b_dim1] = r__[i__] * b[i__ + j * b_dim1];
1064 /* L30: */
1065                 }
1066 /* L40: */
1067             }
1068         }
1069     } else if (colequ) {
1070         i__1 = *nrhs;
1071         for (j = 1; j <= i__1; ++j) {
1072             i__2 = *n;
1073             for (i__ = 1; i__ <= i__2; ++i__) {
1074                 b[i__ + j * b_dim1] = c__[i__] * b[i__ + j * b_dim1];
1075 /* L50: */
1076             }
1077 /* L60: */
1078         }
1079     }
1080
1081     if (nofact || equil) {
1082
1083 /*        Compute the LU factorization of A. */
1084
1085         dlacpy_("Full", n, n, &a[a_offset], lda, &af[af_offset], ldaf);
1086         dgetrf_(n, n, &af[af_offset], ldaf, &ipiv[1], info);
1087
1088 /*        Return if INFO is non-zero. */
1089
1090         if (*info > 0) {
1091
1092 /*           Compute the reciprocal pivot growth factor of the */
1093 /*           leading rank-deficient INFO columns of A. */
1094
1095             rpvgrw = dlantr_("M", "U", "N", info, info, &af[af_offset], ldaf, 
1096                     &work[1]);
1097             if (rpvgrw == 0.) {
1098                 rpvgrw = 1.;
1099             } else {
1100                 rpvgrw = dlange_("M", n, info, &a[a_offset], lda, &work[1]) / rpvgrw;
1101             }
1102             work[1] = rpvgrw;
1103             *rcond = 0.;
1104             return 0;
1105         }
1106     }
1107
1108 /*     Compute the norm of the matrix A and the */
1109 /*     reciprocal pivot growth factor RPVGRW. */
1110
1111     if (notran) {
1112         *(unsigned char *)norm = '1';
1113     } else {
1114         *(unsigned char *)norm = 'I';
1115     }
1116     anorm = dlange_(norm, n, n, &a[a_offset], lda, &work[1]);
1117     rpvgrw = dlantr_("M", "U", "N", n, n, &af[af_offset], ldaf, &work[1]);
1118     if (rpvgrw == 0.) {
1119         rpvgrw = 1.;
1120     } else {
1121         rpvgrw = dlange_("M", n, n, &a[a_offset], lda, &work[1]) / 
1122                 rpvgrw;
1123     }
1124
1125 /*     Compute the reciprocal of the condition number of A. */
1126
1127     dgecon_(norm, n, &af[af_offset], ldaf, &anorm, rcond, &work[1], &iwork[1],
1128              info);
1129
1130 /*     Compute the solution matrix X. */
1131
1132     dlacpy_("Full", n, nrhs, &b[b_offset], ldb, &x[x_offset], ldx);
1133     dgetrs_(trans, n, nrhs, &af[af_offset], ldaf, &ipiv[1], &x[x_offset], ldx,
1134              info);
1135
1136 /*     Use iterative refinement to improve the computed solution and */
1137 /*     compute error bounds and backward error estimates for it. */
1138
1139     dgerfs_(trans, n, nrhs, &a[a_offset], lda, &af[af_offset], ldaf, &ipiv[1],
1140              &b[b_offset], ldb, &x[x_offset], ldx, &ferr[1], &berr[1], &work[
1141             1], &iwork[1], info);
1142
1143 /*     Transform the solution matrix X to a solution of the original */
1144 /*     system. */
1145
1146     if (notran) {
1147         if (colequ) {
1148             i__1 = *nrhs;
1149             for (j = 1; j <= i__1; ++j) {
1150                 i__2 = *n;
1151                 for (i__ = 1; i__ <= i__2; ++i__) {
1152                     x[i__ + j * x_dim1] = c__[i__] * x[i__ + j * x_dim1];
1153 /* L70: */
1154                 }
1155 /* L80: */
1156             }
1157             i__1 = *nrhs;
1158             for (j = 1; j <= i__1; ++j) {
1159                 ferr[j] /= colcnd;
1160 /* L90: */
1161             }
1162         }
1163     } else if (rowequ) {
1164         i__1 = *nrhs;
1165         for (j = 1; j <= i__1; ++j) {
1166             i__2 = *n;
1167             for (i__ = 1; i__ <= i__2; ++i__) {
1168                 x[i__ + j * x_dim1] = r__[i__] * x[i__ + j * x_dim1];
1169 /* L100: */
1170             }
1171 /* L110: */
1172         }
1173         i__1 = *nrhs;
1174         for (j = 1; j <= i__1; ++j) {
1175             ferr[j] /= rowcnd;
1176 /* L120: */
1177         }
1178     }
1179
1180     work[1] = rpvgrw;
1181
1182 /*     Set INFO = N+1 if the matrix is singular to working precision. */
1183
1184     if (*rcond < dlamch_("Epsilon")) {
1185         *info = *n + 1;
1186     }
1187     return 0;
1188
1189 /*     End of DGESVX */
1190
1191 } /* dgesvx_ */
1192