umfpack_zi_demo.out 55.2 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
UMFPACK V5.1 (May 31, 2007) demo: _zi_ version

UMFPACK:  Copyright (c) 2005-2006 by Timothy A. Davis.  All Rights Reserved.


UMFPACK License:

   UMFPACK is available under alternate licenses,
   contact T. Davis for details.

   Your use or distribution of UMFPACK or any modified version of
   UMFPACK implies that you agree to this License.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
   USA

   Permission is hereby granted to use or copy this program under the
   terms of the GNU LGPL, provided that the Copyright, this License,
   and the Availability of the original version is retained on all copies.
   User documentation of any code that uses this code or any modified
   version of this code must cite the Copyright, this License, the
   Availability note, and "Used by permission." Permission to modify
   the code and to distribute modified code is granted, provided the
   Copyright, this License, and the Availability note are retained,
   and a notice that the code was modified is included.

Availability: http://www.cise.ufl.edu/research/sparse/umfpack

UMFPACK V5.1.0 (May 31, 2007): OK

UMFPACK V5.1.0 (May 31, 2007), Control:
    Matrix entry defined as: double complex
    Int (generic integer) defined as: int

    0: print level: 5
    1: dense row parameter:    0.2
        "dense" rows have    > max (16, (0.2)*16*sqrt(n_col) entries)
    2: dense column parameter: 0.2
        "dense" columns have > max (16, (0.2)*16*sqrt(n_row) entries)
    3: pivot tolerance: 0.1
    4: block size for dense matrix kernels: 32
    5: strategy: 0 (auto)
    6: initial allocation ratio: 0.7
    7: max iterative refinement steps: 2
    12: 2-by-2 pivot tolerance: 0.01
    13: Q fixed during numerical factorization: 0 (auto)
    14: AMD dense row/col parameter:    10
       "dense" rows/columns have > max (16, (10)*sqrt(n)) entries
        Only used if the AMD ordering is used.
    15: diagonal pivot tolerance: 0.001
        Only used if diagonal pivoting is attempted.
    16: scaling: 1 (divide each row by sum of abs. values in each row)
    17: frontal matrix allocation ratio: 0.5
    18: drop tolerance: 0
    19: AMD and COLAMD aggressive absorption: 1 (yes)

    The following options can only be changed at compile-time:
    8: BLAS library used:  Fortran BLAS.  size of BLAS integer: 4
    9: compiled for ANSI C
    10: CPU timer is POSIX times ( ) routine.
    11: compiled for normal operation (debugging disabled)
    computer/operating system: Linux
    size of int: 4 UF_long: 8 Int: 4 pointer: 8 double: 8 Entry: 16 (in bytes)


b: dense vector, n = 5. 
    0 : (8 + 1i)
    1 : (45 - 5i)
    2 : (-3 - 2i)
    3 : (3 + 0i)
    4 : (19 + 2.2i)
    dense vector OK


A: triplet-form matrix, n_row = 5, n_col = 5 nz = 12. 
    0 : 0 0  (2 + 1i)
    1 : 4 4  (1 + 0.4i)
    2 : 1 0  (3 + 0.1i)
    3 : 1 2  (4 + 0.2i)
    4 : 2 1  (-1 - 1i)
    5 : 2 2  (-3 - 0.2i)
    6 : 0 1  (3 + 0i)
    7 : 1 4  (6 + 6i)
    8 : 2 3  (2 + 3i)
    9 : 3 2  (1 + 0i)
    10 : 4 1  (4 + 0.3i)
    11 : 4 2  (2 + 0.3i)
    triplet-form matrix OK


A: column-form matrix, n_row 5 n_col 5, nz = 12. 

    column 0: start: 0 end: 1 entries: 2
	row 0 : (2 + 1i)
	row 1 : (3 + 0.1i)

    column 1: start: 2 end: 4 entries: 3
	row 0 : (3 + 0i)
	row 2 : (-1 - 1i)
	row 4 : (4 + 0.3i)

    column 2: start: 5 end: 8 entries: 4
	row 1 : (4 + 0.2i)
	row 2 : (-3 - 0.2i)
	row 3 : (1 + 0i)
	row 4 : (2 + 0.3i)

    column 3: start: 9 end: 9 entries: 1
	row 2 : (2 + 3i)

    column 4: start: 10 end: 11 entries: 2
	row 1 : (6 + 6i)
	row 4 : (1 + 0.4i)
    column-form matrix OK


Symbolic factorization of A: Symbolic object: 
    matrix to be factorized:
	n_row: 5 n_col: 5
	number of entries: 12
    block size used for dense matrix kernels:   32
    strategy used:                              unsymmetric
    ordering used:                              colamd on A

    performn column etree postorder:            yes
    prefer diagonal pivoting (attempt P=Q):     no
    variable-size part of Numeric object:
	minimum initial size (Units): 90  (MBytes): 0.0
	estimated peak size (Units):  2542  (MBytes): 0.0
	estimated final size (Units): 25  (MBytes): 0.0
    symbolic factorization memory usage (Units): 151  (MBytes): 0.0
    frontal matrices / supercolumns:
	number of frontal chains: 1
	number of frontal matrices: 1
	largest frontal matrix row dimension: 3
	largest frontal matrix column dimension: 3

    Frontal chain: 0.  Frontal matrices 0 to 0
	Largest frontal matrix in Frontal chain: 3-by-3
	Front: 0  pivot cols: 3 (pivot columns 0 to 2)
	    pivot row candidates: 2 to 4
	    leftmost descendant: 0
	    1st new candidate row : 2
	    parent: (none)

Initial column permutation, Q1: permutation vector, n = 5. 
    0 : 3 
    1 : 2 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


Initial row permutation, P1: permutation vector, n = 5. 
    0 : 2 
    1 : 3 
    2 : 0 
    3 : 1 
    4 : 4 
    permutation vector OK

    Symbolic object:  OK


Numeric factorization of A: Numeric object:  
    n_row: 5  n_col: 5
    relative pivot tolerance used:              0.1
    relative symmetric pivot tolerance used:    0.001
    matrix scaled: yes (divided each row by sum abs value in each row)
    minimum sum (abs (rows of A)):              1.00000e+00
    maximum sum (abs (rows of A)):              1.93000e+01
    initial allocation parameter used:          0.7
    frontal matrix allocation parameter used:   0.5
    final total size of Numeric object (Units): 106
    final total size of Numeric object (MBytes): 0.0
    peak size of variable-size part (Units):    2527
    peak size of variable-size part (MBytes):   0.0
    largest actual frontal matrix size:         4
    memory defragmentations:                    1
    memory reallocations:                       1
    costly memory reallocations:                0
    entries in compressed pattern (L and U):    2
    number of nonzeros in L (excl diag):        4
    number of entries stored in L (excl diag):  2
    number of nonzeros in U (excl diag):        4
    number of entries stored in U (excl diag):  2
    factorization floating-point operations:    34
    number of nonzeros on diagonal of U:        5
    min abs. value on diagonal of U:            1.34629e-01
    max abs. value on diagonal of U:            1.77313e+00
    reciprocal condition number estimate:       7.59e-02

