summaryrefslogtreecommitdiffstats
path: root/test (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-10-10Update access model for operator|Nao Pross1-22/+50
The operator | can access the matrix either by directly changing the values (by reference, mm::mutate(M)) or by creating first a a copy of the matrix (mm::clone(M)). ToDo: The order of destruction of the mutate object is not yet well defined, and therefore it is not yet deterministic enough to work with expressions like (pseudocode) matrix m = a * b * (a | mm::alg::invert) because operator| (defaults to mutate), should not but could, change the value of a before the product a * b gets evaluated.
2019-10-05New matrix data model (breaks everything)Nao Pross1-22/+0
2019-07-10Implicit convertion to basic_vec to vec2 or vec3ancarola1-1/+5
2019-07-01The matrix library is compiling and all tested operations work fine.ancarola1-7/+7
Next goals: - Implement optimisations for multiplication in K-diagonal - Add adjoint operation for complex matrices - Determinant - Algorithms: Gauss Jordan
2019-06-30Optimized matrix sectionancarola1-9/+9
- Vector iterators: allow to iterate on rows, columns or diagonals - Transposition doesn't affect allocated space, O(1)
2019-06-22Update CMakeLists and structure under includeNao Pross1-1/+1
2019-03-02Update matrix test, add square matrix trace and fix commentsNao Pross1-1/+26
2019-03-01Fix matrix operator[] to allow M[j][k] and operator<< formattingNao Pross1-0/+4
2019-02-23Change storage for matrix to std::array, update matrix_exampleNao Pross1-2/+14
2019-02-23Add initializer_list constructor to basic_matrix and matrix testNao Pross2-0/+45
2019-02-23Add test to cmakeNao Pross2-0/+28
2019-02-05Test directory creationancarola1-0/+62