Blame view

fvn_sparse/UMFPACK/Source/umf_usolve.c 6.11 KB
422234dc3   daniau   git-svn-id: https...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
  /* ========================================================================== */
  /* === UMF_usolve =========================================================== */
  /* ========================================================================== */
  
  /* -------------------------------------------------------------------------- */
  /* UMFPACK Copyright (c) Timothy A. Davis, CISE,                              */
  /* Univ. of Florida.  All Rights Reserved.  See ../Doc/License for License.   */
  /* web: http://www.cise.ufl.edu/research/sparse/umfpack                       */
  /* -------------------------------------------------------------------------- */
  
  /*  solves Ux = b, where U is the upper triangular factor of a matrix. */
  /*  B is overwritten with the solution X. */
  /*  Returns the floating point operation count */
  
  #include "umf_internal.h"
  
  GLOBAL double UMF_usolve
  (
      NumericType *Numeric,
      Entry X [ ],		/* b on input, solution x on output */
      Int Pattern [ ]		/* a work array of size n */
  )
  {
      /* ---------------------------------------------------------------------- */
      /* local variables */
      /* ---------------------------------------------------------------------- */
  
      Entry xk ;
      Entry *xp, *D, *Uval ;
      Int k, deg, j, *ip, col, *Upos, *Uilen, pos,
  	*Uip, n, ulen, up, newUchain, npiv, n1, *Ui ;
  
      /* ---------------------------------------------------------------------- */
      /* get parameters */
      /* ---------------------------------------------------------------------- */
  
      if (Numeric->n_row != Numeric->n_col) return (0.) ;
      n = Numeric->n_row ;
      npiv = Numeric->npiv ;
      Upos = Numeric->Upos ;
      Uilen = Numeric->Uilen ;
      Uip = Numeric->Uip ;
      D = Numeric->D ;
      n1 = Numeric->n1 ;
  
  #ifndef NDEBUG
      DEBUG4 (("Usolve start:  npiv = "ID" n = "ID"
  ", npiv, n)) ;
      for (j = 0 ; j < n ; j++)
      {
  	DEBUG4 (("Usolve start "ID": ", j)) ;
  	EDEBUG4 (X [j]) ;
  	DEBUG4 (("
  ")) ;
      }
  #endif
  
      /* ---------------------------------------------------------------------- */
      /* singular case */
      /* ---------------------------------------------------------------------- */
  
  #ifndef NO_DIVIDE_BY_ZERO
      /* handle the singular part of D, up to just before the last pivot */
      for (k = n-1 ; k >= npiv ; k--)
      {
  	/* This is an *** intentional *** divide-by-zero, to get Inf or Nan,
  	 * as appropriate.  It is not a bug. */
  	ASSERT (IS_ZERO (D [k])) ;
  	xk = X [k] ;
  	/* X [k] = xk / D [k] ; */
  	DIV (X [k], xk, D [k]) ;
      }
  #else
      /* Do not divide by zero */
  #endif
  
      deg = Numeric->ulen ;
      if (deg > 0)
      {
  	/* :: make last pivot row of U (singular matrices only) :: */
  	for (j = 0 ; j < deg ; j++)
  	{
  	    DEBUG1 (("Last row of U: j="ID"
  ", j)) ;
  	    DEBUG1 (("Last row of U: Upattern[j]="ID"
  ",
  		Numeric->Upattern [j]) );
  	    Pattern [j] = Numeric->Upattern [j] ;
  	}
      }
  
      /* ---------------------------------------------------------------------- */
      /* nonsingletons */
      /* ---------------------------------------------------------------------- */
  
      for (k = npiv-1 ; k >= n1 ; k--)
      {
  
  	/* ------------------------------------------------------------------ */
  	/* use row k of U */
  	/* ------------------------------------------------------------------ */
  
  	up = Uip [k] ;
  	ulen = Uilen [k] ;
  	newUchain = (up < 0) ;
  	if (newUchain)
  	{
  	    up = -up ;
  	    xp = (Entry *) (Numeric->Memory + up + UNITS (Int, ulen)) ;
  	}
  	else
  	{
  	    xp = (Entry *) (Numeric->Memory + up) ;
  	}
  
  	xk = X [k] ;
  	for (j = 0 ; j < deg ; j++)
  	{
  	    DEBUG4 (("  k "ID" col "ID" value", k, Pattern [j])) ;
  	    EDEBUG4 (*xp) ;
  	    DEBUG4 (("
  ")) ;
  	    /* xk -= X [Pattern [j]] * (*xp) ; */
  	    MULT_SUB (xk, X [Pattern [j]], *xp) ;
  	    xp++ ;
  	}
  
  #ifndef NO_DIVIDE_BY_ZERO
  	/* Go ahead and divide by zero if D [k] is zero */
  	/* X [k] = xk / D [k] ; */
  	DIV (X [k], xk, D [k]) ;
  #else
  	/* Do not divide by zero */
  	if (IS_NONZERO (D [k]))
  	{
  	    /* X [k] = xk / D [k] ; */
  	    DIV (X [k], xk, D [k]) ;
  	}
  #endif
  
  	/* ------------------------------------------------------------------ */
  	/* make row k-1 of U in Pattern [0..deg-1] */
  	/* ------------------------------------------------------------------ */
  
  	if (k == n1) break ;
  
  	if (newUchain)
  	{
  	    /* next row is a new Uchain */
  	    deg = ulen ;
  	    ASSERT (IMPLIES (k == 0, deg == 0)) ;
  	    DEBUG4 (("end of chain for row of U "ID" deg "ID"
  ", k-1, deg)) ;
  	    ip = (Int *) (Numeric->Memory + up) ;
  	    for (j = 0 ; j < deg ; j++)
  	    {
  		col = *ip++ ;
  		DEBUG4 (("  k "ID" col "ID"
  ", k-1, col)) ;
  		ASSERT (k <= col) ;
  		Pattern [j] = col ;
  	    }
  	}
  	else
  	{
  	    deg -= ulen ;
  	    DEBUG4 (("middle of chain for row of U "ID" deg "ID"
  ", k, deg)) ;
  	    ASSERT (deg >= 0) ;
  	    pos = Upos [k] ;
  	    if (pos != EMPTY)
  	    {
  		/* add the pivot column */
  		DEBUG4 (("k "ID" add pivot entry at pos "ID"
  ", k, pos)) ;
  		ASSERT (pos >= 0 && pos <= deg) ;
  		Pattern [deg++] = Pattern [pos] ;
  		Pattern [pos] = k ;
  	    }
  	}
      }
  
      /* ---------------------------------------------------------------------- */
      /* singletons */
      /* ---------------------------------------------------------------------- */
  
      for (k = n1 - 1 ; k >= 0 ; k--)
      {
  	deg = Uilen [k] ;
  	xk = X [k] ;
  	DEBUG4 (("Singleton k "ID"
  ", k)) ;
  	if (deg > 0)
  	{
  	    up = Uip [k] ;
  	    Ui = (Int *) (Numeric->Memory + up) ;
  	    up += UNITS (Int, deg) ;
  	    Uval = (Entry *) (Numeric->Memory + up) ;
  	    for (j = 0 ; j < deg ; j++)
  	    {
  		DEBUG4 (("  k "ID" col "ID" value", k, Ui [j])) ;
  		EDEBUG4 (Uval [j]) ;
  		DEBUG4 (("
  ")) ;
  		/* xk -= X [Ui [j]] * Uval [j] ; */
  		ASSERT (Ui [j] >= 0 && Ui [j] < n) ;
  		MULT_SUB (xk, X [Ui [j]], Uval [j]) ;
  	    }
  	}
  
  #ifndef NO_DIVIDE_BY_ZERO
  	/* Go ahead and divide by zero if D [k] is zero */
  	/* X [k] = xk / D [k] ; */
  	DIV (X [k], xk, D [k]) ;
  #else
  	/* Do not divide by zero */
  	if (IS_NONZERO (D [k]))
  	{
  	    /* X [k] = xk / D [k] ; */
  	    DIV (X [k], xk, D [k]) ;
  	}
  #endif
  
      }
  
  #ifndef NDEBUG
      for (j = 0 ; j < n ; j++)
      {
  	DEBUG4 (("Usolve done "ID": ", j)) ;
  	EDEBUG4 (X [j]) ;
  	DEBUG4 (("
  ")) ;
      }
      DEBUG4 (("Usolve done.
  ")) ;
  #endif
  
      return (DIV_FLOPS * ((double) n) + MULTSUB_FLOPS * ((double) Numeric->unz));
  }