Scale factors applied via multiplication
Scale factors, Rs: dense vector, n = 5. 
    0 : (0.166667)
    1 : (0.0518135)
    2 : (0.0980392)
    3 : (1)
    4 : (0.125)
    dense vector OK


P: row permutation vector, n = 5. 
    0 : 2 
    1 : 3 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


Q: column permutation vector, n = 5. 
    0 : 3 
    1 : 2 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


L in Numeric object, in column-oriented compressed-pattern form:
    Diagonal entries are all equal to 1.0 (not stored)

    column 0:  length 0.

    column 1:  length 2.
	row 4 :  (0.207254 + 0.0103627i)
	row 3 :  (0.25 + 0.0375i)

    column 2:  add 1 entries.  length 1.  Start of Lchain.
	row 4 :  (0.379275 - 0.174093i)

    column 3:  length 1.
	row 4 :  (3.00161 + 1.2864i)

    column 4:  length 0.  Start of Lchain.


U in Numeric object, in row-oriented compressed-pattern form:
    Diagonal is stored separately.

    row 4:  length 0.  End of Uchain.

    row 3:  length 1.  End of Uchain.
	col 4 : (0.5 + 0.0375i)

    row 2:  length 1.
	col 4 : (0.5 + 0i)

    row 1:  length 0.  End of Uchain.

    row 1:  length 0.

    row 0:  length 2.
	col 1 :  (-0.294118 - 0.0196078i)
	col 4 :  (-0.0980392 - 0.0980392i)


diagonal of U: dense vector, n = 5. 
    0 : (0.196078 + 0.294118i)
    1 : (1 + 0i)
    2 : (0.333333 + 0.166667i)
    3 : (0.125 + 0.05i)
    4 : (-1.6422 - 0.668715i)
    dense vector OK

    Numeric object:  OK

