dol: initial dol commit
[jump.git] / dol / examples / example4 / src / constants.h
1 #ifndef CONSTANTS_H
2 #define CONSTANTS_H
3
4 /*
5 #define NUMBER_OF_ROWS_COLS     1
6 #define MATRIX_A_INITIAL_VALUE  { 1.0 }
7 #define MATRIX_B_INITIAL_VALUE  { 2.5 }
8 */
9
10 #define NUMBER_OF_ROWS_COLS     2
11 #define MATRIX_A_INITIAL_VALUE  { {1.0,  2.0 }, {  3.0,  4.0 } }
12 #define MATRIX_B_INITIAL_VALUE  { {0.0, -1.0 }, { -2.0, -3.0 } }
13
14 /*
15 #define NUMBER_OF_ROWS_COLS     3
16 #define MATRIX_A_INITIAL_VALUE  { {1.0, 2.0, 3.0 }, {4.0, 5.0, -4.0 }, {-3.0, -2.0, -1.0} }
17 #define MATRIX_B_INITIAL_VALUE  { {1.0, 0.0, 0.0 }, {0.0, 1.0,  0.0 }, { 0.0,  0.0,  1.0} }
18 */
19
20 #endif