EVSL  1.1.0
EigenValues Slicing Library
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
cs_entry.c
Go to the documentation of this file.
1 #include "cs.h"
2 /* add an entry to a triplet matrix; return 1 if ok, 0 otherwise */
4 {
5  if (!CS_TRIPLET (T) || i < 0 || j < 0) return (0) ; /* check inputs */
6  if (T->nz >= T->nzmax && !cs_sprealloc (T,2*(T->nzmax))) return (0) ;
7  if (T->x) T->x [T->nz] = x ;
8  T->i [T->nz] = i ;
9  T->p [T->nz++] = j ;
10  T->m = CS_MAX (T->m, i+1) ;
11  T->n = CS_MAX (T->n, j+1) ;
12  return (1) ;
13 }
#define cs
Definition: cs.h:637
#define CS_ENTRY
Definition: cs.h:635
#define CS_MAX(a, b)
Definition: cs.h:653
#define CS_INT
Definition: cs.h:627
CS_INT cs_sprealloc(cs *A, CS_INT nzmax)
Definition: cs_util.c:18
#define CS_TRIPLET(A)
Definition: cs.h:660
CS_INT cs_entry(cs *T, CS_INT i, CS_INT j, CS_ENTRY x)
Definition: cs_entry.c:3