diff options
Diffstat (limited to 'include/common/matrix.h')
-rw-r--r-- | include/common/matrix.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/common/matrix.h b/include/common/matrix.h index 726a8ab..fe4a12a 100644 --- a/include/common/matrix.h +++ b/include/common/matrix.h | |||
@@ -12,8 +12,12 @@ | |||
12 | #include "geom.h" | 12 | #include "geom.h" |
13 | 13 | ||
14 | /** | 14 | /** |
15 | * Type: IntSquareMatrix | 15 | * Struct: IntSquareMatrix |
16 | * Represents a square integer matrix. | 16 | * Represents a square integer matrix. |
17 | * | ||
18 | * Fields: | ||
19 | * **elements - NULL-terminated array of element pointers | ||
20 | * dim - dimension | ||
17 | */ | 21 | */ |
18 | typedef struct { | 22 | typedef struct { |
19 | IntVector **elements; | 23 | IntVector **elements; |