diff options
| author | Gertjan van den Burg <burg@ese.eur.nl> | 2016-12-07 12:42:49 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <burg@ese.eur.nl> | 2016-12-07 12:42:49 +0100 |
| commit | 845631ad78415e022295373d8b0c9517ae17403e (patch) | |
| tree | 896e8e293fdce2df98b104755b5995c132dae0d6 /include/gensvm_sparse.h | |
| parent | document undocumented elements (diff) | |
| download | gensvm-845631ad78415e022295373d8b0c9517ae17403e.tar.gz gensvm-845631ad78415e022295373d8b0c9517ae17403e.zip | |
switch some integer variables to long for cross platform size guarantees
Diffstat (limited to 'include/gensvm_sparse.h')
| -rw-r--r-- | include/gensvm_sparse.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gensvm_sparse.h b/include/gensvm_sparse.h index 4d55ae3..570e19a 100644 --- a/include/gensvm_sparse.h +++ b/include/gensvm_sparse.h @@ -62,9 +62,9 @@ struct GenSparse { double *values; ///< actual nonzero values, should be of length nnz - int *ia; + long *ia; ///< cumulative row lengths, should be of length n_row+1 - int *ja; + long *ja; ///< column indices, should be of length nnz }; |
