KmlIssGcrInit?I
初始化数据结构,并将用户提供的系数矩阵关联到求解系统中,初始化单机版的GCR方法时使用完整的CSR格式。
接口定义
C Interface:
int KmlIssGcrInitSI(KmlSolverTask **handle, int n, const float *a, const int *ja, const int *ia);
int KmlIssGcrInitDI(KmlSolverTask **handle, int n, const double *a, const int *ja, const int *ia);
参数
| 参数名 | 类型 | 描述 | 输入/输出 | 
|---|---|---|---|
| handle | KmlSolverTask ** | 求解器句柄,handle不可为空指针。 | 输入/输出 | 
| n | int | n为矩阵A的维度。 | 输入 | 
| a | 
 | a为维度为非零元素的个数的数组,a[i]为第i个非零元的值。该数组的生命周期与handle相同。 | 输入 | 
| ja | int * | ja为维度为非零元素的个数的数组,ja[i]为第i个非零元的列号。该数组的生命周期与handle相同。 | 输入 | 
| ia | int * | ia为n+1维数组,ia[i]为第i行第一个非零元在所有非零元中的索引。该数组的生命周期与handle相同。 | 输入 | 
返回值
| 返回值 | 类型 | 描述 | 
|---|---|---|
| KMLSS_NO_ERROR | int | 正常执行。 | 
| KMLSS_NULL_ARGUMENT | int | {handle, a, ja, ia}中存在空参数。 | 
| KMLSS_BAD_N | int | 参数n不是正整数。 | 
| KMLSS_NO_MEMORY | int | 内存不足。 | 
依赖
#include "kml_iss.h"
示例
C Interface:
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | KmlSolverTask *handle; int ierr; int n = 8; double a[26] = {1.0, 1.0, 2.0, 9.0, 2.0, 1.0, -3.0, 2.0, 3.0, 2.0, 1.0, 1.0, 9.0, -5.0, 2.0, 6.0, 1.0, -3.0, 1.0, 4.0, 1.0, -5.0, 7.0, 2.0,1.0, 2.0}; int ja[26] = {0, 3, 4, 1, 2, 3, 5, 1, 2, 7, 0, 1, 3, 6, 0, 4, 5, 1, 4, 5, 7, 3, 6, 2, 5, 7}; int ia[9] = {0, 3, 7, 10, 14, 17, 21, 23, 26}; ierr = KmlIssGcrInitDI(&handle, n, a, ja, ia); if (ierr != 0) { printf("\nERROR in KmlIssGcrInitDI: %d", ierr); return 1; } | 
父主题: GCR