| 471 | */ |
| 472 | template<typename _Left, typename _Right> |
| 473 | ProductOp<_Left, _Right, internal::ProductArgOp::TRANSPOSED, internal::ProductArgOp::TRANSPOSED, internal::ProductArgOp::NONE> |
| 474 | operator*(const TransposeOp<_Left, false>& left, const TransposeOp<_Right, false>& right) |
| 475 | { |
| 476 | return ProductOp<_Left, _Right, internal::ProductArgOp::TRANSPOSED, internal::ProductArgOp::TRANSPOSED, internal::ProductArgOp::NONE>(left.getUnderlyingMatrix(), right.getUnderlyingMatrix()); |
| 477 | } |
| 478 | |
| 479 | /** |
| 480 | * \brief Performs the matrix-matrix multiplication <tt>C = A * B'<tt>. |
nothing calls this directly
no outgoing calls
no test coverage detected