Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015
00016 int zlaswp_(integer *n, doublecomplex *a, integer *lda,
00017 integer *k1, integer *k2, integer *ipiv, integer *incx)
00018 {
00019
00020 integer a_dim1, a_offset, i__1, i__2, i__3, i__4, i__5, i__6;
00021
00022
00023 integer i__, j, k, i1, i2, n32, ip, ix, ix0, inc;
00024 doublecomplex temp;
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088 a_dim1 = *lda;
00089 a_offset = 1 + a_dim1;
00090 a -= a_offset;
00091 --ipiv;
00092
00093
00094 if (*incx > 0) {
00095 ix0 = *k1;
00096 i1 = *k1;
00097 i2 = *k2;
00098 inc = 1;
00099 } else if (*incx < 0) {
00100 ix0 = (1 - *k2) * *incx + 1;
00101 i1 = *k2;
00102 i2 = *k1;
00103 inc = -1;
00104 } else {
00105 return 0;
00106 }
00107
00108 n32 = *n / 32 << 5;
00109 if (n32 != 0) {
00110 i__1 = n32;
00111 for (j = 1; j <= i__1; j += 32) {
00112 ix = ix0;
00113 i__2 = i2;
00114 i__3 = inc;
00115 for (i__ = i1; i__3 < 0 ? i__ >= i__2 : i__ <= i__2; i__ += i__3)
00116 {
00117 ip = ipiv[ix];
00118 if (ip != i__) {
00119 i__4 = j + 31;
00120 for (k = j; k <= i__4; ++k) {
00121 i__5 = i__ + k * a_dim1;
00122 temp.r = a[i__5].r, temp.i = a[i__5].i;
00123 i__5 = i__ + k * a_dim1;
00124 i__6 = ip + k * a_dim1;
00125 a[i__5].r = a[i__6].r, a[i__5].i = a[i__6].i;
00126 i__5 = ip + k * a_dim1;
00127 a[i__5].r = temp.r, a[i__5].i = temp.i;
00128
00129 }
00130 }
00131 ix += *incx;
00132
00133 }
00134
00135 }
00136 }
00137 if (n32 != *n) {
00138 ++n32;
00139 ix = ix0;
00140 i__1 = i2;
00141 i__3 = inc;
00142 for (i__ = i1; i__3 < 0 ? i__ >= i__1 : i__ <= i__1; i__ += i__3) {
00143 ip = ipiv[ix];
00144 if (ip != i__) {
00145 i__2 = *n;
00146 for (k = n32; k <= i__2; ++k) {
00147 i__4 = i__ + k * a_dim1;
00148 temp.r = a[i__4].r, temp.i = a[i__4].i;
00149 i__4 = i__ + k * a_dim1;
00150 i__5 = ip + k * a_dim1;
00151 a[i__4].r = a[i__5].r, a[i__4].i = a[i__5].i;
00152 i__4 = ip + k * a_dim1;
00153 a[i__4].r = temp.r, a[i__4].i = temp.i;
00154
00155 }
00156 }
00157 ix += *incx;
00158
00159 }
00160 }
00161
00162 return 0;
00163
00164
00165
00166 }