29 #include "../Core/util/NonMPL2.h"
31 #ifndef EIGEN_SPARSE_AMD_H
32 #define EIGEN_SPARSE_AMD_H
38 template<
typename T>
inline T amd_flip(
const T& i) {
return -i-2; }
39 template<
typename T>
inline T amd_unflip(
const T& i) {
return i<0 ? amd_flip(i) : i; }
40 template<
typename T0,
typename T1>
inline bool amd_marked(
const T0* w,
const T1& j) {
return w[j]<0; }
41 template<
typename T0,
typename T1>
inline void amd_mark(
const T0* w,
const T1& j) {
return w[j] = amd_flip(w[j]); }
44 template<
typename Index>
45 static int cs_wclear (Index mark, Index lemax, Index *w, Index n)
48 if(mark < 2 || (mark + lemax < 0))
50 for(k = 0; k < n; k++)
59 template<
typename Index>
60 Index cs_tdfs(Index j, Index k, Index *head,
const Index *next, Index *post, Index *stack)
63 if(!head || !next || !post || !stack)
return (-1);
90 template<
typename Scalar,
typename Index>
91 void minimum_degree_ordering(SparseMatrix<Scalar,ColMajor,Index>& C, PermutationMatrix<Dynamic,Dynamic,Index>& perm)
95 int d, dk, dext, lemax = 0, e, elenk, eln, i, j, k, k1,
96 k2, k3, jlast, ln, dense, nzmax, mindeg = 0, nvi, nvj, nvk, mark, wnvi,
97 ok, nel = 0, p, p1, p2, p3, p4, pj, pk, pk1, pk2, pn, q, t;
101 dense = std::max<Index> (16, Index(10 * sqrt(
double(n))));
102 dense = std::min<Index> (n-2, dense);
104 Index cnz = C.nonZeros();
106 t = cnz + cnz/5 + 2*n;
109 Index* W =
new Index[8*(n+1)];
111 Index* nv = W + (n+1);
112 Index* next = W + 2*(n+1);
113 Index* head = W + 3*(n+1);
114 Index* elen = W + 4*(n+1);
115 Index* degree = W + 5*(n+1);
116 Index* w = W + 6*(n+1);
117 Index* hhead = W + 7*(n+1);
118 Index* last = perm.indices().data();
121 Index* Cp = C.outerIndexPtr();
122 Index* Ci = C.innerIndexPtr();
123 for(k = 0; k < n; k++)
124 len[k] = Cp[k+1] - Cp[k];
128 for(i = 0; i <= n; i++)
139 mark = internal::cs_wclear<Index>(0, 0, w, n);
142 for(i = 0; i < n; i++)
144 bool has_diag =
false;
145 for(p = Cp[i]; p<Cp[i+1]; ++p)
153 if(d == 1 && has_diag)
160 else if(d > dense || !has_diag)
165 Cp[i] = amd_flip (n);
170 if(head[d] != -1) last[head[d]] = i;
183 for(k = -1; mindeg < n && (k = head[mindeg]) == -1; mindeg++) {}
184 if(next[k] != -1) last[next[k]] = -1;
185 head[mindeg] = next[k];
191 if(elenk > 0 && cnz + mindeg >= nzmax)
193 for(j = 0; j < n; j++)
198 Ci[p] = amd_flip (j);
201 for(q = 0, p = 0; p < cnz; )
203 if((j = amd_flip (Ci[p++])) >= 0)
207 for(k3 = 0; k3 < len[j]-1; k3++) Ci[q++] = Ci[p++];
217 pk1 = (elenk == 0) ? p : cnz;
219 for(k1 = 1; k1 <= elenk + 1; k1++)
233 for(k2 = 1; k2 <= ln; k2++)
236 if((nvi = nv[i]) <= 0)
continue;
240 if(next[i] != -1) last[next[i]] = last[i];
243 next[last[i]] = next[i];
247 head[degree[i]] = next[i];
252 Cp[e] = amd_flip (k);
256 if(elenk != 0) cnz = pk2;
263 mark = internal::cs_wclear<Index>(mark, lemax, w, n);
264 for(pk = pk1; pk < pk2; pk++)
267 if((eln = elen[i]) <= 0)
continue;
270 for(p = Cp[i]; p <= Cp[i] + eln - 1; p++)
279 w[e] = degree[e] + wnvi;
285 for(pk = pk1; pk < pk2; pk++)
289 p2 = p1 + elen[i] - 1;
291 for(h = 0, d = 0, p = p1; p <= p2; p++)
305 Cp[e] = amd_flip (k);
310 elen[i] = pn - p1 + 1;
313 for(p = p2 + 1; p < p4; p++)
316 if((nvj = nv[j]) <= 0)
continue;
323 Cp[i] = amd_flip (k);
333 degree[i] = std::min<Index> (degree[i], d);
337 len[i] = pn - p1 + 1;
345 lemax = std::max<Index>(lemax, dk);
346 mark = internal::cs_wclear<Index>(mark+lemax, lemax, w, n);
349 for(pk = pk1; pk < pk2; pk++)
352 if(nv[i] >= 0)
continue;
356 for(; i != -1 && next[i] != -1; i = next[i], mark++)
360 for(p = Cp[i]+1; p <= Cp[i] + ln-1; p++) w[Ci[p]] = mark;
362 for(j = next[i]; j != -1; )
364 ok = (len[j] == ln) && (elen[j] == eln);
365 for(p = Cp[j] + 1; ok && p <= Cp[j] + ln - 1; p++)
367 if(w[Ci[p]] != mark) ok = 0;
371 Cp[j] = amd_flip (i);
388 for(p = pk1, pk = pk1; pk < pk2; pk++)
391 if((nvi = -nv[i]) <= 0)
continue;
393 d = degree[i] + dk - nvi;
394 d = std::min<Index> (d, n - nel - nvi);
395 if(head[d] != -1) last[head[d]] = i;
399 mindeg = std::min<Index> (mindeg, d);
404 if((len[k] = p-pk1) == 0)
409 if(elenk != 0) cnz = p;
413 for(i = 0; i < n; i++) Cp[i] = amd_flip (Cp[i]);
414 for(j = 0; j <= n; j++) head[j] = -1;
415 for(j = n; j >= 0; j--)
417 if(nv[j] > 0)
continue;
418 next[j] = head[Cp[j]];
421 for(e = n; e >= 0; e--)
423 if(nv[e] <= 0)
continue;
426 next[e] = head[Cp[e]];
430 for(k = 0, i = 0; i <= n; i++)
432 if(Cp[i] == -1) k = internal::cs_tdfs<Index>(i, k, head, next, perm.indices().data(), w);
435 perm.indices().conservativeResize(n);
444 #endif // EIGEN_SPARSE_AMD_H