[wip] Make operator* for FieldMatrix more generic
This implements A*B if one of both matrices is a FieldMatrix.
The result-type is always a FieldMatrix.
- If
Ais aFieldMatrix, thenC=A*Bis implemented by applyingB.mtv(A[i],C[i])for all rows ofAandC. - If
Bis aFieldMatrix, thenC=A*Bis implemented by applyingA.mv(A_j,C_j)for all columns ofAandC. Column access is implemented using a new wrapper class inDune::Impl::.