-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathcolamd.cpp
More file actions
3480 lines (2787 loc) · 101 KB
/
colamd.cpp
File metadata and controls
3480 lines (2787 loc) · 101 KB
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
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/********************************************************************************************************************************************
Note
-------------
The version of lp_solve included in this repository has been modified as follows:
1. The original .c files have been modified to .cpp files to facilitate the use of c++ std library functions for abs, fabs, sqrt, etc.
2. The lp_solve specific file modifications can be found at https://github.com/NREL/ssc/commits/patch/lpsolve
The original version of lp_solve can be found at https://sourceforge.net/projects/lpsolve/
********************************************************************************************************************************************/
/* ========================================================================== */
/* === colamd/symamd - a sparse matrix column ordering algorithm ============ */
/* ========================================================================== */
/*
colamd: an approximate minimum degree column ordering algorithm,
for LU factorization of symmetric or unsymmetric matrices,
QR factorization, least squares, interior point methods for
linear programming problems, and other related problems.
symamd: an approximate minimum degree ordering algorithm for Cholesky
factorization of symmetric matrices.
Purpose:
Colamd computes a permutation Q such that the Cholesky factorization of
(AQ)'(AQ) has less fill-in and requires fewer floating point operations
than A'A. This also provides a good ordering for sparse partial
pivoting methods, P(AQ) = LU, where Q is computed prior to numerical
factorization, and P is computed during numerical factorization via
conventional partial pivoting with row interchanges. Colamd is the
column ordering method used in SuperLU, part of the ScaLAPACK library.
It is also available as built-in function in Matlab Version 6,
available from MathWorks, Inc. (http://www.mathworks.com). This
routine can be used in place of colmmd in Matlab. By default, the \
and / operators in Matlab perform a column ordering (using colmmd
or colamd) prior to LU factorization using sparse partial pivoting,
in the built-in Matlab lu(A) routine.
Symamd computes a permutation P of a symmetric matrix A such that the
Cholesky factorization of PAP' has less fill-in and requires fewer
floating point operations than A. Symamd constructs a matrix M such
that M'M has the same nonzero pattern of A, and then orders the columns
of M using colmmd. The column ordering of M is then returned as the
row and column ordering P of A.
Authors:
The authors of the code itself are Stefan I. Larimore and Timothy A.
Davis (davis@cise.ufl.edu), University of Florida. The algorithm was
developed in collaboration with John Gilbert, Xerox PARC, and Esmond
Ng, Oak Ridge National Laboratory.
Date:
May 4, 2001. Version 2.1.
Acknowledgements:
This work was supported by the National Science Foundation, under
grants DMS-9504974 and DMS-9803599.
Notice:
Copyright (c) 1998-2001 by the University of Florida.
All Rights Reserved.
THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY
EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
Permission is hereby granted to use or copy this program for any
purpose, provided the above notices are retained on all copies.
User documentation of any code that uses this code must cite the
Authors, the Copyright, and "Used by permission." If this code is
accessible from within Matlab, then typing "help colamd" and "help
symamd" must cite the Authors. Permission to modify the code and to
distribute modified code is granted, provided the above notices are
retained, and a notice that the code was modified is included with the
above copyright notice. You must also retain the Availability
information below, of the original version.
This software is provided free of charge.
Availability:
The colamd/symamd library is available at
http://www.cise.ufl.edu/research/sparse/colamd/
This is the http://www.cise.ufl.edu/research/sparse/colamd/colamd.c
file. It requires the colamd.h file. It is required by the colamdmex.c
and symamdmex.c files, for the Matlab interface to colamd and symamd.
Changes to the colamd library since Version 1.0 and 1.1:
No bugs were found in version 1.1. These changes merely add new
functionality.
* added the COLAMD_RECOMMENDED (nnz, n_row, n_col) macro.
* moved the output statistics, from A, to a separate output argument.
The arguments changed for the C-callable routines.
* added colamd_report and symamd_report.
* added a C-callable symamd routine. Formerly, symamd was only
available as a mexFunction from Matlab.
* added error-checking to symamd. Formerly, it assumed its input
was error-free.
* added the optional stats and knobs arguments to the symamd mexFunction
* deleted colamd_help. A help message is still available from
"help colamd" and "help symamd" in Matlab.
* deleted colamdtree.m and symamdtree.m. Now, colamd.m and symamd.m
also do the elimination tree post-ordering. The Version 1.1
colamd and symamd mexFunctions, which do not do the post-
ordering, are now visible as colamdmex and symamdmex from
Matlab. Essentialy, the post-ordering is now the default
behavior of colamd.m and symamd.m, to match the behavior of
colmmd and symmmd. The post-ordering is only available in the
Matlab interface, not the C-callable interface.
* made a slight change to the dense row/column detection in symamd,
to match the stated specifications.
Changes from Version 2.0 to 2.1:
* TRUE and FALSE are predefined on some systems, so they are defined
here only if not already defined.
* web site changed
* UNIX Makefile modified, to handle the case if "." is not in your path.
*/
/* ========================================================================== */
/* === Description of user-callable routines ================================ */
/* ========================================================================== */
/*
----------------------------------------------------------------------------
colamd_recommended:
----------------------------------------------------------------------------
C syntax:
#include "colamd.h"
int colamd_recommended (int nnz, int n_row, int n_col) ;
or as a C macro
#include "colamd.h"
Alen = COLAMD_RECOMMENDED (int nnz, int n_row, int n_col) ;
Purpose:
Returns recommended value of Alen for use by colamd. Returns -1
if any input argument is negative. The use of this routine
or macro is optional. Note that the macro uses its arguments
more than once, so be careful for side effects, if you pass
expressions as arguments to COLAMD_RECOMMENDED. Not needed for
symamd, which dynamically allocates its own memory.
Arguments (all input arguments):
int nnz ; Number of nonzeros in the matrix A. This must
be the same value as p [n_col] in the call to
colamd - otherwise you will get a wrong value
of the recommended memory to use.
int n_row ; Number of rows in the matrix A.
int n_col ; Number of columns in the matrix A.
----------------------------------------------------------------------------
colamd_set_defaults:
----------------------------------------------------------------------------
C syntax:
#include "colamd.h"
colamd_set_defaults (int knobs [COLAMD_KNOBS]) ;
Purpose:
Sets the default parameters. The use of this routine is optional.
Arguments:
double knobs [COLAMD_KNOBS] ; Output only.
Colamd: rows with more than (knobs [COLAMD_DENSE_ROW] * n_col)
entries are removed prior to ordering. Columns with more than
(knobs [COLAMD_DENSE_COL] * n_row) entries are removed prior to
ordering, and placed last in the output column ordering.
Symamd: uses only knobs [COLAMD_DENSE_ROW], which is knobs [0].
Rows and columns with more than (knobs [COLAMD_DENSE_ROW] * n)
entries are removed prior to ordering, and placed last in the
output ordering.
COLAMD_DENSE_ROW and COLAMD_DENSE_COL are defined as 0 and 1,
respectively, in colamd.h. Default values of these two knobs
are both 0.5. Currently, only knobs [0] and knobs [1] are
used, but future versions may use more knobs. If so, they will
be properly set to their defaults by the future version of
colamd_set_defaults, so that the code that calls colamd will
not need to change, assuming that you either use
colamd_set_defaults, or pass a (double *) NULL pointer as the
knobs array to colamd or symamd.
----------------------------------------------------------------------------
colamd:
----------------------------------------------------------------------------
C syntax:
#include "colamd.h"
int colamd (int n_row, int n_col, int Alen, int *A, int *p,
double knobs [COLAMD_KNOBS], int stats [COLAMD_STATS]) ;
Purpose:
Computes a column ordering (Q) of A such that P(AQ)=LU or
(AQ)'AQ=LL' have less fill-in and require fewer floating point
operations than factorizing the unpermuted matrix A or A'A,
respectively.
Returns:
TRUE (1) if successful, FALSE (0) otherwise.
Arguments:
int n_row ; Input argument.
Number of rows in the matrix A.
Restriction: n_row >= 0.
Colamd returns FALSE if n_row is negative.
int n_col ; Input argument.
Number of columns in the matrix A.
Restriction: n_col >= 0.
Colamd returns FALSE if n_col is negative.
int Alen ; Input argument.
Restriction (see note):
Alen >= 2*nnz + 6*(n_col+1) + 4*(n_row+1) + n_col
Colamd returns FALSE if these conditions are not met.
Note: this restriction makes an modest assumption regarding
the size of the two typedef's structures in colamd.h.
We do, however, guarantee that
Alen >= colamd_recommended (nnz, n_row, n_col)
or equivalently as a C preprocessor macro:
Alen >= COLAMD_RECOMMENDED (nnz, n_row, n_col)
will be sufficient.
int A [Alen] ; Input argument, undefined on output.
A is an integer array of size Alen. Alen must be at least as
large as the bare minimum value given above, but this is very
low, and can result in excessive run time. For best
performance, we recommend that Alen be greater than or equal to
colamd_recommended (nnz, n_row, n_col), which adds
nnz/5 to the bare minimum value given above.
On input, the row indices of the entries in column c of the
matrix are held in A [(p [c]) ... (p [c+1]-1)]. The row indices
in a given column c need not be in ascending order, and
duplicate row indices may be be present. However, colamd will
work a little faster if both of these conditions are met
(Colamd puts the matrix into this format, if it finds that the
the conditions are not met).
The matrix is 0-based. That is, rows are in the range 0 to
n_row-1, and columns are in the range 0 to n_col-1. Colamd
returns FALSE if any row index is out of range.
The contents of A are modified during ordering, and are
undefined on output.
int p [n_col+1] ; Both input and output argument.
p is an integer array of size n_col+1. On input, it holds the
"pointers" for the column form of the matrix A. Column c of
the matrix A is held in A [(p [c]) ... (p [c+1]-1)]. The first
entry, p [0], must be zero, and p [c] <= p [c+1] must hold
for all c in the range 0 to n_col-1. The value p [n_col] is
thus the total number of entries in the pattern of the matrix A.
Colamd returns FALSE if these conditions are not met.
On output, if colamd returns TRUE, the array p holds the column
permutation (Q, for P(AQ)=LU or (AQ)'(AQ)=LL'), where p [0] is
the first column index in the new ordering, and p [n_col-1] is
the last. That is, p [k] = j means that column j of A is the
kth pivot column, in AQ, where k is in the range 0 to n_col-1
(p [0] = j means that column j of A is the first column in AQ).
If colamd returns FALSE, then no permutation is returned, and
p is undefined on output.
double knobs [COLAMD_KNOBS] ; Input argument.
See colamd_set_defaults for a description.
int stats [COLAMD_STATS] ; Output argument.
Statistics on the ordering, and error status.
See colamd.h for related definitions.
Colamd returns FALSE if stats is not present.
stats [0]: number of dense or empty rows ignored.
stats [1]: number of dense or empty columns ignored (and
ordered last in the output permutation p)
Note that a row can become "empty" if it
contains only "dense" and/or "empty" columns,
and similarly a column can become "empty" if it
only contains "dense" and/or "empty" rows.
stats [2]: number of garbage collections performed.
This can be excessively high if Alen is close
to the minimum required value.
stats [3]: status code. < 0 is an error code.
> 1 is a warning or notice.
0 OK. Each column of the input matrix contained
row indices in increasing order, with no
duplicates.
1 OK, but columns of input matrix were jumbled
(unsorted columns or duplicate entries). Colamd
had to do some extra work to sort the matrix
first and remove duplicate entries, but it
still was able to return a valid permutation
(return value of colamd was TRUE).
stats [4]: highest numbered column that
is unsorted or has duplicate
entries.
stats [5]: last seen duplicate or
unsorted row index.
stats [6]: number of duplicate or
unsorted row indices.
-1 A is a null pointer
-2 p is a null pointer
-3 n_row is negative
stats [4]: n_row
-4 n_col is negative
stats [4]: n_col
-5 number of nonzeros in matrix is negative
stats [4]: number of nonzeros, p [n_col]
-6 p [0] is nonzero
stats [4]: p [0]
-7 A is too small
stats [4]: required size
stats [5]: actual size (Alen)
-8 a column has a negative number of entries
stats [4]: column with < 0 entries
stats [5]: number of entries in col
-9 a row index is out of bounds
stats [4]: column with bad row index
stats [5]: bad row index
stats [6]: n_row, # of rows of matrx
-10 (unused; see symamd.c)
-999 (unused; see symamd.c)
Future versions may return more statistics in the stats array.
Example:
See http://www.cise.ufl.edu/research/sparse/colamd/example.c
for a complete example.
To order the columns of a 5-by-4 matrix with 11 nonzero entries in
the following nonzero pattern
x 0 x 0
x 0 x x
0 x x 0
0 0 x x
x x 0 0
with default knobs and no output statistics, do the following:
#include "colamd.h"
#define ALEN COLAMD_RECOMMENDED (11, 5, 4)
int A [ALEN] = {1, 2, 5, 3, 5, 1, 2, 3, 4, 2, 4} ;
int p [ ] = {0, 3, 5, 9, 11} ;
int stats [COLAMD_STATS] ;
colamd (5, 4, ALEN, A, p, (double *) NULL, stats) ;
The permutation is returned in the array p, and A is destroyed.
----------------------------------------------------------------------------
symamd:
----------------------------------------------------------------------------
C syntax:
#include "colamd.h"
int symamd (int n, int *A, int *p, int *perm,
int knobs [COLAMD_KNOBS], int stats [COLAMD_STATS],
void (*allocate) (size_t, size_t), void (*release) (void *)) ;
Purpose:
The symamd routine computes an ordering P of a symmetric sparse
matrix A such that the Cholesky factorization PAP' = LL' remains
sparse. It is based on a column ordering of a matrix M constructed
so that the nonzero pattern of M'M is the same as A. The matrix A
is assumed to be symmetric; only the strictly lower triangular part
is accessed. You must pass your selected memory allocator (usually
calloc/free or mxCalloc/mxFree) to symamd, for it to allocate
memory for the temporary matrix M.
Returns:
TRUE (1) if successful, FALSE (0) otherwise.
Arguments:
int n ; Input argument.
Number of rows and columns in the symmetrix matrix A.
Restriction: n >= 0.
Symamd returns FALSE if n is negative.
int A [nnz] ; Input argument.
A is an integer array of size nnz, where nnz = p [n].
The row indices of the entries in column c of the matrix are
held in A [(p [c]) ... (p [c+1]-1)]. The row indices in a
given column c need not be in ascending order, and duplicate
row indices may be present. However, symamd will run faster
if the columns are in sorted order with no duplicate entries.
The matrix is 0-based. That is, rows are in the range 0 to
n-1, and columns are in the range 0 to n-1. Symamd
returns FALSE if any row index is out of range.
The contents of A are not modified.
int p [n+1] ; Input argument.
p is an integer array of size n+1. On input, it holds the
"pointers" for the column form of the matrix A. Column c of
the matrix A is held in A [(p [c]) ... (p [c+1]-1)]. The first
entry, p [0], must be zero, and p [c] <= p [c+1] must hold
for all c in the range 0 to n-1. The value p [n] is
thus the total number of entries in the pattern of the matrix A.
Symamd returns FALSE if these conditions are not met.
The contents of p are not modified.
int perm [n+1] ; Output argument.
On output, if symamd returns TRUE, the array perm holds the
permutation P, where perm [0] is the first index in the new
ordering, and perm [n-1] is the last. That is, perm [k] = j
means that row and column j of A is the kth column in PAP',
where k is in the range 0 to n-1 (perm [0] = j means
that row and column j of A are the first row and column in
PAP'). The array is used as a workspace during the ordering,
which is why it must be of length n+1, not just n.
double knobs [COLAMD_KNOBS] ; Input argument.
See colamd_set_defaults for a description.
int stats [COLAMD_STATS] ; Output argument.
Statistics on the ordering, and error status.
See colamd.h for related definitions.
Symamd returns FALSE if stats is not present.
stats [0]: number of dense or empty row and columns ignored
(and ordered last in the output permutation
perm). Note that a row/column can become
"empty" if it contains only "dense" and/or
"empty" columns/rows.
stats [1]: (same as stats [0])
stats [2]: number of garbage collections performed.
stats [3]: status code. < 0 is an error code.
> 1 is a warning or notice.
0 OK. Each column of the input matrix contained
row indices in increasing order, with no
duplicates.
1 OK, but columns of input matrix were jumbled
(unsorted columns or duplicate entries). Symamd
had to do some extra work to sort the matrix
first and remove duplicate entries, but it
still was able to return a valid permutation
(return value of symamd was TRUE).
stats [4]: highest numbered column that
is unsorted or has duplicate
entries.
stats [5]: last seen duplicate or
unsorted row index.
stats [6]: number of duplicate or
unsorted row indices.
-1 A is a null pointer
-2 p is a null pointer
-3 (unused, see colamd.c)
-4 n is negative
stats [4]: n
-5 number of nonzeros in matrix is negative
stats [4]: # of nonzeros (p [n]).
-6 p [0] is nonzero
stats [4]: p [0]
-7 (unused)
-8 a column has a negative number of entries
stats [4]: column with < 0 entries
stats [5]: number of entries in col
-9 a row index is out of bounds
stats [4]: column with bad row index
stats [5]: bad row index
stats [6]: n_row, # of rows of matrx
-10 out of memory (unable to allocate temporary
workspace for M or count arrays using the
"allocate" routine passed into symamd).
-999 internal error. colamd failed to order the
matrix M, when it should have succeeded. This
indicates a bug. If this (and *only* this)
error code occurs, please contact the authors.
Don't contact the authors if you get any other
error code.
Future versions may return more statistics in the stats array.
void * (*allocate) (size_t, size_t)
A pointer to a function providing memory allocation. The
allocated memory must be returned initialized to zero. For a
C application, this argument should normally be a pointer to
calloc. For a Matlab mexFunction, the routine mxCalloc is
passed instead.
void (*release) (size_t, size_t)
A pointer to a function that frees memory allocated by the
memory allocation routine above. For a C application, this
argument should normally be a pointer to free. For a Matlab
mexFunction, the routine mxFree is passed instead.
----------------------------------------------------------------------------
colamd_report:
----------------------------------------------------------------------------
C syntax:
#include "colamd.h"
colamd_report (int stats [COLAMD_STATS]) ;
Purpose:
Prints the error status and statistics recorded in the stats
array on the standard error output (for a standard C routine)
or on the Matlab output (for a mexFunction).
Arguments:
int stats [COLAMD_STATS] ; Input only. Statistics from colamd.
----------------------------------------------------------------------------
symamd_report:
----------------------------------------------------------------------------
C syntax:
#include "colamd.h"
symamd_report (int stats [COLAMD_STATS]) ;
Purpose:
Prints the error status and statistics recorded in the stats
array on the standard error output (for a standard C routine)
or on the Matlab output (for a mexFunction).
Arguments:
int stats [COLAMD_STATS] ; Input only. Statistics from symamd.
*/
/* ========================================================================== */
/* === Scaffolding code definitions ======================================== */
/* ========================================================================== */
/* Ensure that debugging is turned off: */
#ifndef NDEBUG
#define NDEBUG
#endif /* NDEBUG */
/*
Our "scaffolding code" philosophy: In our opinion, well-written library
code should keep its "debugging" code, and just normally have it turned off
by the compiler so as not to interfere with performance. This serves
several purposes:
(1) assertions act as comments to the reader, telling you what the code
expects at that point. All assertions will always be true (unless
there really is a bug, of course).
(2) leaving in the scaffolding code assists anyone who would like to modify
the code, or understand the algorithm (by reading the debugging output,
one can get a glimpse into what the code is doing).
(3) (gasp!) for actually finding bugs. This code has been heavily tested
and "should" be fully functional and bug-free ... but you never know...
To enable debugging, comment out the "#define NDEBUG" above. For a Matlab
mexFunction, you will also need to modify mexopts.sh to remove the -DNDEBUG
definition. The code will become outrageously slow when debugging is
enabled. To control the level of debugging output, set an environment
variable D to 0 (little), 1 (some), 2, 3, or 4 (lots). When debugging,
you should see the following message on the standard output:
colamd: debug version, D = 1 (THIS WILL BE SLOW!)
or a similar message for symamd. If you don't, then debugging has not
been enabled.
*/
/* ========================================================================== */
/* === Include files ======================================================== */
/* ========================================================================== */
#include "colamd.h"
#include <limits.h>
#ifdef MATLAB_MEX_FILE
#include "mex.h"
#include "matrix.h"
#else
#include <stdio.h>
#include <assert.h>
#endif /* MATLAB_MEX_FILE */
#ifdef FORTIFY
# include "lp_fortify.h"
#endif
/* ========================================================================== */
/* === Definitions ========================================================== */
/* ========================================================================== */
/* Routines are either PUBLIC (user-callable) or PRIVATE (not user-callable) */
#define PUBLIC
#define PRIVATE static
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
#define ONES_COMPLEMENT(r) (-(r)-1)
/* -------------------------------------------------------------------------- */
/* Change for version 2.1: define TRUE and FALSE only if not yet defined */
/* -------------------------------------------------------------------------- */
#ifndef TRUE
#define TRUE (1)
#endif
#ifndef FALSE
#define FALSE (0)
#endif
/* -------------------------------------------------------------------------- */
#define EMPTY (-1)
/* Row and column status */
#define ALIVE (0)
#define DEAD (-1)
/* Column status */
#define DEAD_PRINCIPAL (-1)
#define DEAD_NON_PRINCIPAL (-2)
/* Macros for row and column status update and checking. */
#define ROW_IS_DEAD(r) ROW_IS_MARKED_DEAD (Row[r].shared2.mark)
#define ROW_IS_MARKED_DEAD(row_mark) (row_mark < ALIVE)
#define ROW_IS_ALIVE(r) (Row [r].shared2.mark >= ALIVE)
#define COL_IS_DEAD(c) (Col [c].start < ALIVE)
#define COL_IS_ALIVE(c) (Col [c].start >= ALIVE)
#define COL_IS_DEAD_PRINCIPAL(c) (Col [c].start == DEAD_PRINCIPAL)
#define KILL_ROW(r) { Row [r].shared2.mark = DEAD ; }
#define KILL_PRINCIPAL_COL(c) { Col [c].start = DEAD_PRINCIPAL ; }
#define KILL_NON_PRINCIPAL_COL(c) { Col [c].start = DEAD_NON_PRINCIPAL ; }
/* ========================================================================== */
/* === Colamd reporting mechanism =========================================== */
/* ========================================================================== */
#ifdef MATLAB_MEX_FILE
/* use mexPrintf in a Matlab mexFunction, for debugging and statistics output */
#define PRINTF mexPrintf
/* In Matlab, matrices are 1-based to the user, but 0-based internally */
#define INDEX(i) ((i)+1)
#else
/* Use printf in standard C environment, for debugging and statistics output. */
/* Output is generated only if debugging is enabled at compile time, or if */
/* the caller explicitly calls colamd_report or symamd_report. */
#define PRINTF printf
/* In C, matrices are 0-based and indices are reported as such in *_report */
#define INDEX(i) (i)
#endif /* MATLAB_MEX_FILE */
/* ========================================================================== */
/* === Prototypes of PRIVATE routines ======================================= */
/* ========================================================================== */
PRIVATE int init_rows_cols
(
int n_row,
int n_col,
Colamd_Row Row [],
Colamd_Col Col [],
int A [],
int p [],
int stats [COLAMD_STATS]
) ;
PRIVATE void init_scoring
(
int n_row,
int n_col,
Colamd_Row Row [],
Colamd_Col Col [],
int A [],
int head [],
double knobs [COLAMD_KNOBS],
int *p_n_row2,
int *p_n_col2,
int *p_max_deg
) ;
PRIVATE int find_ordering
(
int n_row,
int n_col,
int Alen,
Colamd_Row Row [],
Colamd_Col Col [],
int A [],
int head [],
int n_col2,
int max_deg,
int pfree
) ;
PRIVATE void order_children
(
int n_col,
Colamd_Col Col [],
int p []
) ;
PRIVATE void detect_super_cols
(
#ifndef NDEBUG
int n_col,
Colamd_Row Row [],
#endif /* NDEBUG */
Colamd_Col Col [],
int A [],
int head [],
int row_start,
int row_length
) ;
PRIVATE int garbage_collection
(
int n_row,
int n_col,
Colamd_Row Row [],
Colamd_Col Col [],
int A [],
int *pfree
) ;
PRIVATE int clear_mark
(
int n_row,
Colamd_Row Row []
) ;
PRIVATE void print_report
(
const char *method,
int stats [COLAMD_STATS]
) ;
/* ========================================================================== */
/* === Debugging prototypes and definitions ================================= */
/* ========================================================================== */
#ifndef NDEBUG
/* colamd_debug is the *ONLY* global variable, and is only */
/* present when debugging */
PRIVATE int colamd_debug ; /* debug print level */
#define DEBUG0(params) { (void) PRINTF params ; }
#define DEBUG1(params) { if (colamd_debug >= 1) (void) PRINTF params ; }
#define DEBUG2(params) { if (colamd_debug >= 2) (void) PRINTF params ; }
#define DEBUG3(params) { if (colamd_debug >= 3) (void) PRINTF params ; }
#define DEBUG4(params) { if (colamd_debug >= 4) (void) PRINTF params ; }
#ifdef MATLAB_MEX_FILE
#define ASSERT(expression) (mxAssert ((expression), ""))
#else
#define ASSERT(expression) (assert (expression))
#endif /* MATLAB_MEX_FILE */
PRIVATE void colamd_get_debug /* gets the debug print level from getenv */
(
char *method
) ;
PRIVATE void debug_deg_lists
(
int n_row,
int n_col,
Colamd_Row Row [],
Colamd_Col Col [],
int head [],
int min_score,
int should,
int max_deg
) ;
PRIVATE void debug_mark
(
int n_row,
Colamd_Row Row [],
int tag_mark,
int max_mark
) ;
PRIVATE void debug_matrix
(
int n_row,
int n_col,
Colamd_Row Row [],
Colamd_Col Col [],
int A []
) ;
PRIVATE void debug_structures
(
int n_row,
int n_col,
Colamd_Row Row [],
Colamd_Col Col [],
int A [],
int n_col2
) ;
#else /* NDEBUG */
/* === No debugging ========================================================= */
#define DEBUG0(params) ;
#define DEBUG1(params) ;
#define DEBUG2(params) ;
#define DEBUG3(params) ;
#define DEBUG4(params) ;
#define ASSERT(expression) ((void) 0)
#endif /* NDEBUG */
/* ========================================================================== */
/* ========================================================================== */
/* === USER-CALLABLE ROUTINES: ============================================== */
/* ========================================================================== */
/* ========================================================================== */
/* === colamd_recommended =================================================== */
/* ========================================================================== */
/*
The colamd_recommended routine returns the suggested size for Alen. This
value has been determined to provide good balance between the number of
garbage collections and the memory requirements for colamd. If any
argument is negative, a -1 is returned as an error condition. This
function is also available as a macro defined in colamd.h, so that you
can use it for a statically-allocated array size.
*/
PUBLIC int colamd_recommended /* returns recommended value of Alen. */
(
/* === Parameters ======================================================= */
int nnz, /* number of nonzeros in A */
int n_row, /* number of rows in A */
int n_col /* number of columns in A */
)
{
return (COLAMD_RECOMMENDED (nnz, n_row, n_col)) ;
}
/* ========================================================================== */
/* === colamd_set_defaults ================================================== */
/* ========================================================================== */
/*
The colamd_set_defaults routine sets the default values of the user-
controllable parameters for colamd:
knobs [0] rows with knobs[0]*n_col entries or more are removed
prior to ordering in colamd. Rows and columns with
knobs[0]*n_col entries or more are removed prior to
ordering in symamd and placed last in the output
ordering.
knobs [1] columns with knobs[1]*n_row entries or more are removed
prior to ordering in colamd, and placed last in the
column permutation. Symamd ignores this knob.
knobs [2..19] unused, but future versions might use this
*/
PUBLIC void colamd_set_defaults
(