Dynamic-size constructor */
| 72 | /** Dynamic-size constructor |
| 73 | */ |
| 74 | EIGEN_DEVICE_FUNC |
| 75 | inline VectorBlock(VectorType& vector, Index start, Index size) |
| 76 | : Base(vector, |
| 77 | IsColVector ? start : 0, IsColVector ? 0 : start, |
| 78 | IsColVector ? size : 1, IsColVector ? 1 : size) |
| 79 | { |
| 80 | EIGEN_STATIC_ASSERT_VECTOR_ONLY(VectorBlock); |
| 81 | } |
| 82 | |
| 83 | /** Fixed-size constructor |
| 84 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected