| 354 | */ |
| 355 | template <class M> |
| 356 | const ublas::triangular_adaptor<const M, ublas::upper> |
| 357 | UpperTri(const M& m) |
| 358 | /* |
| 359 | * View Upper triangle of m |
| 360 | * ISSUE VC7 cannot cope with UTriMatrix::functor1_type |
| 361 | */ |
| 362 | { |
| 363 | return ublas::triangular_adaptor<const M, ublas::upper>(m); |
| 364 | } |
| 365 | |
| 366 | template <class M> |
| 367 | const ublas::triangular_adaptor<const M, ublas::lower> |
no outgoing calls
no test coverage detected