| 28 | } |
| 29 | |
| 30 | AutoVector TransposeVector :: CreateColVector () const |
| 31 | { |
| 32 | return make_unique<VVector<double>> (h*w); |
| 33 | } |
| 34 | |
| 35 | void TransposeVector :: Mult (const BaseVector & x, BaseVector & y) const |
| 36 | { |
nothing calls this directly
no test coverage detected