Lines Matching refs:Upper
64 up = mat.template triangularView<Upper>(); in sparse_permutations()
67 up_sym_d = mat_d.template selfadjointView<Upper>(); in sparse_permutations()
71 VERIFY_IS_APPROX(up, DenseMatrix(mat_d.template triangularView<Upper>())); in sparse_permutations()
111 VERIFY( is_sorted( res = mat.template selfadjointView<Upper>().twistedBy(p_null) )); in sparse_permutations()
120 VERIFY( is_sorted( res = up.template selfadjointView<Upper>().twistedBy(p_null) )); in sparse_permutations()
129 VERIFY( is_sorted( res = mat.template selfadjointView<Upper>() )); in sparse_permutations()
137 VERIFY( is_sorted( res = up.template selfadjointView<Upper>() )); in sparse_permutations()
146 res.template selfadjointView<Upper>() = mat.template selfadjointView<Upper>(); in sparse_permutations()
147 res_d = up_sym_d.template triangularView<Upper>(); in sparse_permutations()
150 res.template selfadjointView<Lower>() = mat.template selfadjointView<Upper>(); in sparse_permutations()
154 res.template selfadjointView<Upper>() = mat.template selfadjointView<Lower>(); in sparse_permutations()
155 res_d = lo_sym_d.template triangularView<Upper>(); in sparse_permutations()
164 res.template selfadjointView<Upper>() = mat.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
165 res_d = ((p * up_sym_d) * p.inverse()).eval().template triangularView<Upper>(); in sparse_permutations()
168 res.template selfadjointView<Upper>() = mat.template selfadjointView<Lower>().twistedBy(p); in sparse_permutations()
169 res_d = ((p * lo_sym_d) * p.inverse()).eval().template triangularView<Upper>(); in sparse_permutations()
176 res.template selfadjointView<Lower>() = mat.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
181 res.template selfadjointView<Upper>() = up.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
182 res_d = ((p * up_sym_d) * p.inverse()).eval().template triangularView<Upper>(); in sparse_permutations()
185 res.template selfadjointView<Upper>() = lo.template selfadjointView<Lower>().twistedBy(p); in sparse_permutations()
186 res_d = ((p * lo_sym_d) * p.inverse()).eval().template triangularView<Upper>(); in sparse_permutations()
193 res.template selfadjointView<Lower>() = up.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
198 VERIFY( is_sorted( res = mat.template selfadjointView<Upper>().twistedBy(p) )); in sparse_permutations()
206 VERIFY( is_sorted( res = up.template selfadjointView<Upper>().twistedBy(p) )); in sparse_permutations()