summaryrefslogtreecommitdiff
path: root/include/common/matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/common/matrix.h')
-rw-r--r--include/common/matrix.h6
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 */
18typedef struct { 22typedef struct {
19 IntVector **elements; 23 IntVector **elements;