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