• Home
  • Raw
  • Download

Lines Matching refs:is_sorted

23 bool is_sorted(const T& mat) {  in is_sorted()  function
79 VERIFY( is_sorted( ::eval(mat*p) )); in sparse_permutations()
80 VERIFY( is_sorted( res = mat*p )); in sparse_permutations()
86 VERIFY( is_sorted( ::eval(p*mat) )); in sparse_permutations()
87 VERIFY( is_sorted( res = p*mat )); in sparse_permutations()
92 VERIFY( is_sorted( (mat*p).eval() )); in sparse_permutations()
93 VERIFY( is_sorted( res = mat*p.inverse() )); in sparse_permutations()
98 VERIFY( is_sorted( (p*mat+p*mat).eval() )); in sparse_permutations()
99 VERIFY( is_sorted( res = p.inverse()*mat )); in sparse_permutations()
104 VERIFY( is_sorted( (p * mat * p.inverse()).eval() )); in sparse_permutations()
105 VERIFY( is_sorted( res = mat.twistedBy(p) )); in sparse_permutations()
111 VERIFY( is_sorted( res = mat.template selfadjointView<Upper>().twistedBy(p_null) )); in sparse_permutations()
115 VERIFY( is_sorted( res = mat.template selfadjointView<Lower>().twistedBy(p_null) )); in sparse_permutations()
120 VERIFY( is_sorted( res = up.template selfadjointView<Upper>().twistedBy(p_null) )); in sparse_permutations()
124 VERIFY( is_sorted( res = lo.template selfadjointView<Lower>().twistedBy(p_null) )); in sparse_permutations()
129 VERIFY( is_sorted( res = mat.template selfadjointView<Upper>() )); in sparse_permutations()
133 VERIFY( is_sorted( res = mat.template selfadjointView<Lower>() )); in sparse_permutations()
137 VERIFY( is_sorted( res = up.template selfadjointView<Upper>() )); in sparse_permutations()
141 VERIFY( is_sorted( res = lo.template selfadjointView<Lower>() )); in sparse_permutations()
198 VERIFY( is_sorted( res = mat.template selfadjointView<Upper>().twistedBy(p) )); in sparse_permutations()
202 VERIFY( is_sorted( res = mat.template selfadjointView<Lower>().twistedBy(p) )); in sparse_permutations()
206 VERIFY( is_sorted( res = up.template selfadjointView<Upper>().twistedBy(p) )); in sparse_permutations()
210 VERIFY( is_sorted( res = lo.template selfadjointView<Lower>().twistedBy(p) )); in sparse_permutations()