diff options
Diffstat (limited to 'matrix.c')
-rw-r--r-- | matrix.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,3 +1,7 @@ +#include "matrix.h" + +#include "utils.h" + #include <stdio.h> #include <stdlib.h> #include <assert.h> @@ -5,9 +9,6 @@ #include <math.h> #include <time.h> -#include "matrix.h" -#include "utils.h" - Matrix *matrix_alloc(size_t m, size_t n) { double *xs = calloc(m * n, sizeof(double)); |