C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / chetf2_rook.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 /* Table of constant values */
514
515 static integer c__1 = 1;
516
517 /* > \brief \b CHETF2_ROOK computes the factorization of a complex Hermitian indefinite matrix using the bound
518 ed Bunch-Kaufman ("rook") diagonal pivoting method (unblocked algorithm). */
519
520 /*  =========== DOCUMENTATION =========== */
521
522 /* Online html documentation available at */
523 /*            http://www.netlib.org/lapack/explore-html/ */
524
525 /* > \htmlonly */
526 /* > Download CHETF2_ROOK + dependencies */
527 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/chetf2_
528 rook.f"> */
529 /* > [TGZ]</a> */
530 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/chetf2_
531 rook.f"> */
532 /* > [ZIP]</a> */
533 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/chetf2_
534 rook.f"> */
535 /* > [TXT]</a> */
536 /* > \endhtmlonly */
537
538 /*  Definition: */
539 /*  =========== */
540
541 /*       SUBROUTINE CHETF2_ROOK( UPLO, N, A, LDA, IPIV, INFO ) */
542
543 /*       CHARACTER          UPLO */
544 /*       INTEGER            INFO, LDA, N */
545 /*       INTEGER            IPIV( * ) */
546 /*       COMPLEX            A( LDA, * ) */
547
548
549 /* > \par Purpose: */
550 /*  ============= */
551 /* > */
552 /* > \verbatim */
553 /* > */
554 /* > CHETF2_ROOK computes the factorization of a complex Hermitian matrix A */
555 /* > using the bounded Bunch-Kaufman ("rook") diagonal pivoting method: */
556 /* > */
557 /* >    A = U*D*U**H  or  A = L*D*L**H */
558 /* > */
559 /* > where U (or L) is a product of permutation and unit upper (lower) */
560 /* > triangular matrices, U**H is the conjugate transpose of U, and D is */
561 /* > Hermitian and block diagonal with 1-by-1 and 2-by-2 diagonal blocks. */
562 /* > */
563 /* > This is the unblocked version of the algorithm, calling Level 2 BLAS. */
564 /* > \endverbatim */
565
566 /*  Arguments: */
567 /*  ========== */
568
569 /* > \param[in] UPLO */
570 /* > \verbatim */
571 /* >          UPLO is CHARACTER*1 */
572 /* >          Specifies whether the upper or lower triangular part of the */
573 /* >          Hermitian matrix A is stored: */
574 /* >          = 'U':  Upper triangular */
575 /* >          = 'L':  Lower triangular */
576 /* > \endverbatim */
577 /* > */
578 /* > \param[in] N */
579 /* > \verbatim */
580 /* >          N is INTEGER */
581 /* >          The order of the matrix A.  N >= 0. */
582 /* > \endverbatim */
583 /* > */
584 /* > \param[in,out] A */
585 /* > \verbatim */
586 /* >          A is COMPLEX array, dimension (LDA,N) */
587 /* >          On entry, the Hermitian matrix A.  If UPLO = 'U', the leading */
588 /* >          n-by-n upper triangular part of A contains the upper */
589 /* >          triangular part of the matrix A, and the strictly lower */
590 /* >          triangular part of A is not referenced.  If UPLO = 'L', the */
591 /* >          leading n-by-n lower triangular part of A contains the lower */
592 /* >          triangular part of the matrix A, and the strictly upper */
593 /* >          triangular part of A is not referenced. */
594 /* > */
595 /* >          On exit, the block diagonal matrix D and the multipliers used */
596 /* >          to obtain the factor U or L (see below for further details). */
597 /* > \endverbatim */
598 /* > */
599 /* > \param[in] LDA */
600 /* > \verbatim */
601 /* >          LDA is INTEGER */
602 /* >          The leading dimension of the array A.  LDA >= f2cmax(1,N). */
603 /* > \endverbatim */
604 /* > */
605 /* > \param[out] IPIV */
606 /* > \verbatim */
607 /* >          IPIV is INTEGER array, dimension (N) */
608 /* >          Details of the interchanges and the block structure of D. */
609 /* > */
610 /* >          If UPLO = 'U': */
611 /* >             If IPIV(k) > 0, then rows and columns k and IPIV(k) were */
612 /* >             interchanged and D(k,k) is a 1-by-1 diagonal block. */
613 /* > */
614 /* >             If IPIV(k) < 0 and IPIV(k-1) < 0, then rows and */
615 /* >             columns k and -IPIV(k) were interchanged and rows and */
616 /* >             columns k-1 and -IPIV(k-1) were inerchaged, */
617 /* >             D(k-1:k,k-1:k) is a 2-by-2 diagonal block. */
618 /* > */
619 /* >          If UPLO = 'L': */
620 /* >             If IPIV(k) > 0, then rows and columns k and IPIV(k) */
621 /* >             were interchanged and D(k,k) is a 1-by-1 diagonal block. */
622 /* > */
623 /* >             If IPIV(k) < 0 and IPIV(k+1) < 0, then rows and */
624 /* >             columns k and -IPIV(k) were interchanged and rows and */
625 /* >             columns k+1 and -IPIV(k+1) were inerchaged, */
626 /* >             D(k:k+1,k:k+1) is a 2-by-2 diagonal block. */
627 /* > \endverbatim */
628 /* > */
629 /* > \param[out] INFO */
630 /* > \verbatim */
631 /* >          INFO is INTEGER */
632 /* >          = 0: successful exit */
633 /* >          < 0: if INFO = -k, the k-th argument had an illegal value */
634 /* >          > 0: if INFO = k, D(k,k) is exactly zero.  The factorization */
635 /* >               has been completed, but the block diagonal matrix D is */
636 /* >               exactly singular, and division by zero will occur if it */
637 /* >               is used to solve a system of equations. */
638 /* > \endverbatim */
639
640 /*  Authors: */
641 /*  ======== */
642
643 /* > \author Univ. of Tennessee */
644 /* > \author Univ. of California Berkeley */
645 /* > \author Univ. of Colorado Denver */
646 /* > \author NAG Ltd. */
647
648 /* > \date November 2013 */
649
650 /* > \ingroup complexHEcomputational */
651
652 /* > \par Further Details: */
653 /*  ===================== */
654 /* > */
655 /* > \verbatim */
656 /* > */
657 /* >  If UPLO = 'U', then A = U*D*U**H, where */
658 /* >     U = P(n)*U(n)* ... *P(k)U(k)* ..., */
659 /* >  i.e., U is a product of terms P(k)*U(k), where k decreases from n to */
660 /* >  1 in steps of 1 or 2, and D is a block diagonal matrix with 1-by-1 */
661 /* >  and 2-by-2 diagonal blocks D(k).  P(k) is a permutation matrix as */
662 /* >  defined by IPIV(k), and U(k) is a unit upper triangular matrix, such */
663 /* >  that if the diagonal block D(k) is of order s (s = 1 or 2), then */
664 /* > */
665 /* >             (   I    v    0   )   k-s */
666 /* >     U(k) =  (   0    I    0   )   s */
667 /* >             (   0    0    I   )   n-k */
668 /* >                k-s   s   n-k */
669 /* > */
670 /* >  If s = 1, D(k) overwrites A(k,k), and v overwrites A(1:k-1,k). */
671 /* >  If s = 2, the upper triangle of D(k) overwrites A(k-1,k-1), A(k-1,k), */
672 /* >  and A(k,k), and v overwrites A(1:k-2,k-1:k). */
673 /* > */
674 /* >  If UPLO = 'L', then A = L*D*L**H, where */
675 /* >     L = P(1)*L(1)* ... *P(k)*L(k)* ..., */
676 /* >  i.e., L is a product of terms P(k)*L(k), where k increases from 1 to */
677 /* >  n in steps of 1 or 2, and D is a block diagonal matrix with 1-by-1 */
678 /* >  and 2-by-2 diagonal blocks D(k).  P(k) is a permutation matrix as */
679 /* >  defined by IPIV(k), and L(k) is a unit lower triangular matrix, such */
680 /* >  that if the diagonal block D(k) is of order s (s = 1 or 2), then */
681 /* > */
682 /* >             (   I    0     0   )  k-1 */
683 /* >     L(k) =  (   0    I     0   )  s */
684 /* >             (   0    v     I   )  n-k-s+1 */
685 /* >                k-1   s  n-k-s+1 */
686 /* > */
687 /* >  If s = 1, D(k) overwrites A(k,k), and v overwrites A(k+1:n,k). */
688 /* >  If s = 2, the lower triangle of D(k) overwrites A(k,k), A(k+1,k), */
689 /* >  and A(k+1,k+1), and v overwrites A(k+2:n,k:k+1). */
690 /* > \endverbatim */
691
692 /* > \par Contributors: */
693 /*  ================== */
694 /* > */
695 /* > \verbatim */
696 /* > */
697 /* >  November 2013,  Igor Kozachenko, */
698 /* >                  Computer Science Division, */
699 /* >                  University of California, Berkeley */
700 /* > */
701 /* >  September 2007, Sven Hammarling, Nicholas J. Higham, Craig Lucas, */
702 /* >                  School of Mathematics, */
703 /* >                  University of Manchester */
704 /* > */
705 /* >  01-01-96 - Based on modifications by */
706 /* >    J. Lewis, Boeing Computer Services Company */
707 /* >    A. Petitet, Computer Science Dept., Univ. of Tenn., Knoxville, USA */
708 /* > \endverbatim */
709
710 /*  ===================================================================== */
711 /* Subroutine */ int chetf2_rook_(char *uplo, integer *n, complex *a, 
712         integer *lda, integer *ipiv, integer *info)
713 {
714     /* System generated locals */
715     integer a_dim1, a_offset, i__1, i__2, i__3, i__4, i__5, i__6;
716     real r__1, r__2;
717     complex q__1, q__2, q__3, q__4, q__5, q__6, q__7, q__8;
718
719     /* Local variables */
720     extern /* Subroutine */ int cher_(char *, integer *, real *, complex *, 
721             integer *, complex *, integer *);
722     logical done;
723     integer imax, jmax;
724     real d__;
725     integer i__, j, k, p;
726     complex t;
727     real alpha;
728     extern logical lsame_(char *, char *);
729     real sfmin;
730     extern /* Subroutine */ int cswap_(integer *, complex *, integer *, 
731             complex *, integer *);
732     integer itemp, kstep;
733     real stemp;
734     logical upper;
735     real r1, d11;
736     complex d12;
737     real d22;
738     complex d21;
739     extern real slapy2_(real *, real *);
740     integer ii, kk, kp;
741     real absakk;
742     complex wk;
743     extern integer icamax_(integer *, complex *, integer *);
744     extern real slamch_(char *);
745     real tt;
746     extern /* Subroutine */ int csscal_(integer *, real *, complex *, integer 
747             *), xerbla_(char *, integer *, ftnlen);
748     real colmax, rowmax;
749     complex wkm1, wkp1;
750
751
752 /*  -- LAPACK computational routine (version 3.5.0) -- */
753 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
754 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
755 /*     November 2013 */
756
757
758 /*  ====================================================================== */
759
760
761
762 /*     Test the input parameters. */
763
764     /* Parameter adjustments */
765     a_dim1 = *lda;
766     a_offset = 1 + a_dim1 * 1;
767     a -= a_offset;
768     --ipiv;
769
770     /* Function Body */
771     *info = 0;
772     upper = lsame_(uplo, "U");
773     if (! upper && ! lsame_(uplo, "L")) {
774         *info = -1;
775     } else if (*n < 0) {
776         *info = -2;
777     } else if (*lda < f2cmax(1,*n)) {
778         *info = -4;
779     }
780     if (*info != 0) {
781         i__1 = -(*info);
782         xerbla_("CHETF2_ROOK", &i__1, (ftnlen)11);
783         return 0;
784     }
785
786 /*     Initialize ALPHA for use in choosing pivot block size. */
787
788     alpha = (sqrt(17.f) + 1.f) / 8.f;
789
790 /*     Compute machine safe minimum */
791
792     sfmin = slamch_("S");
793
794     if (upper) {
795
796 /*        Factorize A as U*D*U**H using the upper triangle of A */
797
798 /*        K is the main loop index, decreasing from N to 1 in steps of */
799 /*        1 or 2 */
800
801         k = *n;
802 L10:
803
804 /*        If K < 1, exit from loop */
805
806         if (k < 1) {
807             goto L70;
808         }
809         kstep = 1;
810         p = k;
811
812 /*        Determine rows and columns to be interchanged and whether */
813 /*        a 1-by-1 or 2-by-2 pivot block will be used */
814
815         i__1 = k + k * a_dim1;
816         absakk = (r__1 = a[i__1].r, abs(r__1));
817
818 /*        IMAX is the row-index of the largest off-diagonal element in */
819 /*        column K, and COLMAX is its absolute value. */
820 /*        Determine both COLMAX and IMAX. */
821
822         if (k > 1) {
823             i__1 = k - 1;
824             imax = icamax_(&i__1, &a[k * a_dim1 + 1], &c__1);
825             i__1 = imax + k * a_dim1;
826             colmax = (r__1 = a[i__1].r, abs(r__1)) + (r__2 = r_imag(&a[imax + 
827                     k * a_dim1]), abs(r__2));
828         } else {
829             colmax = 0.f;
830         }
831
832         if (f2cmax(absakk,colmax) == 0.f) {
833
834 /*           Column K is zero or underflow: set INFO and continue */
835
836             if (*info == 0) {
837                 *info = k;
838             }
839             kp = k;
840             i__1 = k + k * a_dim1;
841             i__2 = k + k * a_dim1;
842             r__1 = a[i__2].r;
843             a[i__1].r = r__1, a[i__1].i = 0.f;
844         } else {
845
846 /*           ============================================================ */
847
848 /*           BEGIN pivot search */
849
850 /*           Case(1) */
851 /*           Equivalent to testing for ABSAKK.GE.ALPHA*COLMAX */
852 /*           (used to handle NaN and Inf) */
853
854             if (! (absakk < alpha * colmax)) {
855
856 /*              no interchange, use 1-by-1 pivot block */
857
858                 kp = k;
859
860             } else {
861
862                 done = FALSE_;
863
864 /*              Loop until pivot found */
865
866 L12:
867
868 /*                 BEGIN pivot search loop body */
869
870
871 /*                 JMAX is the column-index of the largest off-diagonal */
872 /*                 element in row IMAX, and ROWMAX is its absolute value. */
873 /*                 Determine both ROWMAX and JMAX. */
874
875                 if (imax != k) {
876                     i__1 = k - imax;
877                     jmax = imax + icamax_(&i__1, &a[imax + (imax + 1) * 
878                             a_dim1], lda);
879                     i__1 = imax + jmax * a_dim1;
880                     rowmax = (r__1 = a[i__1].r, abs(r__1)) + (r__2 = r_imag(&
881                             a[imax + jmax * a_dim1]), abs(r__2));
882                 } else {
883                     rowmax = 0.f;
884                 }
885
886                 if (imax > 1) {
887                     i__1 = imax - 1;
888                     itemp = icamax_(&i__1, &a[imax * a_dim1 + 1], &c__1);
889                     i__1 = itemp + imax * a_dim1;
890                     stemp = (r__1 = a[i__1].r, abs(r__1)) + (r__2 = r_imag(&a[
891                             itemp + imax * a_dim1]), abs(r__2));
892                     if (stemp > rowmax) {
893                         rowmax = stemp;
894                         jmax = itemp;
895                     }
896                 }
897
898 /*                 Case(2) */
899 /*                 Equivalent to testing for */
900 /*                 ABS( REAL( W( IMAX,KW-1 ) ) ).GE.ALPHA*ROWMAX */
901 /*                 (used to handle NaN and Inf) */
902
903                 i__1 = imax + imax * a_dim1;
904                 if (! ((r__1 = a[i__1].r, abs(r__1)) < alpha * rowmax)) {
905
906 /*                    interchange rows and columns K and IMAX, */
907 /*                    use 1-by-1 pivot block */
908
909                     kp = imax;
910                     done = TRUE_;
911
912 /*                 Case(3) */
913 /*                 Equivalent to testing for ROWMAX.EQ.COLMAX, */
914 /*                 (used to handle NaN and Inf) */
915
916                 } else if (p == jmax || rowmax <= colmax) {
917
918 /*                    interchange rows and columns K-1 and IMAX, */
919 /*                    use 2-by-2 pivot block */
920
921                     kp = imax;
922                     kstep = 2;
923                     done = TRUE_;
924
925 /*                 Case(4) */
926                 } else {
927
928 /*                    Pivot not found: set params and repeat */
929
930                     p = imax;
931                     colmax = rowmax;
932                     imax = jmax;
933                 }
934
935 /*                 END pivot search loop body */
936
937                 if (! done) {
938                     goto L12;
939                 }
940
941             }
942
943 /*           END pivot search */
944
945 /*           ============================================================ */
946
947 /*           KK is the column of A where pivoting step stopped */
948
949             kk = k - kstep + 1;
950
951 /*           For only a 2x2 pivot, interchange rows and columns K and P */
952 /*           in the leading submatrix A(1:k,1:k) */
953
954             if (kstep == 2 && p != k) {
955 /*              (1) Swap columnar parts */
956                 if (p > 1) {
957                     i__1 = p - 1;
958                     cswap_(&i__1, &a[k * a_dim1 + 1], &c__1, &a[p * a_dim1 + 
959                             1], &c__1);
960                 }
961 /*              (2) Swap and conjugate middle parts */
962                 i__1 = k - 1;
963                 for (j = p + 1; j <= i__1; ++j) {
964                     r_cnjg(&q__1, &a[j + k * a_dim1]);
965                     t.r = q__1.r, t.i = q__1.i;
966                     i__2 = j + k * a_dim1;
967                     r_cnjg(&q__1, &a[p + j * a_dim1]);
968                     a[i__2].r = q__1.r, a[i__2].i = q__1.i;
969                     i__2 = p + j * a_dim1;
970                     a[i__2].r = t.r, a[i__2].i = t.i;
971 /* L14: */
972                 }
973 /*              (3) Swap and conjugate corner elements at row-col interserction */
974                 i__1 = p + k * a_dim1;
975                 r_cnjg(&q__1, &a[p + k * a_dim1]);
976                 a[i__1].r = q__1.r, a[i__1].i = q__1.i;
977 /*              (4) Swap diagonal elements at row-col intersection */
978                 i__1 = k + k * a_dim1;
979                 r1 = a[i__1].r;
980                 i__1 = k + k * a_dim1;
981                 i__2 = p + p * a_dim1;
982                 r__1 = a[i__2].r;
983                 a[i__1].r = r__1, a[i__1].i = 0.f;
984                 i__1 = p + p * a_dim1;
985                 a[i__1].r = r1, a[i__1].i = 0.f;
986             }
987
988 /*           For both 1x1 and 2x2 pivots, interchange rows and */
989 /*           columns KK and KP in the leading submatrix A(1:k,1:k) */
990
991             if (kp != kk) {
992 /*              (1) Swap columnar parts */
993                 if (kp > 1) {
994                     i__1 = kp - 1;
995                     cswap_(&i__1, &a[kk * a_dim1 + 1], &c__1, &a[kp * a_dim1 
996                             + 1], &c__1);
997                 }
998 /*              (2) Swap and conjugate middle parts */
999                 i__1 = kk - 1;
1000                 for (j = kp + 1; j <= i__1; ++j) {
1001                     r_cnjg(&q__1, &a[j + kk * a_dim1]);
1002                     t.r = q__1.r, t.i = q__1.i;
1003                     i__2 = j + kk * a_dim1;
1004                     r_cnjg(&q__1, &a[kp + j * a_dim1]);
1005                     a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1006                     i__2 = kp + j * a_dim1;
1007                     a[i__2].r = t.r, a[i__2].i = t.i;
1008 /* L15: */
1009                 }
1010 /*              (3) Swap and conjugate corner elements at row-col interserction */
1011                 i__1 = kp + kk * a_dim1;
1012                 r_cnjg(&q__1, &a[kp + kk * a_dim1]);
1013                 a[i__1].r = q__1.r, a[i__1].i = q__1.i;
1014 /*              (4) Swap diagonal elements at row-col intersection */
1015                 i__1 = kk + kk * a_dim1;
1016                 r1 = a[i__1].r;
1017                 i__1 = kk + kk * a_dim1;
1018                 i__2 = kp + kp * a_dim1;
1019                 r__1 = a[i__2].r;
1020                 a[i__1].r = r__1, a[i__1].i = 0.f;
1021                 i__1 = kp + kp * a_dim1;
1022                 a[i__1].r = r1, a[i__1].i = 0.f;
1023
1024                 if (kstep == 2) {
1025 /*                 (*) Make sure that diagonal element of pivot is real */
1026                     i__1 = k + k * a_dim1;
1027                     i__2 = k + k * a_dim1;
1028                     r__1 = a[i__2].r;
1029                     a[i__1].r = r__1, a[i__1].i = 0.f;
1030 /*                 (5) Swap row elements */
1031                     i__1 = k - 1 + k * a_dim1;
1032                     t.r = a[i__1].r, t.i = a[i__1].i;
1033                     i__1 = k - 1 + k * a_dim1;
1034                     i__2 = kp + k * a_dim1;
1035                     a[i__1].r = a[i__2].r, a[i__1].i = a[i__2].i;
1036                     i__1 = kp + k * a_dim1;
1037                     a[i__1].r = t.r, a[i__1].i = t.i;
1038                 }
1039             } else {
1040 /*              (*) Make sure that diagonal element of pivot is real */
1041                 i__1 = k + k * a_dim1;
1042                 i__2 = k + k * a_dim1;
1043                 r__1 = a[i__2].r;
1044                 a[i__1].r = r__1, a[i__1].i = 0.f;
1045                 if (kstep == 2) {
1046                     i__1 = k - 1 + (k - 1) * a_dim1;
1047                     i__2 = k - 1 + (k - 1) * a_dim1;
1048                     r__1 = a[i__2].r;
1049                     a[i__1].r = r__1, a[i__1].i = 0.f;
1050                 }
1051             }
1052
1053 /*           Update the leading submatrix */
1054
1055             if (kstep == 1) {
1056
1057 /*              1-by-1 pivot block D(k): column k now holds */
1058
1059 /*              W(k) = U(k)*D(k) */
1060
1061 /*              where U(k) is the k-th column of U */
1062
1063                 if (k > 1) {
1064
1065 /*                 Perform a rank-1 update of A(1:k-1,1:k-1) and */
1066 /*                 store U(k) in column k */
1067
1068                     i__1 = k + k * a_dim1;
1069                     if ((r__1 = a[i__1].r, abs(r__1)) >= sfmin) {
1070
1071 /*                    Perform a rank-1 update of A(1:k-1,1:k-1) as */
1072 /*                    A := A - U(k)*D(k)*U(k)**T */
1073 /*                       = A - W(k)*1/D(k)*W(k)**T */
1074
1075                         i__1 = k + k * a_dim1;
1076                         d11 = 1.f / a[i__1].r;
1077                         i__1 = k - 1;
1078                         r__1 = -d11;
1079                         cher_(uplo, &i__1, &r__1, &a[k * a_dim1 + 1], &c__1, &
1080                                 a[a_offset], lda);
1081
1082 /*                    Store U(k) in column k */
1083
1084                         i__1 = k - 1;
1085                         csscal_(&i__1, &d11, &a[k * a_dim1 + 1], &c__1);
1086                     } else {
1087
1088 /*                    Store L(k) in column K */
1089
1090                         i__1 = k + k * a_dim1;
1091                         d11 = a[i__1].r;
1092                         i__1 = k - 1;
1093                         for (ii = 1; ii <= i__1; ++ii) {
1094                             i__2 = ii + k * a_dim1;
1095                             i__3 = ii + k * a_dim1;
1096                             q__1.r = a[i__3].r / d11, q__1.i = a[i__3].i / 
1097                                     d11;
1098                             a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1099 /* L16: */
1100                         }
1101
1102 /*                    Perform a rank-1 update of A(k+1:n,k+1:n) as */
1103 /*                    A := A - U(k)*D(k)*U(k)**T */
1104 /*                       = A - W(k)*(1/D(k))*W(k)**T */
1105 /*                       = A - (W(k)/D(k))*(D(k))*(W(k)/D(K))**T */
1106
1107                         i__1 = k - 1;
1108                         r__1 = -d11;
1109                         cher_(uplo, &i__1, &r__1, &a[k * a_dim1 + 1], &c__1, &
1110                                 a[a_offset], lda);
1111                     }
1112                 }
1113
1114             } else {
1115
1116 /*              2-by-2 pivot block D(k): columns k and k-1 now hold */
1117
1118 /*              ( W(k-1) W(k) ) = ( U(k-1) U(k) )*D(k) */
1119
1120 /*              where U(k) and U(k-1) are the k-th and (k-1)-th columns */
1121 /*              of U */
1122
1123 /*              Perform a rank-2 update of A(1:k-2,1:k-2) as */
1124
1125 /*              A := A - ( U(k-1) U(k) )*D(k)*( U(k-1) U(k) )**T */
1126 /*                 = A - ( ( A(k-1)A(k) )*inv(D(k)) ) * ( A(k-1)A(k) )**T */
1127
1128 /*              and store L(k) and L(k+1) in columns k and k+1 */
1129
1130                 if (k > 2) {
1131 /*                 D = |A12| */
1132                     i__1 = k - 1 + k * a_dim1;
1133                     r__1 = a[i__1].r;
1134                     r__2 = r_imag(&a[k - 1 + k * a_dim1]);
1135                     d__ = slapy2_(&r__1, &r__2);
1136                     i__1 = k + k * a_dim1;
1137                     q__1.r = a[i__1].r / d__, q__1.i = a[i__1].i / d__;
1138                     d11 = q__1.r;
1139                     i__1 = k - 1 + (k - 1) * a_dim1;
1140                     q__1.r = a[i__1].r / d__, q__1.i = a[i__1].i / d__;
1141                     d22 = q__1.r;
1142                     i__1 = k - 1 + k * a_dim1;
1143                     q__1.r = a[i__1].r / d__, q__1.i = a[i__1].i / d__;
1144                     d12.r = q__1.r, d12.i = q__1.i;
1145                     tt = 1.f / (d11 * d22 - 1.f);
1146
1147                     for (j = k - 2; j >= 1; --j) {
1148
1149 /*                    Compute  D21 * ( W(k)W(k+1) ) * inv(D(k)) for row J */
1150
1151                         i__1 = j + (k - 1) * a_dim1;
1152                         q__3.r = d11 * a[i__1].r, q__3.i = d11 * a[i__1].i;
1153                         r_cnjg(&q__5, &d12);
1154                         i__2 = j + k * a_dim1;
1155                         q__4.r = q__5.r * a[i__2].r - q__5.i * a[i__2].i, 
1156                                 q__4.i = q__5.r * a[i__2].i + q__5.i * a[i__2]
1157                                 .r;
1158                         q__2.r = q__3.r - q__4.r, q__2.i = q__3.i - q__4.i;
1159                         q__1.r = tt * q__2.r, q__1.i = tt * q__2.i;
1160                         wkm1.r = q__1.r, wkm1.i = q__1.i;
1161                         i__1 = j + k * a_dim1;
1162                         q__3.r = d22 * a[i__1].r, q__3.i = d22 * a[i__1].i;
1163                         i__2 = j + (k - 1) * a_dim1;
1164                         q__4.r = d12.r * a[i__2].r - d12.i * a[i__2].i, 
1165                                 q__4.i = d12.r * a[i__2].i + d12.i * a[i__2]
1166                                 .r;
1167                         q__2.r = q__3.r - q__4.r, q__2.i = q__3.i - q__4.i;
1168                         q__1.r = tt * q__2.r, q__1.i = tt * q__2.i;
1169                         wk.r = q__1.r, wk.i = q__1.i;
1170
1171 /*                    Perform a rank-2 update of A(1:k-2,1:k-2) */
1172
1173                         for (i__ = j; i__ >= 1; --i__) {
1174                             i__1 = i__ + j * a_dim1;
1175                             i__2 = i__ + j * a_dim1;
1176                             i__3 = i__ + k * a_dim1;
1177                             q__4.r = a[i__3].r / d__, q__4.i = a[i__3].i / 
1178                                     d__;
1179                             r_cnjg(&q__5, &wk);
1180                             q__3.r = q__4.r * q__5.r - q__4.i * q__5.i, 
1181                                     q__3.i = q__4.r * q__5.i + q__4.i * 
1182                                     q__5.r;
1183                             q__2.r = a[i__2].r - q__3.r, q__2.i = a[i__2].i - 
1184                                     q__3.i;
1185                             i__4 = i__ + (k - 1) * a_dim1;
1186                             q__7.r = a[i__4].r / d__, q__7.i = a[i__4].i / 
1187                                     d__;
1188                             r_cnjg(&q__8, &wkm1);
1189                             q__6.r = q__7.r * q__8.r - q__7.i * q__8.i, 
1190                                     q__6.i = q__7.r * q__8.i + q__7.i * 
1191                                     q__8.r;
1192                             q__1.r = q__2.r - q__6.r, q__1.i = q__2.i - 
1193                                     q__6.i;
1194                             a[i__1].r = q__1.r, a[i__1].i = q__1.i;
1195 /* L20: */
1196                         }
1197
1198 /*                    Store U(k) and U(k-1) in cols k and k-1 for row J */
1199
1200                         i__1 = j + k * a_dim1;
1201                         q__1.r = wk.r / d__, q__1.i = wk.i / d__;
1202                         a[i__1].r = q__1.r, a[i__1].i = q__1.i;
1203                         i__1 = j + (k - 1) * a_dim1;
1204                         q__1.r = wkm1.r / d__, q__1.i = wkm1.i / d__;
1205                         a[i__1].r = q__1.r, a[i__1].i = q__1.i;
1206 /*                    (*) Make sure that diagonal element of pivot is real */
1207                         i__1 = j + j * a_dim1;
1208                         i__2 = j + j * a_dim1;
1209                         r__1 = a[i__2].r;
1210                         q__1.r = r__1, q__1.i = 0.f;
1211                         a[i__1].r = q__1.r, a[i__1].i = q__1.i;
1212
1213 /* L30: */
1214                     }
1215
1216                 }
1217
1218             }
1219
1220         }
1221
1222 /*        Store details of the interchanges in IPIV */
1223
1224         if (kstep == 1) {
1225             ipiv[k] = kp;
1226         } else {
1227             ipiv[k] = -p;
1228             ipiv[k - 1] = -kp;
1229         }
1230
1231 /*        Decrease K and return to the start of the main loop */
1232
1233         k -= kstep;
1234         goto L10;
1235
1236     } else {
1237
1238 /*        Factorize A as L*D*L**H using the lower triangle of A */
1239
1240 /*        K is the main loop index, increasing from 1 to N in steps of */
1241 /*        1 or 2 */
1242
1243         k = 1;
1244 L40:
1245
1246 /*        If K > N, exit from loop */
1247
1248         if (k > *n) {
1249             goto L70;
1250         }
1251         kstep = 1;
1252         p = k;
1253
1254 /*        Determine rows and columns to be interchanged and whether */
1255 /*        a 1-by-1 or 2-by-2 pivot block will be used */
1256
1257         i__1 = k + k * a_dim1;
1258         absakk = (r__1 = a[i__1].r, abs(r__1));
1259
1260 /*        IMAX is the row-index of the largest off-diagonal element in */
1261 /*        column K, and COLMAX is its absolute value. */
1262 /*        Determine both COLMAX and IMAX. */
1263
1264         if (k < *n) {
1265             i__1 = *n - k;
1266             imax = k + icamax_(&i__1, &a[k + 1 + k * a_dim1], &c__1);
1267             i__1 = imax + k * a_dim1;
1268             colmax = (r__1 = a[i__1].r, abs(r__1)) + (r__2 = r_imag(&a[imax + 
1269                     k * a_dim1]), abs(r__2));
1270         } else {
1271             colmax = 0.f;
1272         }
1273
1274         if (f2cmax(absakk,colmax) == 0.f) {
1275
1276 /*           Column K is zero or underflow: set INFO and continue */
1277
1278             if (*info == 0) {
1279                 *info = k;
1280             }
1281             kp = k;
1282             i__1 = k + k * a_dim1;
1283             i__2 = k + k * a_dim1;
1284             r__1 = a[i__2].r;
1285             a[i__1].r = r__1, a[i__1].i = 0.f;
1286         } else {
1287
1288 /*           ============================================================ */
1289
1290 /*           BEGIN pivot search */
1291
1292 /*           Case(1) */
1293 /*           Equivalent to testing for ABSAKK.GE.ALPHA*COLMAX */
1294 /*           (used to handle NaN and Inf) */
1295
1296             if (! (absakk < alpha * colmax)) {
1297
1298 /*              no interchange, use 1-by-1 pivot block */
1299
1300                 kp = k;
1301
1302             } else {
1303
1304                 done = FALSE_;
1305
1306 /*              Loop until pivot found */
1307
1308 L42:
1309
1310 /*                 BEGIN pivot search loop body */
1311
1312
1313 /*                 JMAX is the column-index of the largest off-diagonal */
1314 /*                 element in row IMAX, and ROWMAX is its absolute value. */
1315 /*                 Determine both ROWMAX and JMAX. */
1316
1317                 if (imax != k) {
1318                     i__1 = imax - k;
1319                     jmax = k - 1 + icamax_(&i__1, &a[imax + k * a_dim1], lda);
1320                     i__1 = imax + jmax * a_dim1;
1321                     rowmax = (r__1 = a[i__1].r, abs(r__1)) + (r__2 = r_imag(&
1322                             a[imax + jmax * a_dim1]), abs(r__2));
1323                 } else {
1324                     rowmax = 0.f;
1325                 }
1326
1327                 if (imax < *n) {
1328                     i__1 = *n - imax;
1329                     itemp = imax + icamax_(&i__1, &a[imax + 1 + imax * a_dim1]
1330                             , &c__1);
1331                     i__1 = itemp + imax * a_dim1;
1332                     stemp = (r__1 = a[i__1].r, abs(r__1)) + (r__2 = r_imag(&a[
1333                             itemp + imax * a_dim1]), abs(r__2));
1334                     if (stemp > rowmax) {
1335                         rowmax = stemp;
1336                         jmax = itemp;
1337                     }
1338                 }
1339
1340 /*                 Case(2) */
1341 /*                 Equivalent to testing for */
1342 /*                 ABS( REAL( W( IMAX,KW-1 ) ) ).GE.ALPHA*ROWMAX */
1343 /*                 (used to handle NaN and Inf) */
1344
1345                 i__1 = imax + imax * a_dim1;
1346                 if (! ((r__1 = a[i__1].r, abs(r__1)) < alpha * rowmax)) {
1347
1348 /*                    interchange rows and columns K and IMAX, */
1349 /*                    use 1-by-1 pivot block */
1350
1351                     kp = imax;
1352                     done = TRUE_;
1353
1354 /*                 Case(3) */
1355 /*                 Equivalent to testing for ROWMAX.EQ.COLMAX, */
1356 /*                 (used to handle NaN and Inf) */
1357
1358                 } else if (p == jmax || rowmax <= colmax) {
1359
1360 /*                    interchange rows and columns K+1 and IMAX, */
1361 /*                    use 2-by-2 pivot block */
1362
1363                     kp = imax;
1364                     kstep = 2;
1365                     done = TRUE_;
1366
1367 /*                 Case(4) */
1368                 } else {
1369
1370 /*                    Pivot not found: set params and repeat */
1371
1372                     p = imax;
1373                     colmax = rowmax;
1374                     imax = jmax;
1375                 }
1376
1377
1378 /*                 END pivot search loop body */
1379
1380                 if (! done) {
1381                     goto L42;
1382                 }
1383
1384             }
1385
1386 /*           END pivot search */
1387
1388 /*           ============================================================ */
1389
1390 /*           KK is the column of A where pivoting step stopped */
1391
1392             kk = k + kstep - 1;
1393
1394 /*           For only a 2x2 pivot, interchange rows and columns K and P */
1395 /*           in the trailing submatrix A(k:n,k:n) */
1396
1397             if (kstep == 2 && p != k) {
1398 /*              (1) Swap columnar parts */
1399                 if (p < *n) {
1400                     i__1 = *n - p;
1401                     cswap_(&i__1, &a[p + 1 + k * a_dim1], &c__1, &a[p + 1 + p 
1402                             * a_dim1], &c__1);
1403                 }
1404 /*              (2) Swap and conjugate middle parts */
1405                 i__1 = p - 1;
1406                 for (j = k + 1; j <= i__1; ++j) {
1407                     r_cnjg(&q__1, &a[j + k * a_dim1]);
1408                     t.r = q__1.r, t.i = q__1.i;
1409                     i__2 = j + k * a_dim1;
1410                     r_cnjg(&q__1, &a[p + j * a_dim1]);
1411                     a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1412                     i__2 = p + j * a_dim1;
1413                     a[i__2].r = t.r, a[i__2].i = t.i;
1414 /* L44: */
1415                 }
1416 /*              (3) Swap and conjugate corner elements at row-col interserction */
1417                 i__1 = p + k * a_dim1;
1418                 r_cnjg(&q__1, &a[p + k * a_dim1]);
1419                 a[i__1].r = q__1.r, a[i__1].i = q__1.i;
1420 /*              (4) Swap diagonal elements at row-col intersection */
1421                 i__1 = k + k * a_dim1;
1422                 r1 = a[i__1].r;
1423                 i__1 = k + k * a_dim1;
1424                 i__2 = p + p * a_dim1;
1425                 r__1 = a[i__2].r;
1426                 a[i__1].r = r__1, a[i__1].i = 0.f;
1427                 i__1 = p + p * a_dim1;
1428                 a[i__1].r = r1, a[i__1].i = 0.f;
1429             }
1430
1431 /*           For both 1x1 and 2x2 pivots, interchange rows and */
1432 /*           columns KK and KP in the trailing submatrix A(k:n,k:n) */
1433
1434             if (kp != kk) {
1435 /*              (1) Swap columnar parts */
1436                 if (kp < *n) {
1437                     i__1 = *n - kp;
1438                     cswap_(&i__1, &a[kp + 1 + kk * a_dim1], &c__1, &a[kp + 1 
1439                             + kp * a_dim1], &c__1);
1440                 }
1441 /*              (2) Swap and conjugate middle parts */
1442                 i__1 = kp - 1;
1443                 for (j = kk + 1; j <= i__1; ++j) {
1444                     r_cnjg(&q__1, &a[j + kk * a_dim1]);
1445                     t.r = q__1.r, t.i = q__1.i;
1446                     i__2 = j + kk * a_dim1;
1447                     r_cnjg(&q__1, &a[kp + j * a_dim1]);
1448                     a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1449                     i__2 = kp + j * a_dim1;
1450                     a[i__2].r = t.r, a[i__2].i = t.i;
1451 /* L45: */
1452                 }
1453 /*              (3) Swap and conjugate corner elements at row-col interserction */
1454                 i__1 = kp + kk * a_dim1;
1455                 r_cnjg(&q__1, &a[kp + kk * a_dim1]);
1456                 a[i__1].r = q__1.r, a[i__1].i = q__1.i;
1457 /*              (4) Swap diagonal elements at row-col intersection */
1458                 i__1 = kk + kk * a_dim1;
1459                 r1 = a[i__1].r;
1460                 i__1 = kk + kk * a_dim1;
1461                 i__2 = kp + kp * a_dim1;
1462                 r__1 = a[i__2].r;
1463                 a[i__1].r = r__1, a[i__1].i = 0.f;
1464                 i__1 = kp + kp * a_dim1;
1465                 a[i__1].r = r1, a[i__1].i = 0.f;
1466
1467                 if (kstep == 2) {
1468 /*                 (*) Make sure that diagonal element of pivot is real */
1469                     i__1 = k + k * a_dim1;
1470                     i__2 = k + k * a_dim1;
1471                     r__1 = a[i__2].r;
1472                     a[i__1].r = r__1, a[i__1].i = 0.f;
1473 /*                 (5) Swap row elements */
1474                     i__1 = k + 1 + k * a_dim1;
1475                     t.r = a[i__1].r, t.i = a[i__1].i;
1476                     i__1 = k + 1 + k * a_dim1;
1477                     i__2 = kp + k * a_dim1;
1478                     a[i__1].r = a[i__2].r, a[i__1].i = a[i__2].i;
1479                     i__1 = kp + k * a_dim1;
1480                     a[i__1].r = t.r, a[i__1].i = t.i;
1481                 }
1482             } else {
1483 /*              (*) Make sure that diagonal element of pivot is real */
1484                 i__1 = k + k * a_dim1;
1485                 i__2 = k + k * a_dim1;
1486                 r__1 = a[i__2].r;
1487                 a[i__1].r = r__1, a[i__1].i = 0.f;
1488                 if (kstep == 2) {
1489                     i__1 = k + 1 + (k + 1) * a_dim1;
1490                     i__2 = k + 1 + (k + 1) * a_dim1;
1491                     r__1 = a[i__2].r;
1492                     a[i__1].r = r__1, a[i__1].i = 0.f;
1493                 }
1494             }
1495
1496 /*           Update the trailing submatrix */
1497
1498             if (kstep == 1) {
1499
1500 /*              1-by-1 pivot block D(k): column k of A now holds */
1501
1502 /*              W(k) = L(k)*D(k), */
1503
1504 /*              where L(k) is the k-th column of L */
1505
1506                 if (k < *n) {
1507
1508 /*                 Perform a rank-1 update of A(k+1:n,k+1:n) and */
1509 /*                 store L(k) in column k */
1510
1511 /*                 Handle division by a small number */
1512
1513                     i__1 = k + k * a_dim1;
1514                     if ((r__1 = a[i__1].r, abs(r__1)) >= sfmin) {
1515
1516 /*                    Perform a rank-1 update of A(k+1:n,k+1:n) as */
1517 /*                    A := A - L(k)*D(k)*L(k)**T */
1518 /*                       = A - W(k)*(1/D(k))*W(k)**T */
1519
1520                         i__1 = k + k * a_dim1;
1521                         d11 = 1.f / a[i__1].r;
1522                         i__1 = *n - k;
1523                         r__1 = -d11;
1524                         cher_(uplo, &i__1, &r__1, &a[k + 1 + k * a_dim1], &
1525                                 c__1, &a[k + 1 + (k + 1) * a_dim1], lda);
1526
1527 /*                    Store L(k) in column k */
1528
1529                         i__1 = *n - k;
1530                         csscal_(&i__1, &d11, &a[k + 1 + k * a_dim1], &c__1);
1531                     } else {
1532
1533 /*                    Store L(k) in column k */
1534
1535                         i__1 = k + k * a_dim1;
1536                         d11 = a[i__1].r;
1537                         i__1 = *n;
1538                         for (ii = k + 1; ii <= i__1; ++ii) {
1539                             i__2 = ii + k * a_dim1;
1540                             i__3 = ii + k * a_dim1;
1541                             q__1.r = a[i__3].r / d11, q__1.i = a[i__3].i / 
1542                                     d11;
1543                             a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1544 /* L46: */
1545                         }
1546
1547 /*                    Perform a rank-1 update of A(k+1:n,k+1:n) as */
1548 /*                    A := A - L(k)*D(k)*L(k)**T */
1549 /*                       = A - W(k)*(1/D(k))*W(k)**T */
1550 /*                       = A - (W(k)/D(k))*(D(k))*(W(k)/D(K))**T */
1551
1552                         i__1 = *n - k;
1553                         r__1 = -d11;
1554                         cher_(uplo, &i__1, &r__1, &a[k + 1 + k * a_dim1], &
1555                                 c__1, &a[k + 1 + (k + 1) * a_dim1], lda);
1556                     }
1557                 }
1558
1559             } else {
1560
1561 /*              2-by-2 pivot block D(k): columns k and k+1 now hold */
1562
1563 /*              ( W(k) W(k+1) ) = ( L(k) L(k+1) )*D(k) */
1564
1565 /*              where L(k) and L(k+1) are the k-th and (k+1)-th columns */
1566 /*              of L */
1567
1568
1569 /*              Perform a rank-2 update of A(k+2:n,k+2:n) as */
1570
1571 /*              A := A - ( L(k) L(k+1) ) * D(k) * ( L(k) L(k+1) )**T */
1572 /*                 = A - ( ( A(k)A(k+1) )*inv(D(k) ) * ( A(k)A(k+1) )**T */
1573
1574 /*              and store L(k) and L(k+1) in columns k and k+1 */
1575
1576                 if (k < *n - 1) {
1577 /*                 D = |A21| */
1578                     i__1 = k + 1 + k * a_dim1;
1579                     r__1 = a[i__1].r;
1580                     r__2 = r_imag(&a[k + 1 + k * a_dim1]);
1581                     d__ = slapy2_(&r__1, &r__2);
1582                     i__1 = k + 1 + (k + 1) * a_dim1;
1583                     d11 = a[i__1].r / d__;
1584                     i__1 = k + k * a_dim1;
1585                     d22 = a[i__1].r / d__;
1586                     i__1 = k + 1 + k * a_dim1;
1587                     q__1.r = a[i__1].r / d__, q__1.i = a[i__1].i / d__;
1588                     d21.r = q__1.r, d21.i = q__1.i;
1589                     tt = 1.f / (d11 * d22 - 1.f);
1590
1591                     i__1 = *n;
1592                     for (j = k + 2; j <= i__1; ++j) {
1593
1594 /*                    Compute  D21 * ( W(k)W(k+1) ) * inv(D(k)) for row J */
1595
1596                         i__2 = j + k * a_dim1;
1597                         q__3.r = d11 * a[i__2].r, q__3.i = d11 * a[i__2].i;
1598                         i__3 = j + (k + 1) * a_dim1;
1599                         q__4.r = d21.r * a[i__3].r - d21.i * a[i__3].i, 
1600                                 q__4.i = d21.r * a[i__3].i + d21.i * a[i__3]
1601                                 .r;
1602                         q__2.r = q__3.r - q__4.r, q__2.i = q__3.i - q__4.i;
1603                         q__1.r = tt * q__2.r, q__1.i = tt * q__2.i;
1604                         wk.r = q__1.r, wk.i = q__1.i;
1605                         i__2 = j + (k + 1) * a_dim1;
1606                         q__3.r = d22 * a[i__2].r, q__3.i = d22 * a[i__2].i;
1607                         r_cnjg(&q__5, &d21);
1608                         i__3 = j + k * a_dim1;
1609                         q__4.r = q__5.r * a[i__3].r - q__5.i * a[i__3].i, 
1610                                 q__4.i = q__5.r * a[i__3].i + q__5.i * a[i__3]
1611                                 .r;
1612                         q__2.r = q__3.r - q__4.r, q__2.i = q__3.i - q__4.i;
1613                         q__1.r = tt * q__2.r, q__1.i = tt * q__2.i;
1614                         wkp1.r = q__1.r, wkp1.i = q__1.i;
1615
1616 /*                    Perform a rank-2 update of A(k+2:n,k+2:n) */
1617
1618                         i__2 = *n;
1619                         for (i__ = j; i__ <= i__2; ++i__) {
1620                             i__3 = i__ + j * a_dim1;
1621                             i__4 = i__ + j * a_dim1;
1622                             i__5 = i__ + k * a_dim1;
1623                             q__4.r = a[i__5].r / d__, q__4.i = a[i__5].i / 
1624                                     d__;
1625                             r_cnjg(&q__5, &wk);
1626                             q__3.r = q__4.r * q__5.r - q__4.i * q__5.i, 
1627                                     q__3.i = q__4.r * q__5.i + q__4.i * 
1628                                     q__5.r;
1629                             q__2.r = a[i__4].r - q__3.r, q__2.i = a[i__4].i - 
1630                                     q__3.i;
1631                             i__6 = i__ + (k + 1) * a_dim1;
1632                             q__7.r = a[i__6].r / d__, q__7.i = a[i__6].i / 
1633                                     d__;
1634                             r_cnjg(&q__8, &wkp1);
1635                             q__6.r = q__7.r * q__8.r - q__7.i * q__8.i, 
1636                                     q__6.i = q__7.r * q__8.i + q__7.i * 
1637                                     q__8.r;
1638                             q__1.r = q__2.r - q__6.r, q__1.i = q__2.i - 
1639                                     q__6.i;
1640                             a[i__3].r = q__1.r, a[i__3].i = q__1.i;
1641 /* L50: */
1642                         }
1643
1644 /*                    Store L(k) and L(k+1) in cols k and k+1 for row J */
1645
1646                         i__2 = j + k * a_dim1;
1647                         q__1.r = wk.r / d__, q__1.i = wk.i / d__;
1648                         a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1649                         i__2 = j + (k + 1) * a_dim1;
1650                         q__1.r = wkp1.r / d__, q__1.i = wkp1.i / d__;
1651                         a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1652 /*                    (*) Make sure that diagonal element of pivot is real */
1653                         i__2 = j + j * a_dim1;
1654                         i__3 = j + j * a_dim1;
1655                         r__1 = a[i__3].r;
1656                         q__1.r = r__1, q__1.i = 0.f;
1657                         a[i__2].r = q__1.r, a[i__2].i = q__1.i;
1658
1659 /* L60: */
1660                     }
1661
1662                 }
1663
1664             }
1665
1666         }
1667
1668 /*        Store details of the interchanges in IPIV */
1669
1670         if (kstep == 1) {
1671             ipiv[k] = kp;
1672         } else {
1673             ipiv[k] = -p;
1674             ipiv[k + 1] = -kp;
1675         }
1676
1677 /*        Increase K and return to the start of the main loop */
1678
1679         k += kstep;
1680         goto L40;
1681
1682     }
1683
1684 L70:
1685
1686     return 0;
1687
1688 /*     End of CHETF2_ROOK */
1689
1690 } /* chetf2_rook__ */
1691