diff options
Diffstat (limited to 'matrix.h')
-rw-r--r-- | matrix.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ #define TRUE 1 #define FALSE 0 -typedef enum _MatrixType { +typedef enum { MATRIX_DIAG, MATRIX_TRIAG_UPPER, MATRIX_TRIAG_LOWER, @@ -16,7 +16,7 @@ typedef enum _MatrixType { MATRIX_NONE } MatrixType; -typedef struct _Matrix { +typedef struct { double *xs; size_t m; size_t n; |