summaryrefslogtreecommitdiffstats
path: root/include/mm (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix indentationNao Pross2019-10-101-100/+99
|
* Update access model for operator|Nao Pross2019-10-102-71/+183
| | | | | | | | | | | | | | | | | 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.
* New matrix data model (breaks everything)Nao Pross2019-10-053-777/+132
|
* Implicit convertion to basic_vec to vec2 or vec3ancarola2019-07-103-59/+166
|
* Small correction on basic multiplicationancarola2019-07-012-32/+56
|
* The matrix library is compiling and all tested operations work fine.ancarola2019-07-013-44/+184
| | | | | | | | | Next goals: - Implement optimisations for multiplication in K-diagonal - Add adjoint operation for complex matrices - Determinant - Algorithms: Gauss Jordan
* Optimized matrix sectionancarola2019-06-305-454/+983
| | | | | - Vector iterators: allow to iterate on rows, columns or diagonals - Transposition doesn't affect allocated space, O(1)
* Finally compilesancarola2019-06-291-132/+198
|
* Small correction on interatorsancarola2019-06-281-2/+2
|
* Iterators compacting code improvements, still not compilesancarola2019-06-282-274/+729
|
* Optimising matrices access and operationsancarola2019-06-283-9/+832
| | | | Creating the K-diagonal matrix
* Merge branch 'master' into matricesNao Pross2019-06-243-0/+693
|\
| * Update CMakeLists and structure under includeNao Pross2019-06-222-0/+319
|/
* CMakeLists: include fixes, include tree structure modifiedancarola2019-02-112-330/+11
|
* Add move constructor and move operator= to mmvecNao Pross2019-02-071-6/+28
|
* Change public headers directory (include) structureNao Pross2019-02-071-0/+308
Add a public header that includes the entire library "mm.hpp", and move mmvec to a subdirectory "mm".