Blame view

fvn_sparse/UMFPACK/Source/umf_internal.h 25.7 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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
  /* ========================================================================== */
  /* === umf_internal.h ======================================================= */
  /* ========================================================================== */
  
  /* -------------------------------------------------------------------------- */
  /* 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                       */
  /* -------------------------------------------------------------------------- */
  
  /*
      This file is for internal use in UMFPACK itself, and should not be included
      in user code.  Use umfpack.h instead.  User-accessible file names and
      routine names all start with the letters "umfpack_".  Non-user-accessible
      file names and routine names all start with "umf_".
  */
  
  #ifndef _UMF_INTERNAL
  #define _UMF_INTERNAL
  
  /* -------------------------------------------------------------------------- */
  /* ANSI standard include files */
  /* -------------------------------------------------------------------------- */
  
  /* from float.h:  DBL_EPSILON */
  #include <float.h>
  
  /* from string.h: strcmp */
  #include <string.h>
  
  /* when debugging, assert.h and the assert macro are used (see umf_dump.h) */
  
  /* -------------------------------------------------------------------------- */
  /* Architecture */
  /* -------------------------------------------------------------------------- */
  
  #if defined (__sun) || defined (MSOL2) || defined (ARCH_SOL2)
  #define UMF_SOL2
  #define UMFPACK_ARCHITECTURE "Sun Solaris"
  
  #elif defined (__sgi) || defined (MSGI) || defined (ARCH_SGI)
  #define UMF_SGI
  #define UMFPACK_ARCHITECTURE "SGI Irix"
  
  #elif defined (__linux) || defined (MGLNX86) || defined (ARCH_GLNX86)
  #define UMF_LINUX
  #define UMFPACK_ARCHITECTURE "Linux"
  
  #elif defined (_AIX) || defined (MIBM_RS) || defined (ARCH_IBM_RS)
  #define UMF_AIX
  #define UMFPACK_ARCHITECTURE "IBM AIX"
  
  #elif defined (__alpha) || defined (MALPHA) || defined (ARCH_ALPHA)
  #define UMF_ALPHA
  #define UMFPACK_ARCHITECTURE "Compaq Alpha"
  
  #elif defined (_WIN32) || defined (WIN32)
  #if defined (__MINGW32__)
  #define UMF_MINGW
  #elif defined (__CYGWIN32__)
  #define UMF_CYGWIN
  #else
  #define UMF_WINDOWS
  #endif
  #define UMFPACK_ARCHITECTURE "Microsoft Windows"
  
  #elif defined (__hppa) || defined (__hpux) || defined (MHPUX) || defined (ARCH_HPUX)
  #define UMF_HP
  #define UMFPACK_ARCHITECTURE "HP Unix"
  
  #elif defined (__hp700) || defined (MHP700) || defined (ARCH_HP700)
  #define UMF_HP
  #define UMFPACK_ARCHITECTURE "HP 700 Unix"
  
  #else
  /* If the architecture is unknown, and you call the BLAS, you may need to */
  /* define BLAS_BY_VALUE, BLAS_NO_UNDERSCORE, and/or BLAS_CHAR_ARG yourself. */
  #define UMFPACK_ARCHITECTURE "unknown"
  #endif
  
  
  /* -------------------------------------------------------------------------- */
  /* basic definitions (see also amd_internal.h) */
  /* -------------------------------------------------------------------------- */
  
  #define ONES_COMPLEMENT(r) (-(r)-1)
  
  /* -------------------------------------------------------------------------- */
  /* AMD include file */
  /* -------------------------------------------------------------------------- */
  
  /* stdio.h, stdlib.h, limits.h, and math.h, NDEBUG definition, assert.h */
  #include "amd_internal.h"
  
  /* -------------------------------------------------------------------------- */
  /* MATLAB include files */
  /* -------------------------------------------------------------------------- */
  
  /* only used when compiling the UMFPACK mexFunction */
  #ifdef MATLAB_MEX_FILE
  #include "matrix.h"
  #include "mex.h"
  #endif
  
  /* -------------------------------------------------------------------------- */
  /* Real/complex and int/UF_long definitions, double relops */
  /* -------------------------------------------------------------------------- */
  
  #include "umf_version.h"
  
  /* -------------------------------------------------------------------------- */
  /* Compile-time configurations */
  /* -------------------------------------------------------------------------- */
  
  #include "umf_config.h"
  
  /* -------------------------------------------------------------------------- */
  /* umfpack include file */
  /* -------------------------------------------------------------------------- */
  
  #include "umfpack.h"
  
  /* -------------------------------------------------------------------------- */
  /* for contents of Info.  This must correlate with umfpack.h */
  /* -------------------------------------------------------------------------- */
  
  #define ESTIMATE (UMFPACK_NUMERIC_SIZE_ESTIMATE - UMFPACK_NUMERIC_SIZE)
  #define ACTUAL 0
  
  /* -------------------------------------------------------------------------- */
  /* get a parameter from the Control array */
  /* -------------------------------------------------------------------------- */
  
  #define GET_CONTROL(i,default) \
      ((Control != (double *) NULL) ? \
  	(SCALAR_IS_NAN (Control [i]) ? default : Control [i]) \
  	: default)
  
  /* -------------------------------------------------------------------------- */
  /* for clearing the external degree counters */
  /* -------------------------------------------------------------------------- */
  
  #define MAX_MARK(n) Int_MAX - (2*(n)+1)
  
  /* -------------------------------------------------------------------------- */
  /* convert number of Units to MBytes */
  /* -------------------------------------------------------------------------- */
  
  #define MBYTES(units) (((units) * sizeof (Unit)) / 1048576.0)
  
  /* -------------------------------------------------------------------------- */
  /* dense row/column macro */
  /* -------------------------------------------------------------------------- */
  
  /* In order for a row or column to be treated as "dense", it must have more */
  /* entries than the value returned by this macro.  n is the dimension of the */
  /* matrix, and alpha is the dense row/column control parameter. */
  
  /* Note: this is not defined if alpha is NaN or Inf: */
  #define UMFPACK_DENSE_DEGREE_THRESHOLD(alpha,n) \
      ((Int) MAX (16.0, (alpha) * 16.0 * sqrt ((double) (n))))
  
  /* -------------------------------------------------------------------------- */
  /* PRINTF */
  /* -------------------------------------------------------------------------- */
  
  #define PRINTFk(k,params) { if (prl >= (k)) { PRINTF (params) ; } }
  #define PRINTF1(params) PRINTFk (1, params)
  #define PRINTF2(params) PRINTFk (2, params)
  #define PRINTF3(params) PRINTFk (3, params)
  #define PRINTF4(params) PRINTFk (4, params)
  #define PRINTF5(params) PRINTFk (5, params)
  #define PRINTF6(params) PRINTFk (6, params)
  
  /* -------------------------------------------------------------------------- */
  /* Fixed control parameters */
  /* -------------------------------------------------------------------------- */
  
  /* maximum number of columns to consider at one time, in a single front */
  #define MAX_CANDIDATES 128
  
  /* reduce Numeric->Memory request by this ratio, if allocation fails */
  #define UMF_REALLOC_REDUCTION (0.95)
  
  /* increase Numeric->Memory request by this ratio, if we need more */
  #define UMF_REALLOC_INCREASE (1.2)
  
  /* increase the dimensions of the current frontal matrix by this factor
   * when it needs to grow. */
  #define UMF_FRONTAL_GROWTH (1.2)
  
  /* largest BLAS block size permitted */
  #define MAXNB 64
  
  /* if abs (y) < RECIPROCAL_TOLERANCE, then compute x/y.  Otherwise x*(1/y).
   * Ignored if NRECIPROCAL is defined */
  #define RECIPROCAL_TOLERANCE 1e-12
  
  /* -------------------------------------------------------------------------- */
  /* Memory allocator */
  /* -------------------------------------------------------------------------- */
  
  /* See AMD/Source/amd_global.c and AMD/Source/amd.h for the
   * definition of the memory allocator used by UMFPACK.  Versions 4.4 and
   * earlier had their memory allocator definitions here.   Other global
   * function pointers for UMFPACK are located in umf_global.c.
   *
   * The MATLAB mexFunction uses MATLAB's memory manager and mexPrintf, while the
   * C-callable AMD library uses the ANSI C malloc, free, realloc, and printf
   * routines.
   */
  
  /* -------------------------------------------------------------------------- */
  /* Memory space definitions */
  /* -------------------------------------------------------------------------- */
  
  /* for memory alignment - assume double has worst case alignment */
  typedef double Align ;
  
  /* get number of bytes required to hold n items of a type: */
  /* note that this will not overflow, because sizeof (type) is always */
  /* greater than or equal to sizeof (Int) >= 2 */
  #define BYTES(type,n) (sizeof (type) * (n))
  
  /* ceiling of (b/u).  Assumes b >= 0 and u > 0 */
  #define CEILING(b,u) (((b) + (u) - 1) / (u))
  
  /* get number of Units required to hold n items of a type: */
  #define UNITS(type,n) (CEILING (BYTES (type, n), sizeof (Unit)))
  
  /* same as DUNITS, but use double instead of int to avoid overflow */
  #define DUNITS(type,n) (ceil (BYTES (type, (double) n) / sizeof (Unit)))
  
  union Unit_union
  {	/* memory is allocated in multiples of Unit */
      struct
      {
  	Int
  	    size,	/* size, in Units, of the block, excl. header block */
  			/* size >= 0: block is in use */
  			/* size < 0: block is free, of |size| Units */
  	    prevsize ;	/* size, in Units, of preceding block in S->Memory */
  			/* during garbage_collection, prevsize is set to -e-1 */
  			/* for element e, or positive (and thus a free block) */
  			/* otherwise */
      } header ;		/* block header */
      Align  xxxxxx ;	/* force alignment of blocks (xxxxxx is never used) */
  } ;
  
  typedef union Unit_union Unit ;
  
  /* get the size of an allocated block */
  #define GET_BLOCK_SIZE(p) (((p)-1)->header.size)
  
  /* -------------------------------------------------------------------------- */
  /* Numeric */
  /* -------------------------------------------------------------------------- */
  
  /*
      NUMERIC_VALID and SYMBOLIC_VALID:
      The different values of SYBOLIC_VALID and NUMERIC_VALID are chosen as a
      first defense against corrupted *Symbolic or *Numeric pointers passed to an
      UMFPACK routine.  They also ensure that the objects are used only by the
      same version that created them (umfpack_di_*, umfpack_dl_*, umfpack_zi_*,
      or umfpack_zl_*).  The values have also been changed since prior releases of
      the code to ensure that all routines that operate on the objects are of the
      same release.  The values themselves are purely arbitrary.  The are less
      than the ANSI C required minimums of INT_MAX and LONG_MAX, respectively.
  */
  
  #ifdef DINT
  #define NUMERIC_VALID  15977
  #define SYMBOLIC_VALID 41937
  #endif
  #ifdef DLONG
  #define NUMERIC_VALID  399789720
  #define SYMBOLIC_VALID 399192713
  #endif
  #ifdef ZINT
  #define NUMERIC_VALID  17957
  #define SYMBOLIC_VALID 40927
  #endif
  #ifdef ZLONG
  #define NUMERIC_VALID  129987754
  #define SYMBOLIC_VALID 110291734
  #endif
  
  typedef struct	/* NumericType */
  {
      double
  	flops,		/* "true" flop count */
  	relpt,		/* relative pivot tolerance used */
  	relpt2,		/* relative pivot tolerance used for sym. */
  	droptol,
  	alloc_init,	/* initial allocation of Numeric->memory */
  	front_alloc_init, /* frontal matrix allocation parameter */
  	rsmin,		/* smallest row sum */
  	rsmax,		/* largest row sum  */
  	min_udiag,	/* smallest abs value on diagonal of D */
  	max_udiag,	/* smallest abs value on diagonal of D */
  	rcond ;		/* min (D) / max (D) */
  
      Int
  	scale ;
  
      Int valid ;		/* set to NUMERIC_VALID, for validity check */
  
      /* Memory space for A and LU factors */
      Unit
  	*Memory ;	/* working memory for A and LU factors */
      Int
  	ihead,		/* pointer to tail of LU factors, in Numeric->Memory */
  	itail,		/* pointer to top of elements & tuples,  */
  			/* in Numeric->Memory */
  	ibig,		/* pointer to largest free block seen in tail */
  	size ;		/* size of Memory, in Units */
  
      Int
  	*Rperm,		/* pointer to row perm array, size: n+1 */
  			/* after UMF_kernel:  Rperm [new] = old */
  			/* during UMF_kernel: Rperm [old] = new */
  	*Cperm,		/* pointer to col perm array, size: n+1 */
  			/* after UMF_kernel:  Cperm [new] = old */
  			/* during UMF_kernel: Cperm [old] = new */
  
  	*Upos,		/* see UMFPACK_get_numeric for a description */
  	*Lpos,
  	*Lip,
  	*Lilen,
  	*Uip,
  	*Uilen,
  	*Upattern ;	/* pattern of last row of U (if singular) */
  
      Int
  	ulen,		/* length of Upattern */
  	npiv,		/* number of structural pivots found (sprank approx) */
  	nnzpiv ;	/* number of numerical (nonzero) pivots found */
  
      Entry
  	*D ;		/* D [i] is the diagonal entry of U */
  
      Int do_recip ;
      double *Rs ;	/* scale factors for the rows of A and b */
  			/* do_recip FALSE: Divide row i by Rs [i] */
  			/* do_recip TRUE:  Multiply row i by Rs [i] */
  
      Int
  	n_row, n_col,	/* A is n_row-by-n_row */
  	n1 ;		/* number of singletons */
  
      /* for information only: */
      Int
  	tail_usage,	/* amount of memory allocated in tail */
  			/* head_usage is Numeric->ihead */
  	init_usage,	/* memory usage just after UMF_kernel_init */
  	max_usage,	/* peak memory usage (excludes internal and external */
  			/* fragmentation in the tail) */
  	ngarbage,	/* number of garbage collections performed */
  	nrealloc,	/* number of reallocations performed */
  	ncostly,	/* number of costly reallocations performed */
  	isize,		/* size of integer pattern of L and U */
  	nLentries,	/* number of entries in L, excluding diagonal */
  	nUentries,	/* number of entries in U, including diagonal */
  			/* Some entries may be numerically zero. */
  	lnz,		/* number of nonzero entries in L, excl. diagonal */
  	all_lnz,	/* lnz plus entries dropped from L */
  	unz,		/* number of nonzero entries in U, excl. diagonal */
  	all_unz,	/* unz plus entries dropped form U */
  	maxfrsize ;	/* largest actual front size */
  
      Int maxnrows, maxncols ;	/* not the same as Symbolic->maxnrows/cols* */
  
  } NumericType ;
  
  
  
  /* -------------------------------------------------------------------------- */
  /* Element tuples for connecting elements together in a matrix */
  /* -------------------------------------------------------------------------- */
  
  typedef struct	/* Tuple */
  {
      /* The (e,f) tuples for the element lists */
      Int
  	e,		/* element */
  	f ;		/* contribution to the row/col appears at this offset */
  
  } Tuple ;
  
  #define TUPLES(t) MAX (4, (t) + 1)
  
  /* Col_degree is aliased with Cperm, and Row_degree with Rperm */
  #define NON_PIVOTAL_COL(col) (Col_degree [col] >= 0)
  #define NON_PIVOTAL_ROW(row) (Row_degree [row] >= 0)
  
  /* -------------------------------------------------------------------------- */
  /* An element */
  /* -------------------------------------------------------------------------- */
  
  typedef struct	/* Element */
  {
      Int
  
  	cdeg,		/* external column degree + cdeg0 offset */
  	rdeg,		/* external row degree    + rdeg0 offset */
  	nrowsleft,	/* number of rows remaining */
  	ncolsleft,	/* number of columns remaining */
  	nrows,		/* number of rows */
  	ncols,		/* number of columns */
  	next ;		/* for list link of sons, used during assembly only */
  
      /* followed in memory by:
      Int
  	col [0..ncols-1],	column indices of this element
  	row [0..nrows-1] ;	row indices of this element
      Entry			(suitably aligned, see macro below)
  	C [0...nrows-1, 0...ncols-1] ;
  	size of C is nrows*ncols Entry's
      */
  
  } Element ;
  
  /* macros for computing pointers to row/col indices, and contribution block: */
  
  #define GET_ELEMENT_SIZE(nr,nc) \
  (UNITS (Element, 1) + UNITS (Int, (nc) + (nr)) + UNITS (Entry, (nc) * (nr)))
  
  #define DGET_ELEMENT_SIZE(nr,nc) \
  (DUNITS (Element, 1) + DUNITS (Int, (nc) + (nr)) + DUNITS (Entry, (nc) * (nr)))
  
  #define GET_ELEMENT_COLS(ep,p,Cols) { \
      ASSERT (p != (Unit *) NULL) ; \
      ASSERT (p >= Numeric->Memory + Numeric->itail) ; \
      ASSERT (p <= Numeric->Memory + Numeric->size) ; \
      ep = (Element *) p ; \
      p += UNITS (Element, 1) ; \
      Cols = (Int *) p ; \
  }
  
  #define GET_ELEMENT_PATTERN(ep,p,Cols,Rows,ncm) { \
      GET_ELEMENT_COLS (ep, p, Cols) ; \
      ncm = ep->ncols ; \
      Rows = Cols + ncm ; \
  }
  
  #define GET_ELEMENT(ep,p,Cols,Rows,ncm,nrm,C) { \
      GET_ELEMENT_PATTERN (ep, p, Cols, Rows, ncm) ; \
      nrm = ep->nrows ; \
      p += UNITS (Int, ncm + nrm) ; \
      C = (Entry *) p ; \
  }
  
  /* -------------------------------------------------------------------------- */
  /* Work data structure */
  /* -------------------------------------------------------------------------- */
  
  /*
      This data structure holds items needed only during factorization.
      All of this is freed when UMFPACK_numeric completes.  Note that some of
      it is stored in the tail end of Numeric->S (namely, the Tuples and the
      Elements).
  */
  
  typedef struct	/* WorkType */
  {
  
      /* ---------------------------------------------------------------------- */
      /* information about each row and col of A */
      /* ---------------------------------------------------------------------- */
  
      /*
  	Row_tuples:	pointer to tuple list (alias with Numeric->Uip)
  	Row_tlen:	number of tuples (alias with Numeric->Uilen)
  	Col_tuples:	pointer to tuple list (alias with Numeric->Lip)
  	Col_tlen:	number of tuples (alias with Numeric->Lilen)
  	Row_degree:	degree of the row or column (alias Numeric->Rperm)
  	Col_degree:	degree of the row or column (alias Numeric->Cperm)
  
  	The Row_degree and Col_degree are MATLAB-style colmmd approximations,
  	are equal to the sum of the sizes of the elements (contribution blocks)
  	in each row and column.  They are maintained when elements are created
  	and assembled.  They are used only during the pivot row and column
  	search.  They are not needed to represent the pattern of the remaining
  	matrix.
      */
  
      /* ---------------------------------------------------------------------- */
      /* information about each element */
      /* ---------------------------------------------------------------------- */
  
      Int	*E ;		/* E [0 .. Work->elen-1] element "pointers" */
  			/* (offsets in Numeric->Memory) */
  
      /* ---------------------------------------------------------------------- */
      /* generic workspace */
      /* ---------------------------------------------------------------------- */
  
      Entry *Wx, *Wy ;	/* each of size maxnrows+1 */
  
      Int			/* Sizes:  nn = MAX (n_row, n_col) */
  	*Wp,		/* nn+1 */
  	*Wrp,		/* n_col+1 */
  	*Wm,		/* maxnrows+1 */
  	*Wio,		/* maxncols+1 */
  	*Woi,		/* maxncols+1 */
  	*Woo,		/* MAX (maxnrows,maxncols)+1 */
  	*Wrow,		/* pointer to Fcols, Wio, or Woi */
  	*NewRows,	/* list of rows to scan */
  	*NewCols ;	/* list of cols to scan */
  
      /* ---------------------------------------------------------------------- */
  
      Int
  	*Lpattern,	/* pattern of column of L, for one Lchain */
  	*Upattern,	/* pattern of row of U, for one Uchain */
  	ulen, llen ;	/* length of Upattern and Lpattern */
  
      Int
  	*Diagonal_map,	/* used for symmetric pivoting, of size nn+1 */
  	*Diagonal_imap ;/* used for symmetric pivoting, of size nn+1 */
  
      /* ---------------------------------------------------------------------- */
  
      Int
  	n_row, n_col,	/* matrix is n_row-by-n_col */
  	nz,		/* nonzeros in the elements for this matrix */
  	n1,		/* number of row and col singletons */
  	elen,		/* max possible number of elements */
  	npiv,		/* number of pivot rows and columns so far */
  	ndiscard,	/* number of discarded pivot columns */
  	Wrpflag,
  	nel,		/* elements in use are in the range 1..nel */
  	noff_diagonal,
  	prior_element,
  	rdeg0, cdeg0,
  	rrdeg, ccdeg,
  	Candidates [MAX_CANDIDATES],	 /* current candidate pivot columns */
  	nCandidates,	/* number of candidates in Candidate set */
  	ksuper,
  	firstsuper,
  	jsuper,
  	ncand,		/* number of candidates (some not in Candidates[ ]) */
  	nextcand,	/* next candidate to place in Candidate search set */
  	lo,
  	hi,
  	pivrow,		/* current pivot row */
  	pivcol,		/* current pivot column */
  	do_extend,	/* true if the next pivot extends the current front */
  	do_update,	/* true if update should be applied */
  	nforced,	/* number of forced updates because of frontal growth */
  	any_skip,
  	do_scan2row,
  	do_scan2col,
  	do_grow,
  	pivot_case,
  	frontid,	/* id of current frontal matrix */
  	nfr ;		/* number of frontal matrices */
  
      /* ---------------------------------------------------------------------- */
      /* For row-merge tree */
      /* ---------------------------------------------------------------------- */
  
      Int
  	*Front_new1strow ;
  
      /* ---------------------------------------------------------------------- */
      /* current frontal matrix, F */
      /* ---------------------------------------------------------------------- */
  
      Int Pivrow [MAXNB],
  	Pivcol [MAXNB] ;
  
      Entry
  	*Flublock,	/* LU block, nb-by-nb */
  	*Flblock,	/* L block,  fnr_curr-by-nb */
  	*Fublock,	/* U block,  nb-by-fnc_curr, or U' fnc_curr-by-nb */
  	*Fcblock ;	/* C block,  fnr_curr-by-fnc_curr */
  
      Int
  	*Frows,		/* Frows [0.. ]: row indices of F */
  
  	*Fcols,		/* Fcols [0.. ]: column indices of F */
  
  	*Frpos,		/* position of row indices in F, or -1 if not present */
  			/* if Frows[i] == row, then Frpos[row] == i */
  
  	*Fcpos,		/* position of col indices in F, or -1 if not present */
  			/* if Fcols[j] == col, then */
  			/* Fcpos[col] == j*Work->fnr_curr */
  
  	fnrows,		/* number of rows in contribution block in F */
  	fncols,		/* number of columns in contribution block in F */
  	fnr_curr,	/* maximum # of rows in F (leading dimension) */
  	fnc_curr,	/* maximum # of columns in F */
  	fcurr_size,	/* current size of F */
  	fnrows_max,	/* max possible column-dimension (max # of rows) of F */
  	fncols_max,	/* max possible row-dimension (max # of columns) of F */
  	nb,
  	fnpiv,		/* number of pivots in F */
  	fnzeros,	/* number of explicit zero entries in LU block */
  	fscan_row,	/* where to start scanning rows of F in UMF_assemble */
  	fscan_col,	/* where to start scanning cols of F in UMF_assemble */
  	fnrows_new,	/* number of new row indices in F after pivot added */
  	fncols_new,	/* number of new col indices in F after pivot added */
  	pivrow_in_front,	/* true if current pivot row in Frows */
  	pivcol_in_front ;	/* true if current pivot column in Fcols */
  
      /* ----------------------------------------------------------------------
       * Current frontal matrix
       * ----------------------------------------------------------------------
       * The current frontal matrix is held as a single block of memory allocated
       * from the "tail" end of Numeric->Memory.  It is subdivided into four
       * parts: an LU block, an L block, a U block, and a C block.
       *
       * Let k = fnpiv, r = fnrows, and c = fncols for the following discussion.
       * Let dr = fnr_curr and dc = fnc_curr.  Note that r <= dr and c <= dc.
       *
       * The LU block is of dimension nb-by-nb.  The first k-by-k part holds the
       * "diagonal" part of the LU factors for these k pivot rows and columns.
       * The k pivot row and column indices in this part are Pivrow [0..k-1] and
       * Pivcol [0..k-1], respectively.
       *
       * The L block is of dimension dr-by-nb.  It holds the k pivot columns,
       * except for the leading k-by-k part in the LU block.  Only the leading
       * r-by-k part is in use.
       *
       * The U block is of dimension dc-by-nb.  It holds the k pivot rows,
       * except for the leading k-by-k part in the LU block.  It is stored in
       * row-oriented form.  Only the leading c-by-k part is in use.
       *
       * The C block is of dimension dr-by-dc.  It holds the current contribution
       * block.  Only the leading r-by-c part is in use.  The column indices in
       * the C block are Fcols [0..c-1], and the row indices are Frows [0..r-1].
       *
       * dr is always odd, to avoid bad cache behavior.
       */
  
  } WorkType ;
  
  
  /* -------------------------------------------------------------------------- */
  /* Symbolic */
  /* -------------------------------------------------------------------------- */
  
  /*
      This is is constructed by UMFPACK_symbolic, and is needed by UMFPACK_numeric
      to factor the matrix.
  */
  
  typedef struct	/* SymbolicType */
  {
  
      double
  	num_mem_usage_est,	/* estimated max Numeric->Memory size */
  	num_mem_size_est,	/* estimated final Numeric->Memory size */
  	peak_sym_usage,		/* peak Symbolic and SymbolicWork usage */
  	sym,			/* symmetry of pattern */
  	dnum_mem_init_usage,	/* min Numeric->Memory for UMF_kernel_init */
  	amd_lunz,	/* nz in LU for AMD, with symmetric pivoting */
  	lunz_bound ;	/* max nx in LU, for arbitrary row pivoting */
  
      Int valid,		/* set to SYMBOLIC_VALID, for validity check */
  	max_nchains,
  	nchains,
  	*Chain_start,
  	*Chain_maxrows,
  	*Chain_maxcols,
  	maxnrows,		/* largest number of rows in any front */
  	maxncols,		/* largest number of columns in any front */
  	*Front_npivcol,		/* Front_npivcol [j] = size of jth supercolumn*/
  	*Front_1strow,		/* first row index in front j */
  	*Front_leftmostdesc,	/* leftmost desc of front j */
  	*Front_parent,		/* super-column elimination tree */
  	*Cperm_init,		/* initial column ordering */
  	*Rperm_init,		/* initial row ordering */
  	*Cdeg, *Rdeg,
  	*Esize,
  	dense_row_threshold,
  	n1,			/* number of singletons */
  	nempty,			/* MIN (nempty_row, nempty_col) */
  	*Diagonal_map,		/* initial "diagonal" (after 2by2) */
  	esize,			/* size of Esize array */
  	nfr,
  	n_row, n_col,		/* matrix A is n_row-by-n_col */
  	nz,			/* nz of original matrix */
  	nb,			/* block size for BLAS 3 */
  	num_mem_init_usage,	/* min Numeric->Memory for UMF_kernel_init */
  	nempty_row, nempty_col,
  
  	strategy,
  	ordering,
  	fixQ,
  	prefer_diagonal,
  	nzaat,
  	nzdiag,
  	amd_dmax ;
  
  } SymbolicType ;
  
  
  /* -------------------------------------------------------------------------- */
  /* for debugging only: */
  /* -------------------------------------------------------------------------- */
  
  #include "umf_dump.h"
  
  /* -------------------------------------------------------------------------- */
  /* for statement coverage testing only: */
  /* -------------------------------------------------------------------------- */
  
  #ifdef TESTING
  
  /* for testing integer overflow: */
  #ifdef TEST_FOR_INTEGER_OVERFLOW
  #undef MAX_MARK
  #define MAX_MARK(n) (3*(n))
  #endif
  
  /* for testing out-of-memory conditions: */
  #define UMF_TCOV_TEST
  
  #ifndef EXTERN
  #define EXTERN extern
  #endif
  
  GLOBAL EXTERN int umf_fail, umf_fail_lo, umf_fail_hi ;
  GLOBAL EXTERN int umf_realloc_fail, umf_realloc_lo, umf_realloc_hi ;
  
  /* for testing malloc count: */
  #define UMF_MALLOC_COUNT
  
  #endif
  
  #endif