| 118 | |
| 119 | template <typename U> |
| 120 | void fill_diag( const U& u) { |
| 121 | fill_diag__dispatch( typename traits::is_trivial<RTYPE>::type(), u ) ; |
| 122 | } |
| 123 | |
| 124 | template <typename U> static Matrix diag( int size, const U& diag_value ) { |
| 125 | Matrix res(size,size) ; |
no outgoing calls
no test coverage detected