UMFPACK V5.1.0 (May 31, 2007), Info:
    matrix entry defined as:          double complex
    Int (generic integer) defined as: int
    BLAS library used: Fortran BLAS.  size of BLAS integer: 4
    MATLAB:                           no.
    CPU timer:                        POSIX times ( ) routine.
    number of rows in matrix A:       5
    number of columns in matrix A:    5
    entries in matrix A:              12
    memory usage reported in:         8-byte Units
    size of int:                      4 bytes
    size of UF_long:                  8 bytes
    size of pointer:                  8 bytes
    size of numerical entry:          16 bytes

    strategy used:                    unsymmetric
    ordering used:                    colamd on A
    modify Q during factorization:    yes
    prefer diagonal pivoting:         no
    pivots with zero Markowitz cost:               2
    submatrix S after removing zero-cost pivots:
        number of "dense" rows:                    0
        number of "dense" columns:                 0
        number of empty rows:                      0
        number of empty columns                    0
        submatrix S square and diagonal preserved
    pattern of square submatrix S:
        number rows and columns                    3
        symmetry of nonzero pattern:               1.000000
        nz in S+S' (excl. diagonal):               4
        nz on diagonal of matrix S:                2
        fraction of nz on diagonal:                0.666667
    2-by-2 pivoting to place large entries on diagonal:
        # of small diagonal entries of S:          1
        # unmatched:                               0
        symmetry of P2*S:                          0.000000
        nz in P2*S+(P2*S)' (excl. diag.):          6
        nz on diagonal of P2*S:                    3
        fraction of nz on diag of P2*S:            1.000000
    symbolic factorization defragmentations:       0
    symbolic memory usage (Units):                 151
    symbolic memory usage (MBytes):                0.0
    Symbolic size (Units):                         52
    Symbolic size (MBytes):                        0
    symbolic factorization CPU time (sec):         0.00
    symbolic factorization wallclock time(sec):    0.00

    matrix scaled: yes (divided each row by sum of abs values in each row)
    minimum sum (abs (rows of A)):              1.00000e+00
    maximum sum (abs (rows of A)):              1.93000e+01

    symbolic/numeric factorization:      upper bound               actual      %
    variable-sized part of Numeric object:
        initial size (Units)                      90                   80    89%
        peak size (Units)                       2542                 2527    99%
        final size (Units)                        25                   21    84%
    Numeric final size (Units)                   113                  107    95%
    Numeric final size (MBytes)                  0.0                  0.0    95%
    peak memory usage (Units)                   2751                 2736    99%
    peak memory usage (MBytes)                   0.0                  0.0    99%
    numeric factorization flops          6.70000e+01          3.40000e+01    51%
    nz in L (incl diagonal)                       10                    9    90%
    nz in U (incl diagonal)                       10                    9    90%
    nz in L+U (incl diagonal)                     15                   13    87%
    largest front (# entries)                      9                    4    44%
    largest # rows in front                        3                    2    67%
    largest # columns in front                     3                    2    67%

    initial allocation ratio used:                 0.7
    # of forced updates due to frontal growth:     0
    nz in L (incl diagonal), if none dropped       9
    nz in U (incl diagonal), if none dropped       9
    number of small entries dropped                0
    nonzeros on diagonal of U:                     5
    min abs. value on diagonal of U:               1.35e-01
    max abs. value on diagonal of U:               1.77e+00
    estimate of reciprocal of condition number:    7.59e-02
    indices in compressed pattern:                 2
    numerical values stored in Numeric object:     9
    numeric factorization defragmentations:        1
    numeric factorization reallocations:           1
    costly numeric factorization reallocations:    0
    numeric factorization CPU time (sec):          0.00
    numeric factorization wallclock time (sec):    0.00

    solve flops:                                   1.02800e+03
    iterative refinement steps taken:              1
    iterative refinement steps attempted:          1
    sparse backward error omega1:                  5.28e-17
    sparse backward error omega2:                  0.00e+00
    solve CPU time (sec):                          0.00
    solve wall clock time (sec):                   0.00

    total symbolic + numeric + solve flops:        1.06200e+03


UMFPACK:  Copyright (c) 2005-2006 by Timothy A. Davis.  All Rights Reserved.

UMFPACK V5.1.0 (May 31, 2007): OK


x (solution of Ax=b): dense vector, n = 5. 
    0 : (0.121188 - 0.561001i)
    1 : (2.39887 + 0.666938i)
    2 : (3 + 0i)
    3 : (1.57395 - 1.52801i)
    4 : (2.3876 - 3.04245i)
    dense vector OK

maxnorm of residual: 1.77636e-15


UMFPACK:  Copyright (c) 2005-2006 by Timothy A. Davis.  All Rights Reserved.

UMFPACK V5.1.0 (May 31, 2007): OK

determinant: (-1.7814+ (2.3784)i) * 10^(2)

x (solution of Ax=b, solve is split into 3 steps): dense vector, n = 5. 
    0 : (0.121188 - 0.561001i)
    1 : (2.39887 + 0.666938i)
    2 : (3 + 0i)
    3 : (1.57395 - 1.52801i)
    4 : (2.3876 - 3.04245i)
    dense vector OK

maxnorm of residual: 1.77636e-14

UMFPACK V5.1.0 (May 31, 2007), Info:
    matrix entry defined as:          double complex
    Int (generic integer) defined as: int
    BLAS library used: Fortran BLAS.  size of BLAS integer: 4
    MATLAB:                           no.
    CPU timer:                        POSIX times ( ) routine.
    number of rows in matrix A:       5
    number of columns in matrix A:    5
    entries in matrix A:              12
    memory usage reported in:         8-byte Units
    size of int:                      4 bytes
    size of UF_long:                  8 bytes
    size of pointer:                  8 bytes
    size of numerical entry:          16 bytes

    strategy used:                    unsymmetric
    ordering used:                    colamd on A
    modify Q during factorization:    yes
    prefer diagonal pivoting:         no
    pivots with zero Markowitz cost:               2
    submatrix S after removing zero-cost pivots:
        number of "dense" rows:                    0
        number of "dense" columns:                 0
        number of empty rows:                      0
        number of empty columns                    0
        submatrix S square and diagonal preserved
    pattern of square submatrix S:
        number rows and columns                    3
        symmetry of nonzero pattern:               1.000000
        nz in S+S' (excl. diagonal):               4
        nz on diagonal of matrix S:                2
        fraction of nz on diagonal:                0.666667
    2-by-2 pivoting to place large entries on diagonal:
        # of small diagonal entries of S:          1
        # unmatched:                               0
        symmetry of P2*S:                          0.000000
        nz in P2*S+(P2*S)' (excl. diag.):          6
        nz on diagonal of P2*S:                    3
        fraction of nz on diag of P2*S:            1.000000
    symbolic factorization defragmentations:       0
    symbolic memory usage (Units):                 151
    symbolic memory usage (MBytes):                0.0
    Symbolic size (Units):                         52
    Symbolic size (MBytes):                        0
    symbolic factorization CPU time (sec):         0.00
    symbolic factorization wallclock time(sec):    0.00

    matrix scaled: yes (divided each row by sum of abs values in each row)
    minimum sum (abs (rows of A)):              1.00000e+00
    maximum sum (abs (rows of A)):              1.93000e+01

    symbolic/numeric factorization:      upper bound               actual      %
    variable-sized part of Numeric object:
        initial size (Units)                      90                   80    89%
        peak size (Units)                       2542                 2527    99%
        final size (Units)                        25                   21    84%
    Numeric final size (Units)                   113                  107    95%
    Numeric final size (MBytes)                  0.0                  0.0    95%
    peak memory usage (Units)                   2751                 2736    99%
    peak memory usage (MBytes)                   0.0                  0.0    99%
    numeric factorization flops          6.70000e+01          3.40000e+01    51%
    nz in L (incl diagonal)                       10                    9    90%
    nz in U (incl diagonal)                       10                    9    90%
    nz in L+U (incl diagonal)                     15                   13    87%
    largest front (# entries)                      9                    4    44%
    largest # rows in front                        3                    2    67%
    largest # columns in front                     3                    2    67%

    initial allocation ratio used:                 0.7
    # of forced updates due to frontal growth:     0
    nz in L (incl diagonal), if none dropped       9
    nz in U (incl diagonal), if none dropped       9
    number of small entries dropped                0
    nonzeros on diagonal of U:                     5
    min abs. value on diagonal of U:               1.35e-01
    max abs. value on diagonal of U:               1.77e+00
    estimate of reciprocal of condition number:    7.59e-02
    indices in compressed pattern:                 2
    numerical values stored in Numeric object:     9
    numeric factorization defragmentations:        1
    numeric factorization reallocations:           1
    costly numeric factorization reallocations:    0
    numeric factorization CPU time (sec):          0.00
    numeric factorization wallclock time (sec):    0.00

    solve flops:                                   4.80000e+02
    iterative refinement steps taken:              0
    iterative refinement steps attempted:          0
    sparse backward error omega1:                  7.82e-17
    sparse backward error omega2:                  0.00e+00
    solve CPU time (sec):                          0.00
    solve wall clock time (sec):                   0.00

    total symbolic + numeric + solve flops:        5.14000e+02


x (solution of A'x=b): dense vector, n = 5. 
    0 : (3.39246 + 0.13257i)
    1 : (0.31463 + 1.38626i)
    2 : (0.461538 + 0.692308i)
    3 : (-20.9089 - 1.55801i)
    4 : (9.04015 - 0.613724i)
    dense vector OK

maxnorm of residual: 4.52416e-15


changing A (1,4) to zero

modified A: column-form matrix, n_row 5 n_col 5, nz = 12. 

    column 0: start: 0 end: 1 entries: 2
	row 0 : (2 + 1i)
	row 1 : (3 + 0.1i)

    column 1: start: 2 end: 4 entries: 3
	row 0 : (3 + 0i)
	row 2 : (-1 - 1i)
	row 4 : (4 + 0.3i)

    column 2: start: 5 end: 8 entries: 4
	row 1 : (4 + 0.2i)
	row 2 : (-3 - 0.2i)
	row 3 : (1 + 0i)
	row 4 : (2 + 0.3i)

    column 3: start: 9 end: 9 entries: 1
	row 2 : (2 + 3i)

    column 4: start: 10 end: 11 entries: 2
	row 1 : (0 + 0i)
	row 4 : (1 + 0.4i)
    column-form matrix OK


Numeric factorization of modified A: Numeric object:  
    n_row: 5  n_col: 5
    relative pivot tolerance used:              0.1
    relative symmetric pivot tolerance used:    0.001
    matrix scaled: yes (divided each row by sum abs value in each row)
    minimum sum (abs (rows of A)):              1.00000e+00
    maximum sum (abs (rows of A)):              1.02000e+01
    initial allocation parameter used:          0.7
    frontal matrix allocation parameter used:   0.5
    final total size of Numeric object (Units): 104
    final total size of Numeric object (MBytes): 0.0
    peak size of variable-size part (Units):    2527
    peak size of variable-size part (MBytes):   0.0
    largest actual frontal matrix size:         4
    memory defragmentations:                    1
    memory reallocations:                       1
    costly memory reallocations:                0
    entries in compressed pattern (L and U):    2
    number of nonzeros in L (excl diag):        3
    number of entries stored in L (excl diag):  1
    number of nonzeros in U (excl diag):        4
    number of entries stored in U (excl diag):  2
    factorization floating-point operations:    17
    number of nonzeros on diagonal of U:        5
    min abs. value on diagonal of U:            1.34629e-01
    max abs. value on diagonal of U:            1.00000e+00
    reciprocal condition number estimate:       1.35e-01

Scale factors applied via multiplication
Scale factors, Rs: dense vector, n = 5. 
    0 : (0.166667)
    1 : (0.136986)
    2 : (0.0980392)
    3 : (1)
    4 : (0.125)
    dense vector OK


P: row permutation vector, n = 5. 
    0 : 2 
    1 : 3 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


Q: column permutation vector, n = 5. 
    0 : 3 
    1 : 2 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


L in Numeric object, in column-oriented compressed-pattern form:
    Diagonal entries are all equal to 1.0 (not stored)

    column 0:  length 0.

    column 1:  length 2.
	row 4 :  (0.547945 + 0.0273973i)
	row 3 :  (0.25 + 0.0375i)

    column 2:  add 1 entries.  length 1.  Start of Lchain.
	row 4 :  (1.00274 - 0.460274i)

    column 3:  length 0.  Start of Lchain.

    column 4:  length 0.  Start of Lchain.


U in Numeric object, in row-oriented compressed-pattern form:
    Diagonal is stored separately.

    row 4:  length 0.  End of Uchain.

    row 3:  length 1.  End of Uchain.
	col 4 : (0.5 + 0.0375i)

    row 2:  length 1.
	col 4 : (0.5 + 0i)

    row 1:  length 0.  End of Uchain.

    row 1:  length 0.

    row 0:  length 2.
	col 1 :  (-0.294118 - 0.0196078i)
	col 4 :  (-0.0980392 - 0.0980392i)


diagonal of U: dense vector, n = 5. 
    0 : (0.196078 + 0.294118i)
    1 : (1 + 0i)
    2 : (0.333333 + 0.166667i)
    3 : (0.125 + 0.05i)
    4 : (-0.50137 + 0.230137i)
    dense vector OK

    Numeric object:  OK

UMFPACK V5.1.0 (May 31, 2007), Info:
    matrix entry defined as:          double complex
    Int (generic integer) defined as: int
    BLAS library used: Fortran BLAS.  size of BLAS integer: 4
    MATLAB:                           no.
    CPU timer:                        POSIX times ( ) routine.
    number of rows in matrix A:       5
    number of columns in matrix A:    5
    entries in matrix A:              12
    memory usage reported in:         8-byte Units
    size of int:                      4 bytes
    size of UF_long:                  8 bytes
    size of pointer:                  8 bytes
    size of numerical entry:          16 bytes

    strategy used:                    unsymmetric
    ordering used:                    colamd on A
    modify Q during factorization:    yes
    prefer diagonal pivoting:         no
    pivots with zero Markowitz cost:               2
    submatrix S after removing zero-cost pivots:
        number of "dense" rows:                    0
        number of "dense" columns:                 0
        number of empty rows:                      0
        number of empty columns                    0
        submatrix S square and diagonal preserved
    pattern of square submatrix S:
        number rows and columns                    3
        symmetry of nonzero pattern:               1.000000
        nz in S+S' (excl. diagonal):               4
        nz on diagonal of matrix S:                2
        fraction of nz on diagonal:                0.666667
    2-by-2 pivoting to place large entries on diagonal:
        # of small diagonal entries of S:          1
        # unmatched:                               0
        symmetry of P2*S:                          0.000000
        nz in P2*S+(P2*S)' (excl. diag.):          6
        nz on diagonal of P2*S:                    3
        fraction of nz on diag of P2*S:            1.000000
    symbolic factorization defragmentations:       0
    symbolic memory usage (Units):                 151
    symbolic memory usage (MBytes):                0.0
    Symbolic size (Units):                         52
    Symbolic size (MBytes):                        0
    symbolic factorization CPU time (sec):         0.00
    symbolic factorization wallclock time(sec):    0.00

    matrix scaled: yes (divided each row by sum of abs values in each row)
    minimum sum (abs (rows of A)):              1.00000e+00
    maximum sum (abs (rows of A)):              1.02000e+01

    symbolic/numeric factorization:      upper bound               actual      %
    variable-sized part of Numeric object:
        initial size (Units)                      90                   80    89%
        peak size (Units)                       2542                 2527    99%
        final size (Units)                        25                   19    76%
    Numeric final size (Units)                   113                  105    93%
    Numeric final size (MBytes)                  0.0                  0.0    93%
    peak memory usage (Units)                   2751                 2736    99%
    peak memory usage (MBytes)                   0.0                  0.0    99%
    numeric factorization flops          6.70000e+01          1.70000e+01    25%
    nz in L (incl diagonal)                       10                    8    80%
    nz in U (incl diagonal)                       10                    9    90%
    nz in L+U (incl diagonal)                     15                   12    80%
    largest front (# entries)                      9                    4    44%
    largest # rows in front                        3                    2    67%
    largest # columns in front                     3                    2    67%

    initial allocation ratio used:                 0.7
    # of forced updates due to frontal growth:     0
    nz in L (incl diagonal), if none dropped       8
    nz in U (incl diagonal), if none dropped       9
    number of small entries dropped                0
    nonzeros on diagonal of U:                     5
    min abs. value on diagonal of U:               1.35e-01
    max abs. value on diagonal of U:               1.00e+00
    estimate of reciprocal of condition number:    1.35e-01
    indices in compressed pattern:                 2
    numerical values stored in Numeric object:     8
    numeric factorization defragmentations:        1
    numeric factorization reallocations:           1
    costly numeric factorization reallocations:    0
    numeric factorization CPU time (sec):          0.00
    numeric factorization wallclock time (sec):    0.00

    solve flops:                                   5.15000e+02
    iterative refinement steps taken:              0
    iterative refinement steps attempted:          0
    sparse backward error omega1:                  6.01e-17
    sparse backward error omega2:                  0.00e+00
    solve CPU time (sec):                          0.00
    solve wall clock time (sec):                   0.00

    total symbolic + numeric + solve flops:        5.32000e+02


x (with modified A): dense vector, n = 5. 
    0 : (10.9256 - 2.23085i)
    1 : (-5.36071 - 1.82131i)
    2 : (3 + 0i)
    3 : (-1.60191 - 1.88814i)
    4 : (32.7361 - 2.90097i)
    dense vector OK

maxnorm of residual: 4.66294e-15

changing real part of A (0,0) from 2 to 2
changing real part of A (1,0) from 3 to 2
changing real part of A (0,1) from 3 to 13
changing real part of A (2,1) from -1 to 7
changing real part of A (4,1) from 4 to 10
changing real part of A (1,2) from 4 to 23
changing real part of A (2,2) from -3 to 15
changing real part of A (3,2) from 1 to 18
changing real part of A (4,2) from 2 to 18
changing real part of A (2,3) from 2 to 30
changing real part of A (1,4) from 0 to 39
changing real part of A (4,4) from 1 to 37

completely modified A (same pattern): column-form matrix, n_row 5 n_col 5, nz = 12. 

    column 0: start: 0 end: 1 entries: 2
	row 0 : (2 + 1i)
	row 1 : (2 + 0.1i)

    column 1: start: 2 end: 4 entries: 3
	row 0 : (13 + 0i)
	row 2 : (7 - 1i)
	row 4 : (10 + 0.3i)

    column 2: start: 5 end: 8 entries: 4
	row 1 : (23 + 0.2i)
	row 2 : (15 - 0.2i)
	row 3 : (18 + 0i)
	row 4 : (18 + 0.3i)

    column 3: start: 9 end: 9 entries: 1
	row 2 : (30 + 3i)

    column 4: start: 10 end: 11 entries: 2
	row 1 : (39 + 0i)
	row 4 : (37 + 0.4i)
    column-form matrix OK


Saving symbolic object:

Freeing symbolic object:

Loading symbolic object:

Done loading symbolic object

Numeric factorization of completely modified A: Numeric object:  
    n_row: 5  n_col: 5
    relative pivot tolerance used:              0.1
    relative symmetric pivot tolerance used:    0.001
    matrix scaled: yes (divided each row by sum abs value in each row)
    minimum sum (abs (rows of A)):              1.60000e+01
    maximum sum (abs (rows of A)):              6.60000e+01
    initial allocation parameter used:          0.7
    frontal matrix allocation parameter used:   0.5
    final total size of Numeric object (Units): 106
    final total size of Numeric object (MBytes): 0.0
    peak size of variable-size part (Units):    2527
    peak size of variable-size part (MBytes):   0.0
    largest actual frontal matrix size:         4
    memory defragmentations:                    1
    memory reallocations:                       1
    costly memory reallocations:                0
    entries in compressed pattern (L and U):    2
    number of nonzeros in L (excl diag):        4
    number of entries stored in L (excl diag):  2
    number of nonzeros in U (excl diag):        4
    number of entries stored in U (excl diag):  2
    factorization floating-point operations:    34
    number of nonzeros on diagonal of U:        5
    min abs. value on diagonal of U:            1.39754e-01
    max abs. value on diagonal of U:            1.00000e+00
    reciprocal condition number estimate:       1.40e-01

Scale factors applied via multiplication
Scale factors, Rs: dense vector, n = 5. 
    0 : (0.0625)
    1 : (0.0155521)
    2 : (0.0177936)
    3 : (0.0555556)
    4 : (0.0151515)
    dense vector OK


P: row permutation vector, n = 5. 
    0 : 2 
    1 : 3 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


Q: column permutation vector, n = 5. 
    0 : 3 
    1 : 2 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


L in Numeric object, in column-oriented compressed-pattern form:
    Diagonal entries are all equal to 1.0 (not stored)

    column 0:  length 0.

    column 1:  length 2.
	row 4 :  (0.357698 + 0.00311042i)
	row 3 :  (0.272727 + 0.00454545i)

    column 2:  add 1 entries.  length 1.  Start of Lchain.
	row 4 :  (0.204044 - 0.0895801i)

    column 3:  length 1.
	row 4 :  (1.0818 - 0.0116951i)

    column 4:  length 0.  Start of Lchain.


U in Numeric object, in row-oriented compressed-pattern form:
    Diagonal is stored separately.

    row 4:  length 0.  End of Uchain.

    row 3:  length 1.  End of Uchain.
	col 4 : (0.151515 + 0.00454545i)

    row 2:  length 1.
	col 4 : (0.8125 + 0i)

    row 1:  length 0.  End of Uchain.

    row 1:  length 0.

    row 0:  length 2.
	col 1 :  (0.266904 - 0.00355872i)
	col 4 :  (0.124555 - 0.0177936i)


diagonal of U: dense vector, n = 5. 
    0 : (0.533808 + 0.0533808i)
    1 : (1 + 0i)
    2 : (0.125 + 0.0625i)
    3 : (0.560606 + 0.00606061i)
    4 : (-0.329747 + 0.0696386i)
    dense vector OK

    Numeric object:  OK

UMFPACK V5.1.0 (May 31, 2007), Info:
    matrix entry defined as:          double complex
    Int (generic integer) defined as: int
    BLAS library used: Fortran BLAS.  size of BLAS integer: 4
    MATLAB:                           no.
    CPU timer:                        POSIX times ( ) routine.
    number of rows in matrix A:       5
    number of columns in matrix A:    5
    entries in matrix A:              12
    memory usage reported in:         8-byte Units
    size of int:                      4 bytes
    size of UF_long:                  8 bytes
    size of pointer:                  8 bytes
    size of numerical entry:          16 bytes

    strategy used:                    unsymmetric
    ordering used:                    colamd on A
    modify Q during factorization:    yes
    prefer diagonal pivoting:         no
    pivots with zero Markowitz cost:               2
    submatrix S after removing zero-cost pivots:
        number of "dense" rows:                    0
        number of "dense" columns:                 0
        number of empty rows:                      0
        number of empty columns                    0
        submatrix S square and diagonal preserved
    pattern of square submatrix S:
        number rows and columns                    3
        symmetry of nonzero pattern:               1.000000
        nz in S+S' (excl. diagonal):               4
        nz on diagonal of matrix S:                2
        fraction of nz on diagonal:                0.666667
    2-by-2 pivoting to place large entries on diagonal:
        # of small diagonal entries of S:          1
        # unmatched:                               0
        symmetry of P2*S:                          0.000000
        nz in P2*S+(P2*S)' (excl. diag.):          6
        nz on diagonal of P2*S:                    3
        fraction of nz on diag of P2*S:            1.000000
    symbolic factorization defragmentations:       0
    symbolic memory usage (Units):                 151
    symbolic memory usage (MBytes):                0.0
    Symbolic size (Units):                         52
    Symbolic size (MBytes):                        0
    symbolic factorization CPU time (sec):         0.00
    symbolic factorization wallclock time(sec):    0.00

    matrix scaled: yes (divided each row by sum of abs values in each row)
    minimum sum (abs (rows of A)):              1.60000e+01
    maximum sum (abs (rows of A)):              6.60000e+01

    symbolic/numeric factorization:      upper bound               actual      %
    variable-sized part of Numeric object:
        initial size (Units)                      90                   80    89%
        peak size (Units)                       2542                 2527    99%
        final size (Units)                        25                   21    84%
    Numeric final size (Units)                   113                  107    95%
    Numeric final size (MBytes)                  0.0                  0.0    95%
    peak memory usage (Units)                   2751                 2736    99%
    peak memory usage (MBytes)                   0.0                  0.0    99%
    numeric factorization flops          6.70000e+01          3.40000e+01    51%
    nz in L (incl diagonal)                       10                    9    90%
    nz in U (incl diagonal)                       10                    9    90%
    nz in L+U (incl diagonal)                     15                   13    87%
    largest front (# entries)                      9                    4    44%
    largest # rows in front                        3                    2    67%
    largest # columns in front                     3                    2    67%

    initial allocation ratio used:                 0.7
    # of forced updates due to frontal growth:     0
    nz in L (incl diagonal), if none dropped       9
    nz in U (incl diagonal), if none dropped       9
    number of small entries dropped                0
    nonzeros on diagonal of U:                     5
    min abs. value on diagonal of U:               1.40e-01
    max abs. value on diagonal of U:               1.00e+00
    estimate of reciprocal of condition number:    1.40e-01
    indices in compressed pattern:                 2
    numerical values stored in Numeric object:     9
    numeric factorization defragmentations:        1
    numeric factorization reallocations:           1
    costly numeric factorization reallocations:    0
    numeric factorization CPU time (sec):          0.00
    numeric factorization wallclock time (sec):    0.00

    solve flops:                                   5.23000e+02
    iterative refinement steps taken:              0
    iterative refinement steps attempted:          0
    sparse backward error omega1:                  8.05e-17
    sparse backward error omega2:                  0.00e+00
    solve CPU time (sec):                          0.00
    solve wall clock time (sec):                   0.00

    total symbolic + numeric + solve flops:        5.57000e+02


x (with completely modified A): dense vector, n = 5. 
    0 : (7.56307 - 3.68974i)
    1 : (-0.831991 + 0.0627998i)
    2 : (0.166667 + 0i)
    3 : (-0.00206892 - 0.107735i)
    4 : (0.658245 + 0.0407649i)
    dense vector OK

maxnorm of residual: 9.10383e-15


C (transpose of A): column-form matrix, n_row 5 n_col 5, nz = 12. 

    column 0: start: 0 end: 1 entries: 2
	row 0 : (2 - 1i)
	row 1 : (13 + 0i)

    column 1: start: 2 end: 4 entries: 3
	row 0 : (2 - 0.1i)
	row 2 : (23 - 0.2i)
	row 4 : (39 + 0i)

    column 2: start: 5 end: 7 entries: 3
	row 1 : (7 + 1i)
	row 2 : (15 + 0.2i)
	row 3 : (30 - 3i)

    column 3: start: 8 end: 8 entries: 1
	row 2 : (18 + 0i)

    column 4: start: 9 end: 11 entries: 3
	row 1 : (10 - 0.3i)
	row 2 : (18 - 0.3i)
	row 4 : (37 - 0.4i)
    column-form matrix OK


Symbolic factorization of C: Symbolic object: 
    matrix to be factorized:
	n_row: 5 n_col: 5
	number of entries: 12
    block size used for dense matrix kernels:   32
    strategy used:                              unsymmetric
    ordering used:                              colamd on A

    performn column etree postorder:            yes
    prefer diagonal pivoting (attempt P=Q):     no
    variable-size part of Numeric object:
	minimum initial size (Units): 91  (MBytes): 0.0
	estimated peak size (Units):  2543  (MBytes): 0.0
	estimated final size (Units): 26  (MBytes): 0.0
    symbolic factorization memory usage (Units): 151  (MBytes): 0.0
    frontal matrices / supercolumns:
	number of frontal chains: 1
	number of frontal matrices: 1
	largest frontal matrix row dimension: 3
	largest frontal matrix column dimension: 3

    Frontal chain: 0.  Frontal matrices 0 to 0
	Largest frontal matrix in Frontal chain: 3-by-3
	Front: 0  pivot cols: 3 (pivot columns 0 to 2)
	    pivot row candidates: 2 to 4
	    leftmost descendant: 0
	    1st new candidate row : 2
	    parent: (none)

Initial column permutation, Q1: permutation vector, n = 5. 
    0 : 3 
    1 : 2 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


Initial row permutation, P1: permutation vector, n = 5. 
    0 : 2 
    1 : 3 
    2 : 0 
    3 : 1 
    4 : 4 
    permutation vector OK

    Symbolic object:  OK


Get the contents of the Symbolic object for C:
(compare with umfpack_zi_report_symbolic output, above)
From the Symbolic object, C is of dimension 5-by-5
   with nz = 12, number of fronts = 1,
   number of frontal matrix chains = 1

Pivot columns in each front, and parent of each front:
    Front 0: parent front: -1 number of pivot cols: 3
        0-th pivot column is column 3 in original matrix
        1-th pivot column is column 2 in original matrix
        2-th pivot column is column 0 in original matrix

Note that the column ordering, above, will be refined
in the numeric factorization below.  The assignment of pivot
columns to frontal matrices will always remain unchanged.

Total number of pivot columns in frontal matrices: 3

Frontal matrix chains:
   Frontal matrices 0 to 0 are factorized in a single
        working array of size 3-by-3

Numeric factorization of C: Numeric object:  
    n_row: 5  n_col: 5
    relative pivot tolerance used:              0.1
    relative symmetric pivot tolerance used:    0.001
    matrix scaled: yes (divided each row by sum abs value in each row)
    minimum sum (abs (rows of A)):              5.10000e+00
    maximum sum (abs (rows of A)):              7.64000e+01
    initial allocation parameter used:          0.7
    frontal matrix allocation parameter used:   0.5
    final total size of Numeric object (Units): 107
    final total size of Numeric object (MBytes): 0.0
    peak size of variable-size part (Units):    2528
    peak size of variable-size part (MBytes):   0.0
    largest actual frontal matrix size:         4
    memory defragmentations:                    1
    memory reallocations:                       1
    costly memory reallocations:                0
    entries in compressed pattern (L and U):    2
    number of nonzeros in L (excl diag):        3
    number of entries stored in L (excl diag):  2
    number of nonzeros in U (excl diag):        5
    number of entries stored in U (excl diag):  2
    factorization floating-point operations:    34
    number of nonzeros on diagonal of U:        5
    min abs. value on diagonal of U:            2.40964e-01
    max abs. value on diagonal of U:            9.13625e-01
    reciprocal condition number estimate:       2.64e-01

Scale factors applied via multiplication
Scale factors, Rs: dense vector, n = 5. 
    0 : (0.196078)
    1 : (0.0319489)
    2 : (0.0133869)
    3 : (0.030303)
    4 : (0.013089)
    dense vector OK


P: row permutation vector, n = 5. 
    0 : 2 
    1 : 3 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


Q: column permutation vector, n = 5. 
    0 : 3 
    1 : 2 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


L in Numeric object, in column-oriented compressed-pattern form:
    Diagonal entries are all equal to 1.0 (not stored)

    column 0:  length 0.

    column 1:  length 1.
	row 4 :  (0.240091 + 0.0591529i)

    column 2:  add 1 entries.  length 1.  Start of Lchain.
	row 4 :  (0.847284 + 0.423642i)

    column 3:  length 1.
	row 4 :  (0.659838 - 0.0126577i)

    column 4:  length 0.  Start of Lchain.


U in Numeric object, in row-oriented compressed-pattern form:
    Diagonal is stored separately.

    row 4:  length 0.  End of Uchain.

    row 3:  length 1.  End of Uchain.
	col 4 : (0.510471 + 0i)

    row 2:  length 1.
	col 4 : (0.392157 - 0.0196078i)

    row 1:  length 0.  End of Uchain.

    row 1:  length 0.

    row 0:  length 3.
	col 1 :  (0.200803 + 0.00267738i)
	col 3 :  (0.240964 - 0.00401606i)
	col 4 :  (0.307898 - 0.00267738i)


diagonal of U: dense vector, n = 5. 
    0 : (0.240964 + 0i)
    1 : (0.909091 - 0.0909091i)
    2 : (0.392157 - 0.196078i)
    3 : (0.484293 - 0.0052356i)
    4 : (-0.677403 - 0.143059i)
    dense vector OK

    Numeric object:  OK


L (lower triangular factor of C): row-form matrix, n_row 5 n_col 5, nz = 8. 

    row 0: start: 0 end: 0 entries: 1
	column 0 : (1 + 0i)

    row 1: start: 1 end: 1 entries: 1
	column 1 : (1 + 0i)

    row 2: start: 2 end: 2 entries: 1
	column 2 : (1 + 0i)

    row 3: start: 3 end: 3 entries: 1
	column 3 : (1 + 0i)

    row 4: start: 4 end: 7 entries: 4
	column 1 : (0.240091 + 0.0591529i)
	column 2 : (0.847284 + 0.423642i)
	column 3 : (0.659838 - 0.0126577i)
	column 4 : (1 + 0i)
    row-form matrix OK


U (upper triangular factor of C): column-form matrix, n_row 5 n_col 5, nz = 10. 

    column 0: start: 0 end: 0 entries: 1
	row 0 : (0.240964 + 0i)

    column 1: start: 1 end: 2 entries: 2
	row 0 : (0.200803 + 0.00267738i)
	row 1 : (0.909091 - 0.0909091i)

    column 2: start: 3 end: 3 entries: 1
	row 2 : (0.392157 - 0.196078i)

    column 3: start: 4 end: 5 entries: 2
	row 0 : (0.240964 - 0.00401606i)
	row 3 : (0.484293 - 0.0052356i)

    column 4: start: 6 end: 9 entries: 4
	row 0 : (0.307898 - 0.00267738i)
	row 2 : (0.392157 - 0.0196078i)
	row 3 : (0.510471 + 0i)
	row 4 : (-0.677403 - 0.143059i)
    column-form matrix OK


P: permutation vector, n = 5. 
    0 : 2 
    1 : 3 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


Q: permutation vector, n = 5. 
    0 : 3 
    1 : 2 
    2 : 0 
    3 : 4 
    4 : 1 
    permutation vector OK


Scale factors: row i of A is to be multiplied by the ith scale factor
0: 0.196078
1: 0.0319489
2: 0.0133869
3: 0.030303
4: 0.013089

Converting L to triplet form, and printing it:

L, in triplet form: triplet-form matrix, n_row = 5, n_col = 5 nz = 8. 
    0 : 0 0  (1 + 0i)
    1 : 1 1  (1 + 0i)
    2 : 2 2  (1 + 0i)
    3 : 3 3  (1 + 0i)
    4 : 4 1  (0.240091 + 0.0591529i)
    5 : 4 2  (0.847284 + 0.423642i)
    6 : 4 3  (0.659838 - 0.0126577i)
    7 : 4 4  (1 + 0i)
    triplet-form matrix OK


Saving numeric object:

Freeing numeric object:

Loading numeric object:

Done loading numeric object
UMFPACK V5.1.0 (May 31, 2007), Info:
    matrix entry defined as:          double complex
    Int (generic integer) defined as: int
    BLAS library used: Fortran BLAS.  size of BLAS integer: 4
    MATLAB:                           no.
    CPU timer:                        POSIX times ( ) routine.
    number of rows in matrix A:       5
    number of columns in matrix A:    5
    entries in matrix A:              12
    memory usage reported in:         8-byte Units
    size of int:                      4 bytes
    size of UF_long:                  8 bytes
    size of pointer:                  8 bytes
    size of numerical entry:          16 bytes

    strategy used:                    unsymmetric
    ordering used:                    colamd on A
    modify Q during factorization:    yes
    prefer diagonal pivoting:         no
    pivots with zero Markowitz cost:               2
    submatrix S after removing zero-cost pivots:
        number of "dense" rows:                    0
        number of "dense" columns:                 0
        number of empty rows:                      0
        number of empty columns                    0
        submatrix S square and diagonal preserved
    pattern of square submatrix S:
        number rows and columns                    3
        symmetry of nonzero pattern:               1.000000
        nz in S+S' (excl. diagonal):               4
        nz on diagonal of matrix S:                2
        fraction of nz on diagonal:                0.666667
    2-by-2 pivoting to place large entries on diagonal:
        # of small diagonal entries of S:          1
        # unmatched:                               0
        symmetry of P2*S:                          0.000000
        nz in P2*S+(P2*S)' (excl. diag.):          6
        nz on diagonal of P2*S:                    3
        fraction of nz on diag of P2*S:            1.000000
    symbolic factorization defragmentations:       0
    symbolic memory usage (Units):                 151
    symbolic memory usage (MBytes):                0.0
    Symbolic size (Units):                         52
    Symbolic size (MBytes):                        0
    symbolic factorization CPU time (sec):         0.00
    symbolic factorization wallclock time(sec):    0.00

    matrix scaled: yes (divided each row by sum of abs values in each row)
    minimum sum (abs (rows of A)):              5.10000e+00
    maximum sum (abs (rows of A)):              7.64000e+01

    symbolic/numeric factorization:      upper bound               actual      %
    variable-sized part of Numeric object:
        initial size (Units)                      91                   81    89%
        peak size (Units)                       2543                 2528    99%
        final size (Units)                        26                   22    85%
    Numeric final size (Units)                   114                  108    95%
    Numeric final size (MBytes)                  0.0                  0.0    95%
    peak memory usage (Units)                   2752                 2737    99%
    peak memory usage (MBytes)                   0.0                  0.0    99%
    numeric factorization flops          6.70000e+01          3.40000e+01    51%
    nz in L (incl diagonal)                        9                    8    89%
    nz in U (incl diagonal)                       11                   10    91%
    nz in L+U (incl diagonal)                     15                   13    87%
    largest front (# entries)                      9                    4    44%
    largest # rows in front                        3                    2    67%
    largest # columns in front                     3                    2    67%

    initial allocation ratio used:                 0.7
    # of forced updates due to frontal growth:     0
    nz in L (incl diagonal), if none dropped       8
    nz in U (incl diagonal), if none dropped       10
    number of small entries dropped                0
    nonzeros on diagonal of U:                     5
    min abs. value on diagonal of U:               2.41e-01
    max abs. value on diagonal of U:               9.14e-01
    estimate of reciprocal of condition number:    2.64e-01
    indices in compressed pattern:                 2
    numerical values stored in Numeric object:     9
    numeric factorization defragmentations:        1
    numeric factorization reallocations:           1
    costly numeric factorization reallocations:    0
    numeric factorization CPU time (sec):          0.00
    numeric factorization wallclock time (sec):    0.00

    solve flops:                                   4.80000e+02
    iterative refinement steps taken:              0
    iterative refinement steps attempted:          0
    sparse backward error omega1:                  9.42e-17
    sparse backward error omega2:                  0.00e+00
    solve CPU time (sec):                          0.00
    solve wall clock time (sec):                   0.00

    total symbolic + numeric + solve flops:        5.14000e+02


x (solution of C'x=b): dense vector, n = 5. 
    0 : (7.56307 - 3.68974i)
    1 : (-0.831991 + 0.0627998i)
    2 : (0.166667 + 0i)
    3 : (-0.00206892 - 0.107735i)
    4 : (0.658245 + 0.0407649i)
    dense vector OK

maxnorm of residual: 4.88498e-15


Solving C'x=b again, using umfpack_zi_wsolve instead:
UMFPACK V5.1.0 (May 31, 2007), Info:
    matrix entry defined as:          double complex
    Int (generic integer) defined as: int
    BLAS library used: Fortran BLAS.  size of BLAS integer: 4
    MATLAB:                           no.
    CPU timer:                        POSIX times ( ) routine.
    number of rows in matrix A:       5
    number of columns in matrix A:    5
    entries in matrix A:              12
    memory usage reported in:         8-byte Units
    size of int:                      4 bytes
    size of UF_long:                  8 bytes
    size of pointer:                  8 bytes
    size of numerical entry:          16 bytes

    strategy used:                    unsymmetric
    ordering used:                    colamd on A
    modify Q during factorization:    yes
    prefer diagonal pivoting:         no
    pivots with zero Markowitz cost:               2
    submatrix S after removing zero-cost pivots:
        number of "dense" rows:                    0
        number of "dense" columns:                 0
        number of empty rows:                      0
        number of empty columns                    0
        submatrix S square and diagonal preserved
    pattern of square submatrix S:
        number rows and columns                    3
        symmetry of nonzero pattern:               1.000000
        nz in S+S' (excl. diagonal):               4
        nz on diagonal of matrix S:                2
        fraction of nz on diagonal:                0.666667
    2-by-2 pivoting to place large entries on diagonal:
        # of small diagonal entries of S:          1
        # unmatched:                               0
        symmetry of P2*S:                          0.000000
        nz in P2*S+(P2*S)' (excl. diag.):          6
        nz on diagonal of P2*S:                    3
        fraction of nz on diag of P2*S:            1.000000
    symbolic factorization defragmentations:       0
    symbolic memory usage (Units):                 151
    symbolic memory usage (MBytes):                0.0
    Symbolic size (Units):                         52
    Symbolic size (MBytes):                        0
    symbolic factorization CPU time (sec):         0.00
    symbolic factorization wallclock time(sec):    0.00

    matrix scaled: yes (divided each row by sum of abs values in each row)
    minimum sum (abs (rows of A)):              5.10000e+00
    maximum sum (abs (rows of A)):              7.64000e+01

    symbolic/numeric factorization:      upper bound               actual      %
    variable-sized part of Numeric object:
        initial size (Units)                      91                   81    89%
        peak size (Units)                       2543                 2528    99%
        final size (Units)                        26                   22    85%
    Numeric final size (Units)                   114                  108    95%
    Numeric final size (MBytes)                  0.0                  0.0    95%
    peak memory usage (Units)                   2752                 2737    99%
    peak memory usage (MBytes)                   0.0                  0.0    99%
    numeric factorization flops          6.70000e+01          3.40000e+01    51%
    nz in L (incl diagonal)                        9                    8    89%
    nz in U (incl diagonal)                       11                   10    91%
    nz in L+U (incl diagonal)                     15                   13    87%
    largest front (# entries)                      9                    4    44%
    largest # rows in front                        3                    2    67%
    largest # columns in front                     3                    2    67%

    initial allocation ratio used:                 0.7
    # of forced updates due to frontal growth:     0
    nz in L (incl diagonal), if none dropped       8
    nz in U (incl diagonal), if none dropped       10
    number of small entries dropped                0
    nonzeros on diagonal of U:                     5
    min abs. value on diagonal of U:               2.41e-01
    max abs. value on diagonal of U:               9.14e-01
    estimate of reciprocal of condition number:    2.64e-01
    indices in compressed pattern:                 2
    numerical values stored in Numeric object:     9
    numeric factorization defragmentations:        1
    numeric factorization reallocations:           1
    costly numeric factorization reallocations:    0
    numeric factorization CPU time (sec):          0.00
    numeric factorization wallclock time (sec):    0.00

    solve flops:                                   4.80000e+02
    iterative refinement steps taken:              0
    iterative refinement steps attempted:          0
    sparse backward error omega1:                  9.42e-17
    sparse backward error omega2:                  0.00e+00
    solve CPU time (sec):                          0.00
    solve wall clock time (sec):                   0.00

    total symbolic + numeric + solve flops:        5.14000e+02


x (solution of C'x=b): dense vector, n = 5. 
    0 : (7.56307 - 3.68974i)
    1 : (-0.831991 + 0.0627998i)
    2 : (0.166667 + 0i)
    3 : (-0.00206892 - 0.107735i)
    4 : (0.658245 + 0.0407649i)
    dense vector OK

maxnorm of residual: 4.88498e-15


umfpack_zi_demo complete.
Total time:  0.00 seconds (CPU time),  0.00 seconds (wallclock time)