C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / ssytf2_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 SSYTF2_RK computes the factorization of a real symmetric indefinite matrix using the bounded Bu
518 nch-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 SSYTF2_RK + dependencies */
527 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ssytf2_
528 rk.f"> */
529 /* > [TGZ]</a> */
530 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ssytf2_
531 rk.f"> */
532 /* > [ZIP]</a> */
533 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ssytf2_
534 rk.f"> */
535 /* > [TXT]</a> */
536 /* > \endhtmlonly */
537
538 /*  Definition: */
539 /*  =========== */
540
541 /*       SUBROUTINE SSYTF2_RK( UPLO, N, A, LDA, E, IPIV, INFO ) */
542
543 /*       CHARACTER          UPLO */
544 /*       INTEGER            INFO, LDA, N */
545 /*       INTEGER            IPIV( * ) */
546 /*       REAL               A( LDA, * ), E ( * ) */
547
548
549 /* > \par Purpose: */
550 /*  ============= */
551 /* > */
552 /* > \verbatim */
553 /* > SSYTF2_RK computes the factorization of a real symmetric matrix A */
554 /* > using the bounded Bunch-Kaufman (rook) diagonal pivoting method: */
555 /* > */
556 /* >    A = P*U*D*(U**T)*(P**T) or A = P*L*D*(L**T)*(P**T), */
557 /* > */
558 /* > where U (or L) is unit upper (or lower) triangular matrix, */
559 /* > U**T (or L**T) is the transpose of U (or L), P is a permutation */
560 /* > matrix, P**T is the transpose of P, and D is symmetric 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 /* >          symmetric 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 REAL array, dimension (LDA,N) */
588 /* >          On entry, the symmetric 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 symmetric 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 REAL array, dimension (N) */
617 /* >          On exit, contains the superdiagonal (or subdiagonal) */
618 /* >          elements of the symmetric 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 symmetric 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 singleSYcomputational */
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 ssytf2_rk_(char *uplo, integer *n, real *a, integer *
759         lda, real *e, integer *ipiv, integer *info)
760 {
761     /* System generated locals */
762     integer a_dim1, a_offset, i__1, i__2;
763     real r__1;
764
765     /* Local variables */
766     logical done;
767     integer imax, jmax;
768     extern /* Subroutine */ int ssyr_(char *, integer *, real *, real *, 
769             integer *, real *, integer *);
770     integer i__, j, k, p;
771     real t, alpha;
772     extern logical lsame_(char *, char *);
773     extern /* Subroutine */ int sscal_(integer *, real *, real *, integer *);
774     real sfmin;
775     integer itemp, kstep;
776     real stemp;
777     logical upper;
778     extern /* Subroutine */ int sswap_(integer *, real *, integer *, real *, 
779             integer *);
780     real d11, d12, d21, d22;
781     integer ii, kk, kp;
782     real absakk, wk;
783     extern real slamch_(char *);
784     extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen);
785     extern integer isamax_(integer *, real *, integer *);
786     real colmax, rowmax, wkm1, wkp1;
787
788
789 /*  -- LAPACK computational routine (version 3.7.0) -- */
790 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
791 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
792 /*     December 2016 */
793
794
795 /*  ===================================================================== */
796
797
798 /*     Test the input parameters. */
799
800     /* Parameter adjustments */
801     a_dim1 = *lda;
802     a_offset = 1 + a_dim1 * 1;
803     a -= a_offset;
804     --e;
805     --ipiv;
806
807     /* Function Body */
808     *info = 0;
809     upper = lsame_(uplo, "U");
810     if (! upper && ! lsame_(uplo, "L")) {
811         *info = -1;
812     } else if (*n < 0) {
813         *info = -2;
814     } else if (*lda < f2cmax(1,*n)) {
815         *info = -4;
816     }
817     if (*info != 0) {
818         i__1 = -(*info);
819         xerbla_("SSYTF2_RK", &i__1, (ftnlen)9);
820         return 0;
821     }
822
823 /*     Initialize ALPHA for use in choosing pivot block size. */
824
825     alpha = (sqrt(17.f) + 1.f) / 8.f;
826
827 /*     Compute machine safe minimum */
828
829     sfmin = slamch_("S");
830
831     if (upper) {
832
833 /*        Factorize A as U*D*U**T using the upper triangle of A */
834
835 /*        Initialize the first entry of array E, where superdiagonal */
836 /*        elements of D are stored */
837
838         e[1] = 0.f;
839
840 /*        K is the main loop index, decreasing from N to 1 in steps of */
841 /*        1 or 2 */
842
843         k = *n;
844 L10:
845
846 /*        If K < 1, exit from loop */
847
848         if (k < 1) {
849             goto L34;
850         }
851         kstep = 1;
852         p = k;
853
854 /*        Determine rows and columns to be interchanged and whether */
855 /*        a 1-by-1 or 2-by-2 pivot block will be used */
856
857         absakk = (r__1 = a[k + k * a_dim1], abs(r__1));
858
859 /*        IMAX is the row-index of the largest off-diagonal element in */
860 /*        column K, and COLMAX is its absolute value. */
861 /*        Determine both COLMAX and IMAX. */
862
863         if (k > 1) {
864             i__1 = k - 1;
865             imax = isamax_(&i__1, &a[k * a_dim1 + 1], &c__1);
866             colmax = (r__1 = a[imax + k * a_dim1], abs(r__1));
867         } else {
868             colmax = 0.f;
869         }
870
871         if (f2cmax(absakk,colmax) == 0.f) {
872
873 /*           Column K is zero or underflow: set INFO and continue */
874
875             if (*info == 0) {
876                 *info = k;
877             }
878             kp = k;
879
880 /*           Set E( K ) to zero */
881
882             if (k > 1) {
883                 e[k] = 0.f;
884             }
885
886         } else {
887
888 /*           Test for interchange */
889
890 /*           Equivalent to testing for (used to handle NaN and Inf) */
891 /*           ABSAKK.GE.ALPHA*COLMAX */
892
893             if (! (absakk < alpha * colmax)) {
894
895 /*              no interchange, */
896 /*              use 1-by-1 pivot block */
897
898                 kp = k;
899             } else {
900
901                 done = FALSE_;
902
903 /*              Loop until pivot found */
904
905 L12:
906
907 /*                 Begin pivot search loop body */
908
909 /*                 JMAX is the column-index of the largest off-diagonal */
910 /*                 element in row IMAX, and ROWMAX is its absolute value. */
911 /*                 Determine both ROWMAX and JMAX. */
912
913                 if (imax != k) {
914                     i__1 = k - imax;
915                     jmax = imax + isamax_(&i__1, &a[imax + (imax + 1) * 
916                             a_dim1], lda);
917                     rowmax = (r__1 = a[imax + jmax * a_dim1], abs(r__1));
918                 } else {
919                     rowmax = 0.f;
920                 }
921
922                 if (imax > 1) {
923                     i__1 = imax - 1;
924                     itemp = isamax_(&i__1, &a[imax * a_dim1 + 1], &c__1);
925                     stemp = (r__1 = a[itemp + imax * a_dim1], abs(r__1));
926                     if (stemp > rowmax) {
927                         rowmax = stemp;
928                         jmax = itemp;
929                     }
930                 }
931
932 /*                 Equivalent to testing for (used to handle NaN and Inf) */
933 /*                 ABS( A( IMAX, IMAX ) ).GE.ALPHA*ROWMAX */
934
935                 if (! ((r__1 = a[imax + imax * a_dim1], abs(r__1)) < alpha * 
936                         rowmax)) {
937
938 /*                    interchange rows and columns K and IMAX, */
939 /*                    use 1-by-1 pivot block */
940
941                     kp = imax;
942                     done = TRUE_;
943
944 /*                 Equivalent to testing for ROWMAX .EQ. COLMAX, */
945 /*                 used to handle NaN and Inf */
946
947                 } else if (p == jmax || rowmax <= colmax) {
948
949 /*                    interchange rows and columns K+1 and IMAX, */
950 /*                    use 2-by-2 pivot block */
951
952                     kp = imax;
953                     kstep = 2;
954                     done = TRUE_;
955                 } else {
956
957 /*                    Pivot NOT found, set variables and repeat */
958
959                     p = imax;
960                     colmax = rowmax;
961                     imax = jmax;
962                 }
963
964 /*                 End pivot search loop body */
965
966                 if (! done) {
967                     goto L12;
968                 }
969
970             }
971
972 /*           Swap TWO rows and TWO columns */
973
974 /*           First swap */
975
976             if (kstep == 2 && p != k) {
977
978 /*              Interchange rows and column K and P in the leading */
979 /*              submatrix A(1:k,1:k) if we have a 2-by-2 pivot */
980
981                 if (p > 1) {
982                     i__1 = p - 1;
983                     sswap_(&i__1, &a[k * a_dim1 + 1], &c__1, &a[p * a_dim1 + 
984                             1], &c__1);
985                 }
986                 if (p < k - 1) {
987                     i__1 = k - p - 1;
988                     sswap_(&i__1, &a[p + 1 + k * a_dim1], &c__1, &a[p + (p + 
989                             1) * a_dim1], lda);
990                 }
991                 t = a[k + k * a_dim1];
992                 a[k + k * a_dim1] = a[p + p * a_dim1];
993                 a[p + p * a_dim1] = t;
994
995 /*              Convert upper triangle of A into U form by applying */
996 /*              the interchanges in columns k+1:N. */
997
998                 if (k < *n) {
999                     i__1 = *n - k;
1000                     sswap_(&i__1, &a[k + (k + 1) * a_dim1], lda, &a[p + (k + 
1001                             1) * a_dim1], lda);
1002                 }
1003
1004             }
1005
1006 /*           Second swap */
1007
1008             kk = k - kstep + 1;
1009             if (kp != kk) {
1010
1011 /*              Interchange rows and columns KK and KP in the leading */
1012 /*              submatrix A(1:k,1:k) */
1013
1014                 if (kp > 1) {
1015                     i__1 = kp - 1;
1016                     sswap_(&i__1, &a[kk * a_dim1 + 1], &c__1, &a[kp * a_dim1 
1017                             + 1], &c__1);
1018                 }
1019                 if (kk > 1 && kp < kk - 1) {
1020                     i__1 = kk - kp - 1;
1021                     sswap_(&i__1, &a[kp + 1 + kk * a_dim1], &c__1, &a[kp + (
1022                             kp + 1) * a_dim1], lda);
1023                 }
1024                 t = a[kk + kk * a_dim1];
1025                 a[kk + kk * a_dim1] = a[kp + kp * a_dim1];
1026                 a[kp + kp * a_dim1] = t;
1027                 if (kstep == 2) {
1028                     t = a[k - 1 + k * a_dim1];
1029                     a[k - 1 + k * a_dim1] = a[kp + k * a_dim1];
1030                     a[kp + k * a_dim1] = t;
1031                 }
1032
1033 /*              Convert upper triangle of A into U form by applying */
1034 /*              the interchanges in columns k+1:N. */
1035
1036                 if (k < *n) {
1037                     i__1 = *n - k;
1038                     sswap_(&i__1, &a[kk + (k + 1) * a_dim1], lda, &a[kp + (k 
1039                             + 1) * a_dim1], lda);
1040                 }
1041
1042             }
1043
1044 /*           Update the leading submatrix */
1045
1046             if (kstep == 1) {
1047
1048 /*              1-by-1 pivot block D(k): column k now holds */
1049
1050 /*              W(k) = U(k)*D(k) */
1051
1052 /*              where U(k) is the k-th column of U */
1053
1054                 if (k > 1) {
1055
1056 /*                 Perform a rank-1 update of A(1:k-1,1:k-1) and */
1057 /*                 store U(k) in column k */
1058
1059                     if ((r__1 = a[k + k * a_dim1], abs(r__1)) >= sfmin) {
1060
1061 /*                    Perform a rank-1 update of A(1:k-1,1:k-1) as */
1062 /*                    A := A - U(k)*D(k)*U(k)**T */
1063 /*                       = A - W(k)*1/D(k)*W(k)**T */
1064
1065                         d11 = 1.f / a[k + k * a_dim1];
1066                         i__1 = k - 1;
1067                         r__1 = -d11;
1068                         ssyr_(uplo, &i__1, &r__1, &a[k * a_dim1 + 1], &c__1, &
1069                                 a[a_offset], lda);
1070
1071 /*                    Store U(k) in column k */
1072
1073                         i__1 = k - 1;
1074                         sscal_(&i__1, &d11, &a[k * a_dim1 + 1], &c__1);
1075                     } else {
1076
1077 /*                    Store L(k) in column K */
1078
1079                         d11 = a[k + k * a_dim1];
1080                         i__1 = k - 1;
1081                         for (ii = 1; ii <= i__1; ++ii) {
1082                             a[ii + k * a_dim1] /= d11;
1083 /* L16: */
1084                         }
1085
1086 /*                    Perform a rank-1 update of A(k+1:n,k+1:n) as */
1087 /*                    A := A - U(k)*D(k)*U(k)**T */
1088 /*                       = A - W(k)*(1/D(k))*W(k)**T */
1089 /*                       = A - (W(k)/D(k))*(D(k))*(W(k)/D(K))**T */
1090
1091                         i__1 = k - 1;
1092                         r__1 = -d11;
1093                         ssyr_(uplo, &i__1, &r__1, &a[k * a_dim1 + 1], &c__1, &
1094                                 a[a_offset], lda);
1095                     }
1096
1097 /*                 Store the superdiagonal element of D in array E */
1098
1099                     e[k] = 0.f;
1100
1101                 }
1102
1103             } else {
1104
1105 /*              2-by-2 pivot block D(k): columns k and k-1 now hold */
1106
1107 /*              ( W(k-1) W(k) ) = ( U(k-1) U(k) )*D(k) */
1108
1109 /*              where U(k) and U(k-1) are the k-th and (k-1)-th columns */
1110 /*              of U */
1111
1112 /*              Perform a rank-2 update of A(1:k-2,1:k-2) as */
1113
1114 /*              A := A - ( U(k-1) U(k) )*D(k)*( U(k-1) U(k) )**T */
1115 /*                 = A - ( ( A(k-1)A(k) )*inv(D(k)) ) * ( A(k-1)A(k) )**T */
1116
1117 /*              and store L(k) and L(k+1) in columns k and k+1 */
1118
1119                 if (k > 2) {
1120
1121                     d12 = a[k - 1 + k * a_dim1];
1122                     d22 = a[k - 1 + (k - 1) * a_dim1] / d12;
1123                     d11 = a[k + k * a_dim1] / d12;
1124                     t = 1.f / (d11 * d22 - 1.f);
1125
1126                     for (j = k - 2; j >= 1; --j) {
1127
1128                         wkm1 = t * (d11 * a[j + (k - 1) * a_dim1] - a[j + k * 
1129                                 a_dim1]);
1130                         wk = t * (d22 * a[j + k * a_dim1] - a[j + (k - 1) * 
1131                                 a_dim1]);
1132
1133                         for (i__ = j; i__ >= 1; --i__) {
1134                             a[i__ + j * a_dim1] = a[i__ + j * a_dim1] - a[i__ 
1135                                     + k * a_dim1] / d12 * wk - a[i__ + (k - 1)
1136                                      * a_dim1] / d12 * wkm1;
1137 /* L20: */
1138                         }
1139
1140 /*                    Store U(k) and U(k-1) in cols k and k-1 for row J */
1141
1142                         a[j + k * a_dim1] = wk / d12;
1143                         a[j + (k - 1) * a_dim1] = wkm1 / d12;
1144
1145 /* L30: */
1146                     }
1147
1148                 }
1149
1150 /*              Copy superdiagonal elements of D(K) to E(K) and */
1151 /*              ZERO out superdiagonal entry of A */
1152
1153                 e[k] = a[k - 1 + k * a_dim1];
1154                 e[k - 1] = 0.f;
1155                 a[k - 1 + k * a_dim1] = 0.f;
1156
1157             }
1158
1159 /*           End column K is nonsingular */
1160
1161         }
1162
1163 /*        Store details of the interchanges in IPIV */
1164
1165         if (kstep == 1) {
1166             ipiv[k] = kp;
1167         } else {
1168             ipiv[k] = -p;
1169             ipiv[k - 1] = -kp;
1170         }
1171
1172 /*        Decrease K and return to the start of the main loop */
1173
1174         k -= kstep;
1175         goto L10;
1176
1177 L34:
1178
1179         ;
1180     } else {
1181
1182 /*        Factorize A as L*D*L**T using the lower triangle of A */
1183
1184 /*        Initialize the unused last entry of the subdiagonal array E. */
1185
1186         e[*n] = 0.f;
1187
1188 /*        K is the main loop index, increasing from 1 to N in steps of */
1189 /*        1 or 2 */
1190
1191         k = 1;
1192 L40:
1193
1194 /*        If K > N, exit from loop */
1195
1196         if (k > *n) {
1197             goto L64;
1198         }
1199         kstep = 1;
1200         p = k;
1201
1202 /*        Determine rows and columns to be interchanged and whether */
1203 /*        a 1-by-1 or 2-by-2 pivot block will be used */
1204
1205         absakk = (r__1 = a[k + k * a_dim1], abs(r__1));
1206
1207 /*        IMAX is the row-index of the largest off-diagonal element in */
1208 /*        column K, and COLMAX is its absolute value. */
1209 /*        Determine both COLMAX and IMAX. */
1210
1211         if (k < *n) {
1212             i__1 = *n - k;
1213             imax = k + isamax_(&i__1, &a[k + 1 + k * a_dim1], &c__1);
1214             colmax = (r__1 = a[imax + k * a_dim1], abs(r__1));
1215         } else {
1216             colmax = 0.f;
1217         }
1218
1219         if (f2cmax(absakk,colmax) == 0.f) {
1220
1221 /*           Column K is zero or underflow: set INFO and continue */
1222
1223             if (*info == 0) {
1224                 *info = k;
1225             }
1226             kp = k;
1227
1228 /*           Set E( K ) to zero */
1229
1230             if (k < *n) {
1231                 e[k] = 0.f;
1232             }
1233
1234         } else {
1235
1236 /*           Test for interchange */
1237
1238 /*           Equivalent to testing for (used to handle NaN and Inf) */
1239 /*           ABSAKK.GE.ALPHA*COLMAX */
1240
1241             if (! (absakk < alpha * colmax)) {
1242
1243 /*              no interchange, use 1-by-1 pivot block */
1244
1245                 kp = k;
1246
1247             } else {
1248
1249                 done = FALSE_;
1250
1251 /*              Loop until pivot found */
1252
1253 L42:
1254
1255 /*                 Begin pivot search loop body */
1256
1257 /*                 JMAX is the column-index of the largest off-diagonal */
1258 /*                 element in row IMAX, and ROWMAX is its absolute value. */
1259 /*                 Determine both ROWMAX and JMAX. */
1260
1261                 if (imax != k) {
1262                     i__1 = imax - k;
1263                     jmax = k - 1 + isamax_(&i__1, &a[imax + k * a_dim1], lda);
1264                     rowmax = (r__1 = a[imax + jmax * a_dim1], abs(r__1));
1265                 } else {
1266                     rowmax = 0.f;
1267                 }
1268
1269                 if (imax < *n) {
1270                     i__1 = *n - imax;
1271                     itemp = imax + isamax_(&i__1, &a[imax + 1 + imax * a_dim1]
1272                             , &c__1);
1273                     stemp = (r__1 = a[itemp + imax * a_dim1], abs(r__1));
1274                     if (stemp > rowmax) {
1275                         rowmax = stemp;
1276                         jmax = itemp;
1277                     }
1278                 }
1279
1280 /*                 Equivalent to testing for (used to handle NaN and Inf) */
1281 /*                 ABS( A( IMAX, IMAX ) ).GE.ALPHA*ROWMAX */
1282
1283                 if (! ((r__1 = a[imax + imax * a_dim1], abs(r__1)) < alpha * 
1284                         rowmax)) {
1285
1286 /*                    interchange rows and columns K and IMAX, */
1287 /*                    use 1-by-1 pivot block */
1288
1289                     kp = imax;
1290                     done = TRUE_;
1291
1292 /*                 Equivalent to testing for ROWMAX .EQ. COLMAX, */
1293 /*                 used to handle NaN and Inf */
1294
1295                 } else if (p == jmax || rowmax <= colmax) {
1296
1297 /*                    interchange rows and columns K+1 and IMAX, */
1298 /*                    use 2-by-2 pivot block */
1299
1300                     kp = imax;
1301                     kstep = 2;
1302                     done = TRUE_;
1303                 } else {
1304
1305 /*                    Pivot NOT found, set variables and repeat */
1306
1307                     p = imax;
1308                     colmax = rowmax;
1309                     imax = jmax;
1310                 }
1311
1312 /*                 End pivot search loop body */
1313
1314                 if (! done) {
1315                     goto L42;
1316                 }
1317
1318             }
1319
1320 /*           Swap TWO rows and TWO columns */
1321
1322 /*           First swap */
1323
1324             if (kstep == 2 && p != k) {
1325
1326 /*              Interchange rows and column K and P in the trailing */
1327 /*              submatrix A(k:n,k:n) if we have a 2-by-2 pivot */
1328
1329                 if (p < *n) {
1330                     i__1 = *n - p;
1331                     sswap_(&i__1, &a[p + 1 + k * a_dim1], &c__1, &a[p + 1 + p 
1332                             * a_dim1], &c__1);
1333                 }
1334                 if (p > k + 1) {
1335                     i__1 = p - k - 1;
1336                     sswap_(&i__1, &a[k + 1 + k * a_dim1], &c__1, &a[p + (k + 
1337                             1) * a_dim1], lda);
1338                 }
1339                 t = a[k + k * a_dim1];
1340                 a[k + k * a_dim1] = a[p + p * a_dim1];
1341                 a[p + p * a_dim1] = t;
1342
1343 /*              Convert lower triangle of A into L form by applying */
1344 /*              the interchanges in columns 1:k-1. */
1345
1346                 if (k > 1) {
1347                     i__1 = k - 1;
1348                     sswap_(&i__1, &a[k + a_dim1], lda, &a[p + a_dim1], lda);
1349                 }
1350
1351             }
1352
1353 /*           Second swap */
1354
1355             kk = k + kstep - 1;
1356             if (kp != kk) {
1357
1358 /*              Interchange rows and columns KK and KP in the trailing */
1359 /*              submatrix A(k:n,k:n) */
1360
1361                 if (kp < *n) {
1362                     i__1 = *n - kp;
1363                     sswap_(&i__1, &a[kp + 1 + kk * a_dim1], &c__1, &a[kp + 1 
1364                             + kp * a_dim1], &c__1);
1365                 }
1366                 if (kk < *n && kp > kk + 1) {
1367                     i__1 = kp - kk - 1;
1368                     sswap_(&i__1, &a[kk + 1 + kk * a_dim1], &c__1, &a[kp + (
1369                             kk + 1) * a_dim1], lda);
1370                 }
1371                 t = a[kk + kk * a_dim1];
1372                 a[kk + kk * a_dim1] = a[kp + kp * a_dim1];
1373                 a[kp + kp * a_dim1] = t;
1374                 if (kstep == 2) {
1375                     t = a[k + 1 + k * a_dim1];
1376                     a[k + 1 + k * a_dim1] = a[kp + k * a_dim1];
1377                     a[kp + k * a_dim1] = t;
1378                 }
1379
1380 /*              Convert lower triangle of A into L form by applying */
1381 /*              the interchanges in columns 1:k-1. */
1382
1383                 if (k > 1) {
1384                     i__1 = k - 1;
1385                     sswap_(&i__1, &a[kk + a_dim1], lda, &a[kp + a_dim1], lda);
1386                 }
1387
1388             }
1389
1390 /*           Update the trailing submatrix */
1391
1392             if (kstep == 1) {
1393
1394 /*              1-by-1 pivot block D(k): column k now holds */
1395
1396 /*              W(k) = L(k)*D(k) */
1397
1398 /*              where L(k) is the k-th column of L */
1399
1400                 if (k < *n) {
1401
1402 /*              Perform a rank-1 update of A(k+1:n,k+1:n) and */
1403 /*              store L(k) in column k */
1404
1405                     if ((r__1 = a[k + k * a_dim1], abs(r__1)) >= sfmin) {
1406
1407 /*                    Perform a rank-1 update of A(k+1:n,k+1:n) as */
1408 /*                    A := A - L(k)*D(k)*L(k)**T */
1409 /*                       = A - W(k)*(1/D(k))*W(k)**T */
1410
1411                         d11 = 1.f / a[k + k * a_dim1];
1412                         i__1 = *n - k;
1413                         r__1 = -d11;
1414                         ssyr_(uplo, &i__1, &r__1, &a[k + 1 + k * a_dim1], &
1415                                 c__1, &a[k + 1 + (k + 1) * a_dim1], lda);
1416
1417 /*                    Store L(k) in column k */
1418
1419                         i__1 = *n - k;
1420                         sscal_(&i__1, &d11, &a[k + 1 + k * a_dim1], &c__1);
1421                     } else {
1422
1423 /*                    Store L(k) in column k */
1424
1425                         d11 = a[k + k * a_dim1];
1426                         i__1 = *n;
1427                         for (ii = k + 1; ii <= i__1; ++ii) {
1428                             a[ii + k * a_dim1] /= d11;
1429 /* L46: */
1430                         }
1431
1432 /*                    Perform a rank-1 update of A(k+1:n,k+1:n) as */
1433 /*                    A := A - L(k)*D(k)*L(k)**T */
1434 /*                       = A - W(k)*(1/D(k))*W(k)**T */
1435 /*                       = A - (W(k)/D(k))*(D(k))*(W(k)/D(K))**T */
1436
1437                         i__1 = *n - k;
1438                         r__1 = -d11;
1439                         ssyr_(uplo, &i__1, &r__1, &a[k + 1 + k * a_dim1], &
1440                                 c__1, &a[k + 1 + (k + 1) * a_dim1], lda);
1441                     }
1442
1443 /*                 Store the subdiagonal element of D in array E */
1444
1445                     e[k] = 0.f;
1446
1447                 }
1448
1449             } else {
1450
1451 /*              2-by-2 pivot block D(k): columns k and k+1 now hold */
1452
1453 /*              ( W(k) W(k+1) ) = ( L(k) L(k+1) )*D(k) */
1454
1455 /*              where L(k) and L(k+1) are the k-th and (k+1)-th columns */
1456 /*              of L */
1457
1458
1459 /*              Perform a rank-2 update of A(k+2:n,k+2:n) as */
1460
1461 /*              A := A - ( L(k) L(k+1) ) * D(k) * ( L(k) L(k+1) )**T */
1462 /*                 = A - ( ( A(k)A(k+1) )*inv(D(k) ) * ( A(k)A(k+1) )**T */
1463
1464 /*              and store L(k) and L(k+1) in columns k and k+1 */
1465
1466                 if (k < *n - 1) {
1467
1468                     d21 = a[k + 1 + k * a_dim1];
1469                     d11 = a[k + 1 + (k + 1) * a_dim1] / d21;
1470                     d22 = a[k + k * a_dim1] / d21;
1471                     t = 1.f / (d11 * d22 - 1.f);
1472
1473                     i__1 = *n;
1474                     for (j = k + 2; j <= i__1; ++j) {
1475
1476 /*                    Compute  D21 * ( W(k)W(k+1) ) * inv(D(k)) for row J */
1477
1478                         wk = t * (d11 * a[j + k * a_dim1] - a[j + (k + 1) * 
1479                                 a_dim1]);
1480                         wkp1 = t * (d22 * a[j + (k + 1) * a_dim1] - a[j + k * 
1481                                 a_dim1]);
1482
1483 /*                    Perform a rank-2 update of A(k+2:n,k+2:n) */
1484
1485                         i__2 = *n;
1486                         for (i__ = j; i__ <= i__2; ++i__) {
1487                             a[i__ + j * a_dim1] = a[i__ + j * a_dim1] - a[i__ 
1488                                     + k * a_dim1] / d21 * wk - a[i__ + (k + 1)
1489                                      * a_dim1] / d21 * wkp1;
1490 /* L50: */
1491                         }
1492
1493 /*                    Store L(k) and L(k+1) in cols k and k+1 for row J */
1494
1495                         a[j + k * a_dim1] = wk / d21;
1496                         a[j + (k + 1) * a_dim1] = wkp1 / d21;
1497
1498 /* L60: */
1499                     }
1500
1501                 }
1502
1503 /*              Copy subdiagonal elements of D(K) to E(K) and */
1504 /*              ZERO out subdiagonal entry of A */
1505
1506                 e[k] = a[k + 1 + k * a_dim1];
1507                 e[k + 1] = 0.f;
1508                 a[k + 1 + k * a_dim1] = 0.f;
1509
1510             }
1511
1512 /*           End column K is nonsingular */
1513
1514         }
1515
1516 /*        Store details of the interchanges in IPIV */
1517
1518         if (kstep == 1) {
1519             ipiv[k] = kp;
1520         } else {
1521             ipiv[k] = -p;
1522             ipiv[k + 1] = -kp;
1523         }
1524
1525 /*        Increase K and return to the start of the main loop */
1526
1527         k += kstep;
1528         goto L40;
1529
1530 L64:
1531
1532         ;
1533     }
1534
1535     return 0;
1536
1537 /*     End of SSYTF2_RK */
1538
1539 } /* ssytf2_rk__ */
1540