#include <stdio.h>#include <stdlib.h>#include <math.h>#include "elm.h"#include "node.h"#include "alg.h"#include "fem.h"#include "csr.h"

Go to the source code of this file.
Functions | |
| void | BuildIaVec (CsrNode *node_list, int *ia, int nnu, int *nna) |
| void | BuildJaVec (CsrNode *node_list, int *ja) |
| void | BuildNodeList (CsrNode *node_list) |
| void | BuildIaVector (CsrNode *node_list, int nnu, int *nna, int *ia) |
| void | BuildJaVector (CsrNode *node_list, int *ja) |
| void | mshAddAdjNode (CsrNode *node, int adj_id) |
| void | FreeNodeList (CsrNode *node_list) |
| int | BuildaVector (int i, int j, double coef, int *ia, int *ja, double *avector) |
| int BuildaVector | ( | int | i, | |
| int | j, | |||
| double | coef, | |||
| int * | ia, | |||
| int * | ja, | |||
| double * | avector | |||
| ) |
Definition at line 281 of file csr.c.
Referenced by BuildAVector().

| void BuildIaVec | ( | CsrNode * | node_list, | |
| int * | ia, | |||
| int | nnu, | |||
| int * | nna | |||
| ) |
Definition at line 37 of file csr.c.
Referenced by HYBRIDSolver(), IMPBFGSSolver(), IMPLINEARSolver(), and IMPNRMSolver().

| void BuildIaVector | ( | CsrNode * | node_list, | |
| int | nnu, | |||
| int * | nna, | |||
| int * | ia | |||
| ) |
Definition at line 104 of file csr.c.
Referenced by BuildIaVec().

| void BuildJaVec | ( | CsrNode * | node_list, | |
| int * | ja | |||
| ) |
Definition at line 56 of file csr.c.
Referenced by HYBRIDSolver(), IMPBFGSSolver(), IMPLINEARSolver(), and IMPNRMSolver().

| void BuildJaVector | ( | CsrNode * | node_list, | |
| int * | ja | |||
| ) |
Definition at line 155 of file csr.c.
Referenced by BuildJaVec().

| void BuildNodeList | ( | CsrNode * | node_list | ) |
Definition at line 71 of file csr.c.
Referenced by HYBRIDSolver(), IMPBFGSSolver(), IMPLINEARSolver(), and IMPNRMSolver().

| void FreeNodeList | ( | CsrNode * | node_list | ) |
Definition at line 260 of file csr.c.
Referenced by HYBRIDSolver(), IMPBFGSSolver(), IMPLINEARSolver(), and IMPNRMSolver().

| void mshAddAdjNode | ( | CsrNode * | node, | |
| int | adj_id | |||
| ) |
Definition at line 229 of file csr.c.
Referenced by BuildNodeList().

1.5.3