File size: 47,965 Bytes
10f2621 | 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 | /**
* @defgroup Mat Mat class
* @brief A Spare Matrix object.
*/
/**
* @file mat.h
* @ingroup Mat
* @brief Class Mat: a sparse matrix object.
* @author Michael Holst
* @note None
* @verbatim
* This class support several datastructures for sparse matrices.
* The following formats are supported (see below for descriptions):
*
* ZERO (the zero matrix; no storage at all)
* DRC (diag-row-col-YSMP variant)
* ROW (row-YSMP)
* COL (col-YSMP)
* SLU (sparse-LU)
* RLN (row-linked-list)
* CLN (col-linked-list)
* XLN (row-linked-list AND col-linked-list)
* RFL (row-wise dense matrix; i.e., C-style 2D array)
* CFL (col-wise dense matrix; i.e., FORTRAN-style 2D array)
*
* NOTE: This class is very efficient in both memory and operation
* complexity for LARGE sparse matrices. It also supports dense
* matrices (RFL and CFL formats).
*
* ANOTHER NOTE: Only ONE format is supported at a time; i.e.,
* you cannot simultaneously have a matrix in multiple formats
* maintained WITHIN that Mat datastructure. You must create a
* new one of the desired type, and copy the old one into it, if
* you want to have an existing matrix represented in a different
* format. (This is a change from the previous version of this
* library.)
*
* Formats: Here is a brief description of the suppored matrix formats:
*
* ZERO: . This is a zero matrix (no storage).
*
* DRC: \----- This is a symmetric storage
* |\---- format; only the upper triangle
* ||\--- need be stored in the case of
* |||\-- symmetry. However, we must assume
* ||||\- that the upper and lower triangles
* |||||\ have identical nonzero structures;
* the matrix MUST BE SQUARE.
* The diagonal entries are stored
* separately from the triangles.
*
* NOTE: In the case of symmetry,
* we simply point the lower triangle
* nonzeros A to the upper, as well as
* the IA and JA pointers.
*
* ROW: --------- This is a completely nonsymmetric
* --------- storage format; no provision is
* --------- made to handle storage savings
* --------- in the case of symmetry.
* No assumptions are made about the
* nonzero-structure of the matrix;
* the matrix can be non-square.
* Row-start pointers are kept in IA,
* and column indices are kept in JA.
* The diagonal entriecs are treated
* like any other row entry.
*
* COL: |||| This is a column-wise variant
* |||| of the ROW format. Col-start
* |||| pointers are kept in IA, and
* |||| row indices are kept in JA.
* ||||
* ||||
* ||||
* ||||
* ||||
*
* SLU: [LU] This format is determined by
* the particular sparse direct
* solver which we use to factor
* the matrix, and we do not use
* any information about the
* particular storage format.
*
* RLN: [linked-list] This is a row-wise linked list
* representation of the matrix.
* It is usually used to accumulate
* a matrix product for which there
* is no a priori knowledge about
* the resulting nonzero structure.
* It is usually converted into one
* of the other matrix formats before
* it is used for anything else, since
* linked-list implementations of
* operations such as matrix-vector
* products tend to be inefficient.
*
* CLN: [linked-list] This is a column-wise variant
* of the RLN format.
*
* XLN: [linked-list] Simultaneous RLN and CLN.
*
* RFL: --------- This is a dense row-wise storage
* --------- format. All nonzeros are stored;
* --------- no integer storage is used.
*
* CFL: |||| This is a dense col-wise storage
* |||| format. All nonzeros are stored;
* |||| no integer storage is used.
*
* Storage: Details of the DRC/ROW/COL format storage are as follows.
* The integer part IJA of the structure has the following layout:
*
* IJA = [ IA ; JA ]
*
* length(IA) = N+1 row(col) start pointers into JA/A
* length(JA) = NZ col(row) indices for each row(col)
* ------------------------
* length(IJA) = N+1+NZ
*
* which is a DRC, ROW, or COL pointer structure for a matrix.
* The IA part of the array points into the JA portion of the array
* for the beginning of each row (or column) left-to-right
* (or top-to-bottom).
*
* The JA portion then contains the column (or row) indices for the
* corresponding entries in that row (or column), ordered
* left-to-right (or top to bottom).
*
* The corresponding array of the actual nonzeros in the case of
* the DRC style format has the form:
*
* A = [ diag ; offU ; offL ]
*
* length(diag) = N (diag)
* length(offU) = NZ (upper-triang)
* length(offL) = NZ (lower-triang, or null if symmetric)
* -----------------------
* length(A) = N+2*NZ (or N+NZ if symmetric)
*
* In the case of ROW or COL, the matrix A is simply a row-wise or
* col-wise ordering of all of the nozeros, with no special role
* played by the diagonal entries.
* @endverbatim
* @version $Id: mat.h,v 1.47 2010/08/12 05:18:35 fetk Exp $
*
* @attention
* @verbatim
*
* MC = < Manifold Code >
* Copyright (C) 1994-- Michael Holst
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @endverbatim
*/
#ifndef _MAT_H_
#define _MAT_H_
#include <mc/mc_base.h>
#include <mc/mtool.h>
#include <mc/slu.h>
/**
* @ingroup Mat
* @brief Contains public data memebers for Mat class
* @author Michael Holst
*/
struct sMat {
/** @brief SETUP (name, memory management, etc)
* character string name for this matrix */
char name[10];
/** @brief the memory manager */
Vmem *vmem;
/** @brief did i make vmem or was it inherited */
int iMadeVmem;
/**
* @brief PARAMETERS (storage format, symmetry, etc)
* @note possible format types of this matrix: \n
* 0 => ZERO (zero matrix; no structure at all) \n
* 1 => DRC (diag-row-col-YSMP variant) \n
* 2 => ROW (row-YSMP) \n
* 3 => COL (col-YSMP) \n
* 4 => SLU (sparse-LU) \n
* 5 => RLN (row-linked-list) \n
* 6 => CLN (col-linked-list) \n
* 7 => XLN (row-linked-list AND col-linked-list) \n
* 9 => RFL (row-wise dense matrix) \n
* 10 => CFL (col-wise dense matrix)
*/
MATformat format;
/**
* @brief possible states of this matrix format
* @note 0 => NULL (exists; shape fixed; no storage) \n
* 1 => ZERO (matrix storage available and zeroed) \n
* 2 => ASSEMBLED (matrix ready to use) \n
* 3 => FACTORED (matrix factored) (SLU only)
*/
MATstate state;
/**
* @brief symmetry keys for the matrix
* @note 0 => ISNOT (store all) \n
* 1 => IS (store upper tri) (DRC only) \n
* 2 => STRUC (store all, but can reuse int structs)
*/
MATsym sym;
/**
* @brief implicit diagonal block not stored.
* @note 0 => ISNOT (nothing implicit; everything stored) \n
* 1 => IS (implicit diagonal block not stored) \n
* \n\n
* If impl==1, then an implicit diagonal block is
* present but not stored; this is to avoid the
* extra log N-like storage requirement for storing
* the identity block in all prolongation matrices,
* but yet account for their impact when multiplying
* by prolongation and restriction matrices.
* \n\n
* The setting (impl==1) is valid ONLY for ROW and
* COL formats. Moreover, there are restrictions in
* the dimensions of these two formats to support
* the implicit identity; these are:
* \n
* ROW: numR >= numC (i.e., tall and skinny) \n
* COL: numR <= numC (i.e., short and fat)
*/
MATimpl impl;
/** @brief DIMENSIONS (row and col dimensions, nonzeros, etc)
* num of rows in the matrix */
int numR;
/** @brief DIMENSIONS (row and col dimensions, nonzeros, etc)
* num of cols (DRC REQUIRES numC=numR) */
int numC;
/** @brief DIMENSIONS (row and col dimensions, nonzeros, etc)
* num of nonzeros we are actually storing, counting
* the diagonal, the strict upper-triangle, and
* also the strict lower-triangle if we are
* actually storing the lower-triangle (sym=0). */
int numA;
/** @brief DIMENSIONS (row and col dimensions, nonzeros, etc)
* num of nonzeros we are actually storing in the
* strict upper-triangle of matrix. (DRC only) */
int numO;
/**
* @brief DIMENSIONS (row and col dimensions, nonzeros, etc)
* num of nonzeros we WOULD be storing if we ignored
* symmetry. (DRC only).
* @note The relationships between numZ/numA and numO are: \n
* non-DRC: numO = numZ = numA \n
* DRC-symmetric: numA = numR + numO, numZ = numA + numO\n
* DRC-non-symmetric: numA = numR + 2*numO, numZ = numA \n
*/
int numZ;
/** @brief DIMENSIONS (row and col dimensions, nonzeros, etc)
* num of boundary rows */
int numBR;
/** @brief DIMENSIONS (row and col dimensions, nonzeros, etc)
* num of boundary cols */
int numBC;
/** @brief MALLOC AREAS (high-order storage). Did I malloc IJA? */
int iMallocIJA;
/** @brief MALLOC AREAS (high-order storage). Did I malloc A? */
int iMallocA;
/** @brief MALLOC AREAS (high-order storage)
* integer structure [ IA ; JA ] */
int *IJA;
/** @brief MALLOC AREAS (high-order storage) \n
* packed nozeros: \n
* DRC: [ diag ; offU ; offL ] \n
* ROW: [ offU ] \n
* COL: [ offL ] \n
* RFL: [ everything; stored row-wise ] \n
* CFL: [ everything; stored col-wise ] */
double *A;
/** @brief MALLOC AREAS (high-order storage)
* boundary rows (optionally used) */
int *BR;
/** @brief MALLOC AREAS (high-order storage)
* boundary cols (optionally used) */
int *BC;
/** @brief ALIASES (pointers into the above malloc areas; low-order storage)
* pos in JA/offU/offL for row/col start */
int *IA;
/** @brief ALIASES (pointers into the above malloc areas; low-order storage)
* row/col indices for nonzeros in col/row */
int *JA;
/** @brief ALIASES (pointers into the above malloc areas; low-order storage)
* diagonal of the matrix */
double *diag;
/** @brief ALIASES (pointers into the above malloc areas; low-order storage)
* upper-triangle off-diag row-wise nonzeros */
double *offU;
/** @brief ALIASES (pointers into the above malloc areas; low-order storage)
* lower-triangle off-diag col-wise nonzeros */
double *offL;
/** @brief EXTERNAL SUPPORT (handles to other complex objects)
* Sparse LU factorization container object */
Slu *slu;
/** @brief EXTERNAL SUPPORT (handles to other complex objects)
* Vset object for linked list utilities and RLN */
Vset *lnkL;
/** @brief EXTERNAL SUPPORT (handles to other complex objects)
* Vset object for linked list utilities and CLN */
Vset *lnkU;
/** @brief EXTERNAL SUPPORT (handles to other complex objects)
* Support for XLN */
void *xln;
/** @brief EXTERNAL SUPPORT (handles to other complex objects)
* Support for XLN */
void *xlnt;
};
/**
* @ingroup Mat
* @brief Declaration of the Mat class as the Mat structure
* @author Michael Holst
* @return None
*/
typedef struct sMat Mat;
/*
* ***************************************************************************
* Class Mat: Inlineable methods (mat.c)
* ***************************************************************************
*/
#if !defined(VINLINE_BAM)
#else /* if defined(VINLINE_BAM) */
#endif /* if !defined(VINLINE_BAM) */
/**
* @ingroup Mat
* @brief The sparse matrix constructor.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c) \n
* This constructor only fixes the number of rows and columns
* in the matrix; the nonzero structure is not set.
* @return Pointer to a newly allocated (empty) sparse matrix
* @param vmem Memory management object
* @param name character string name for this matrix
* @param pnumR num of rows in the matrix
* @param pnumC num of cols (DRC REQUIRES numC=numR)
*/
VEXTERNC Mat* Mat_ctor(Vmem *vmem, const char *name, int pnumR, int pnumC);
/**
* @ingroup Mat
* @brief The sparse matrix destructor.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c) \n
* This destructor does the reverse of Mat_ctor, and if
* necessary first reverses Mat_initStructure
* (or Mat_copyStructure). I.e., if necessary,
* it first frees the large integer and real arrays created
* by Mat_initStructure or Mat_copyStructure, and then frees
* the Mat object itself at the last moment.
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_dtor(Mat **thee);
/**
* @ingroup Mat
* @brief Initialize the nonzero structure given structure information.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c) \n
* This routine actually does the storage creation for both the
* integer structure information arrays and the nonzero value
* arrays.
* @return None
* @param thee Pointer to the sparse matrix
* @param frmt format types of the sparse matrix
* @param sym symmetric types of the sparse matrix
* @param numO num of nonzeros we are actually storing in the
* strict upper-triangle of matrix. (DRC only)
* @param IJA integer structure [ IA ; JA ]
* @param A packed nozeros
*/
VEXTERNC void Mat_initStructure(Mat *thee,
MATformat frmt, MATsym sym, int numO, int *IJA, double *A);
/**
* @ingroup Mat
* @brief Initialize the nonzero structure given structure information.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c) \n
* This routine actually does the storage creation for both the
* integer structure information arrays and the nonzero value
* arrays.
* @return None
* @param thee Pointer to the sparse matrix
* @param model an input matrix
*/
VEXTERNC void Mat_copyStructure(Mat *thee, Mat *model);
/**
* @ingroup Mat
* @brief Kill the nonzero structure and structure information.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c) \n
* This routine does the reverse of Mat_initStructure
* (or Mat_copyStructure). It leaves only the information
* about the number of blocks, number of rows, and number of
* columns per block. I.e., what is left is only what was
* present after the initial call to Mat_ctor.
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_killStructure(Mat *thee);
/**
* @ingroup Mat
* @brief Return number of rows in the matrix
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return number of rows in the matrix
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int Mat_numR(Mat *thee);
/**
* @ingroup Mat
* @brief Return number of columns in the matrix
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return number of columns in the matrix
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int Mat_numC(Mat *thee);
/**
* @ingroup Mat
* @brief Return number of nonzeros we are actually storing.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return number of nonzeros we are actually storing.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int Mat_numA(Mat *thee);
/**
* @ingroup Mat
* @brief Return number of nonzeros we are actually storing
* which are located in upper (or lower) triangle.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return number of nonzeros we are actually storing
* which are located in upper (or lower) triangle.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int Mat_numO(Mat *thee);
/**
* @ingroup Mat
* @brief Return number of nonzeros we WOULD be storing if we were
* ignoring symmetry and storing all nonzeros.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return number of nonzeros we WOULD be storing if we were
* ignoring symmetry and storing all nonzeros.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int Mat_numZ(Mat *thee);
/**
* @ingroup Mat
* @brief Return the format
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the format
* @param thee Pointer to the sparse matrix
*/
VEXTERNC MATformat Mat_format(Mat *thee);
/**
* @ingroup Mat
* @brief Return the symmetry.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the symmetry.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC MATsym Mat_sym(Mat *thee);
/**
* @ingroup Mat
* @brief Return the state
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the state
* @param thee Pointer to the sparse matrix
*/
VEXTERNC MATstate Mat_state(Mat *thee);
/**
* @ingroup Mat
* @brief Return the impl.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the impl
* @param thee Pointer to the sparse matrix
*/
VEXTERNC MATimpl Mat_impl(Mat *thee);
/**
* @ingroup Mat
* @brief Set the format
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param format the sparse matrix format
*/
VEXTERNC void Mat_setFormat(Mat *thee, MATformat format);
/**
* @ingroup Mat
* @brief Set the symmetry
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param sym symmetric types of the sparse matrix
*/
VEXTERNC void Mat_setSym(Mat *thee, MATsym sym);
/**
* @ingroup Mat
* @brief Set the state
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param state possible states of the sparse matrix format
*/
VEXTERNC void Mat_setState(Mat *thee, MATstate state);
/**
* @ingroup Mat
* @brief Set the impl
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param impl implicit diagonal block not stored
*/
VEXTERNC void Mat_setImpl(Mat *thee, MATimpl impl);
/**
* @ingroup Mat
* @brief Return total number of INTEGER STORAGE LOCATIONS in the matrix.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return total number of INTEGER STORAGE LOCATIONS in the matrix.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int Mat_sizeIJA(Mat *thee);
/**
* @ingroup Mat
* @brief Return total number of REAL STORAGE LOCATIONS in the matrix.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return total number of REAL STORAGE LOCATIONS in the matrix.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int Mat_sizeA(Mat *thee);
/**
* @ingroup Mat
* @brief Return the integer structure IJA.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the integer structure IJA.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int *Mat_IJA(Mat *thee);
/**
* @ingroup Mat
* @brief Return the integer structure IA.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the integer structure IA.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int *Mat_IA(Mat *thee);
/**
* @ingroup Mat
* @brief Return the integer structure JA.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the integer structure JA.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int *Mat_JA(Mat *thee);
/**
* @ingroup Mat
* @brief Return the real structure A.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the real structure A
* @param thee Pointer to the sparse matrix
*/
VEXTERNC double *Mat_A(Mat *thee);
/**
* @ingroup Mat
* @brief Return the diagonal structure A.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the diagonal structure A.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC double *Mat_diag(Mat *thee);
/**
* @ingroup Mat
* @brief Return the upper-triangle structure A.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the upper-triangle structure A.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC double *Mat_offU(Mat *thee);
/**
* @ingroup Mat
* @brief Return the lower-triangle structure A.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return the lower-triangle structure A.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC double *Mat_offL(Mat *thee);
/**
* @ingroup Mat
* @brief Print the matrix as a DENSE matrix in MATLAB format.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_print(Mat *thee);
/**
* @ingroup Mat
* @brief Print the matrix as a SPARSE matrix in MATLAB format.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param fname the output sparse matrix name
* @param pflag 0 ==> write, 1 ==> append
*/
VEXTERNC void Mat_printSp(Mat *thee, char *fname, int pflag);
/**
* @ingroup Mat
* @brief Print the matrix as a DENSE matrix in MATLAB format,
* but first zero out any rows/cols corresponding to
* Dirichlet boundary points.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)\n
* This routine is useful for e.g. checking that Galerkin
* conditions hold for stiffness matrices. Removing the
* dirichlet equations is crucial; otherwise the Galerkin
* condition cannot hold. Note that the matrix (and the
* Galerkin coarse matrix) are then of course singular.
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_printNoD(Mat *thee);
/**
* @ingroup Mat
* @brief Print the matrix as a DENSE matrix in MATLAB format,
* but first zero out any rows/cols corresponding to
* Dirichlet boundary points.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)\n
* This routine is useful for e.g. checking that Galerkin
* conditions hold for stiffness matrices. Removing the
* dirichlet equations is crucial; otherwise the Galerkin
* condition cannot hold. Note that the matrix (and the
* Galerkin coarse matrix) are then of course singular.
* @return None
* @param thee Pointer to the sparse matrix
* @param fname the output sparse matrix name
* @param pflag index for write/append
*/
VEXTERNC void Mat_printSpNoD(Mat *thee, char *fname, int pflag);
/**
* @ingroup Mat
* @brief Clear the floating point storage for the sparse matrix.
* Also clear any sparse factorization storage.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)\n
* This is basically done in preparation for an accumulation as
* part of a matrix assembly, and before a new sparse factorization.
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_zero(Mat *thee);
/**
* @ingroup Mat
* @brief Set a value in a matrix.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param i the index for row
* @param j the index for column
* @param val the value of the sparse matrix element
*/
VEXTERNC void Mat_set(Mat *thee, int i, int j, double val);
/**
* @ingroup Mat
* @brief Add to a value in a matrix.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param i the index for row
* @param j the index for column
* @param val the value to be added on the sparse matrix element
*/
VEXTERNC void Mat_addTo(Mat *thee, int i, int j, double val);
/**
* @ingroup Mat
* @brief Set the boundary row and column information.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)\n
* key=0 ==> set pointers, key=1 ==> do a copy
* @return None
* @param thee Pointer to the sparse matrix
* @param numBR num of boundary rows
* @param numBC num of boundary columns
* @param BR boundary rows (optionally used)
* @param BC boundary columns
*/
VEXTERNC void Mat_buildBRC(Mat *thee, int numBR, int numBC, int *BR, int *BC);
/**
* @ingroup Mat
* @brief Apply the boundary row and column information.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_zeroBRC(Mat *thee);
/**
* @ingroup Mat
* @brief Place identity entries on diagonal of boundary row/col.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_diagBRC(Mat *thee);
/**
* @ingroup Mat
* @brief Enforce the Galerkin conditions algebraically.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param rmat R matrix which is stored column-wise (ROW-format)
* @param amat A matrix which is stored in one of three
* forms, namely, either row-wise (ROW), col-wise (COL), or by
* diagonal followed by upper-triangle row-wise and then by
* lower
* triangle columne-wise (DRC).
* @param pmat P matrix which is stored row-wise (ROW-format)
*/
VEXTERNC void Mat_galerkin(Mat *thee, Mat *rmat, Mat *amat, Mat *pmat);
/**
* @ingroup Mat
* @brief Make a decision about whether or not a sparse direct solver
* should be used in place of an iterative solver, based on the
* size of the system.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)\n
* This is obviously heuristic in nature; in general the cutoff
* size where iterative methods start to win is smaller in 3D.
* @return the decision about whether or not a sparse direct solver
* should be used in place of an iterative solver, based on
* the size of the system.
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int Mat_sluDirect(Mat *thee);
/**
* @ingroup Mat
* @brief Setup for a sparse LU factorization of matrix.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)\n
* Creates internal <ia,ja,a> storage which is later freed
* by Mat_sluDestroy. Also initializes the sparse direct
* library.
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_sluCreate(Mat *thee);
/**
* @ingroup Mat
* @brief Create the sparse LU factors for the system matrix.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC int Mat_sluFactor(Mat *thee);
/**
* @ingroup Mat
* @brief Performs a forward/backward solve using the sparse LU factors.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)\n
* This requires that Mat_sluFactor has been previously called.
* @return None
* @param thee Pointer to the sparse matrix
* @param key index for choosing NOTRANS or TRANS
* @param f the number of right-hand sides
* @param u solution pointer
*/
VEXTERNC int Mat_sluSolve(Mat *thee, int key, double *f, double *u);
/**
* @ingroup Mat
* @brief Destroy the sparse LU factors for the system matrix.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)\n
* This frees our <ia,ja,a> storage, and also the internal
* storage that was malloc'd by the sparse direct library.
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_sluDestroy(Mat *thee);
/**
* @ingroup Mat
* @brief Print the exact current malloc usage
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (mat.c)
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_memChk(Mat *thee);
/**
* @ingroup Mat
* @brief Copy a matrix.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat The source matrix
*/
VEXTERNC void Mat_copy(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from ROW to COL.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyROW2COL(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from COL to ROW.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyCOL2ROW(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from DRC to RLN.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyDRC2RLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from ROW to RLN.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyROW2RLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from COL to RLN.
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyCOL2RLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from RLN to ROW
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyRLN2ROW(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from DRC to CLN
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyDRC2CLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from ROW to CLN
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyROW2CLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from COL to CLN
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyCOL2CLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from CLN to COL
* @author Michael Holst
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyCLN2COL(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from CLN to RLN
* @authors Michael Holst and Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyCLN2RLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from RLN to CLN
* @authors Michael Holst and Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyRLN2CLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from DRC to XLN
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyDRC2XLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from ROW to XLN
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyROW2XLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from COL to XLN
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyCOL2XLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from RLN to XLN
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyRLN2XLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from CLN to XLN
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyCLN2XLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from XLN to DRC
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyXLN2DRC(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from XLN to ROW
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyXLN2ROW(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from XLN to COL
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyXLN2COL(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from XLN to RLN
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyXLN2RLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Copy a matrix from XLN to CLN
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param smat the source matrix
*/
VEXTERNC void Mat_copyXLN2CLN(Mat *thee, Mat *smat);
/**
* @ingroup Mat
* @brief Remove the boundary rows or columns from a matrix.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param key index for removing the boundary rows or columns from a matrix
*/
VEXTERNC void Mat_squeezeBRC(Mat *thee, int key);
/**
* @ingroup Mat
* @brief Raw copy of the nonzeros of X into Y.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c)
* @return None
* @param Y the object matrix
* @param X the source matrix
*/
VEXTERNC void Mat_copy2(Mat *Y, Mat *X);
/**
* @ingroup Mat
* @brief scalar times a Mat plus a Mat: Y += val*X.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matcopy.c) \n
* The function of this routine can be controlled using "key"
* @return None
* @param Y the output matrix
* @param X the source matrix
* @param val the coeficient for scaling matrix X
* @param key 0 ==> X and Y have the EXACT SAME nonzero structure (nZ).
* Very fast with no checking or temporary matrices\n
* 1 ==> The nZ of Y is a SUBSET of the nZ of X.
* Still fast but requires a few extra checks.\n
* 2 ==> X and Y have arbitrary nZ structure.
* Slowest requiring creation of a temporary link list.
*/
VEXTERNC void Mat_axpy(Mat *Y, Mat *X, double val, int key);
/**
* @ingroup Mat
* @brief Initialize the nonzero structure given structure information.
* @authors Stephen Bond and Michael Holst
* @note Class Mat: Non-inlineable methods (matln.c) \n
* This routine actually does the storage creation for all
* internal Vset, link arrays, and link pointer arrays.
* @return None
* @param thee Pointer to the sparse matrix
* @param frmt format types of the sparse matrix
* @param sym symmetric types of the sparse matrix
*/
VEXTERNC void Mat_initStructureLN(Mat *thee, MATformat frmt, MATsym sym);
/**
* @ingroup Mat
* @brief Kill the nonzero structure and structure information.
* @authors Stephen Bond and Michael Holst
* @note Class Mat: Non-inlineable methods (matln.c) \n
* This routine does the reverse of Mat_initStructureLN
* (or Mat_copyStructureLN). It leaves only the information
* about the number of blocks, number of rows, and number of
* columns per block. I.e., what is left is only what was
* present after the initial call to Mat_ctor.
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_killStructureLN(Mat *thee);
/**
* @ingroup Mat
* @brief Access the first element in the ROW or COL of an XLN.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matln.c) \n
* In the symmetric cases, we are just returning a pointer
* to the diagonal. In the nonsymmetric case, we are returning
* a pointer to the first element in the row or column. In
* the symmetric cases the columns are linked in reverse index
* ordering to save the storage of an additional pointer array.
* @return pointer to the diagonal element
* @param thee Pointer to the sparse matrix
* @param idx the index of array
* @param key 0 ==> return a ROW pointer\n
* 1 ==> return a COL pointer
*/
VEXTERNC LinkRC* Mat_accessXLN(Mat *thee, int idx, int key);
/**
* @ingroup Mat
* @brief Set or add a value to a doubly linked matrix entry array.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matln.c) \n
* This is a doubly linked variant of mContrib.
* @return None
* @param thee Pointer to the sparse matrix
* @param key 0 ==> Set the value\n
* 1 ==> Add the value
* @param i the location when traversing rowwise
* @param j the new inserted location when traversing rowwise
* @param val the contribution of the new inserted position
*/
VEXTERNC void Mat_contribXLN(Mat *thee, int key, int i, int j, double val);
/**
* @ingroup Mat
* @brief Set or add a value to a NOTSYM XLN matrix.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matln.c) \n
* This is a doubly linked variant of mContrib.
* @return None
* @param thee Pointer to the sparse matrix
* @param key 0 ==> Set the value\n
* 1 ==> Add the value
* @param i the location when traversing rowwise
* @param j the new inserted location when traversing rowwise
* @param val the contribution of the new inserted position
*/
VEXTERNC void Mat_contribNSYMXLN(Mat *thee, int key, int i, int j, double val);
/**
* @ingroup Mat
* @brief Set or add a value to a STRUC_SYM XLN matrix.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matln.c) \n
* This is a doubly linked variant of mContrib.
* @return None
* @param thee Pointer to the sparse matrix
* @param key 0 ==> Set the value\n
* 1 ==> Add the value
* @param i the location when traversing rowwise
* @param j the new inserted location when traversing rowwise
* @param val the contribution of the new inserted position
*/
VEXTERNC void Mat_contribSSYMXLN(Mat *thee, int key, int i, int j, double val);
/**
* @ingroup Mat
* @brief Set or add a value to a SYM XLN Matrix.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matln.c) \n
* This is a doubly linked variant of mContrib.
* @return None
* @param thee Pointer to the sparse matrix
* @param key 0 ==> Set the value\n
* 1 ==> Add the value
* @param i the location when traversing rowwise
* @param j the new inserted location when traversing rowwise
* @param val the contribution of the new inserted position
*/
VEXTERNC void Mat_contribSYMXLN(Mat *thee, int key, int i, int j, double val);
/**
* @ingroup Mat
* @brief Print an LN format matrix as a DENSE matrix in MATLAB format.
* @author Stephen Bond
* @note Class Mat: Non-inlineable methods (matln.c)
* @return None
* @param thee Pointer to the sparse matrix
*/
VEXTERNC void Mat_printLN(Mat *thee);
/**
* @ingroup Mat
* @brief Print an LN format matrix as a SPARSE matrix in MATLAB format.
* @authors Michael Holst and Stephen Bond
* @note Class Mat: Non-inlineable methods (matln.c)
* @return None
* @param thee Pointer to the sparse matrix
* @param fname the output matrix name
* @param pflag 0 ==> write, 1 ==> append
*/
VEXTERNC void Mat_printLNSp(Mat *thee, char *fname, int pflag);
#endif /* _MAT_H_ */
|