summaryrefslogtreecommitdiffstats
path: root/include/mm/view.hpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update access model for operator|Nao Pross2019-10-101-44/+90
| | | | | | | | | | | | | | | | | 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-051-0/+66