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