10 #ifndef EIGEN_SPARSETRIANGULARSOLVER_H
11 #define EIGEN_SPARSETRIANGULARSOLVER_H
17 template<
typename Lhs,
typename Rhs,
int Mode,
18 int UpLo = (Mode &
Lower)
23 int StorageOrder = int(traits<Lhs>::Flags) &
RowMajorBit>
24 struct sparse_solve_triangular_selector;
27 template<
typename Lhs,
typename Rhs,
int Mode>
28 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,
Lower,
RowMajor>
30 typedef typename Rhs::Scalar Scalar;
31 static void run(
const Lhs& lhs, Rhs& other)
33 for(
int col=0 ; col<other.cols() ; ++col)
35 for(
int i=0; i<lhs.rows(); ++i)
37 Scalar tmp = other.coeff(i,col);
40 for(
typename Lhs::InnerIterator it(lhs, i); it; ++it)
43 lastIndex = it.index();
46 tmp -= lastVal * other.coeff(lastIndex,col);
49 other.coeffRef(i,col) = tmp;
52 eigen_assert(lastIndex==i);
53 other.coeffRef(i,col) = tmp/lastVal;
61 template<
typename Lhs,
typename Rhs,
int Mode>
62 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,Upper,
RowMajor>
64 typedef typename Rhs::Scalar Scalar;
65 static void run(
const Lhs& lhs, Rhs& other)
67 for(
int col=0 ; col<other.cols() ; ++col)
69 for(
int i=lhs.rows()-1 ; i>=0 ; --i)
71 Scalar tmp = other.coeff(i,col);
73 typename Lhs::InnerIterator it(lhs, i);
74 while(it && it.index()<i)
78 eigen_assert(it && it.index()==i);
82 else if (it && it.index() == i)
86 tmp -= it.value() * other.coeff(it.index(),col);
90 other.coeffRef(i,col) = tmp;
92 other.coeffRef(i,col) = tmp/l_ii;
99 template<
typename Lhs,
typename Rhs,
int Mode>
100 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,
Lower,
ColMajor>
102 typedef typename Rhs::Scalar Scalar;
103 static void run(
const Lhs& lhs, Rhs& other)
105 for(
int col=0 ; col<other.cols() ; ++col)
107 for(
int i=0; i<lhs.cols(); ++i)
109 Scalar& tmp = other.coeffRef(i,col);
112 typename Lhs::InnerIterator it(lhs, i);
113 while(it && it.index()<i)
115 if(!(Mode & UnitDiag))
117 eigen_assert(it && it.index()==i);
120 if (it && it.index()==i)
123 other.coeffRef(it.index(), col) -= tmp * it.value();
131 template<
typename Lhs,
typename Rhs,
int Mode>
132 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,Upper,
ColMajor>
134 typedef typename Rhs::Scalar Scalar;
135 static void run(
const Lhs& lhs, Rhs& other)
137 for(
int col=0 ; col<other.cols() ; ++col)
139 for(
int i=lhs.cols()-1; i>=0; --i)
141 Scalar& tmp = other.coeffRef(i,col);
144 if(!(Mode & UnitDiag))
147 typename Lhs::ReverseInnerIterator it(lhs, i);
148 while(it && it.index()!=i)
150 eigen_assert(it && it.index()==i);
151 other.coeffRef(i,col) /= it.value();
153 typename Lhs::InnerIterator it(lhs, i);
154 for(; it && it.index()<i; ++it)
155 other.coeffRef(it.index(), col) -= tmp * it.value();
164 template<
typename ExpressionType,
int Mode>
165 template<
typename OtherDerived>
166 void SparseTriangularView<ExpressionType,Mode>::solveInPlace(MatrixBase<OtherDerived>& other)
const
168 eigen_assert(m_matrix.cols() == m_matrix.rows() && m_matrix.cols() == other.rows());
169 eigen_assert((!(Mode &
ZeroDiag)) &&
bool(Mode & (Upper|
Lower)));
171 enum { copy = internal::traits<OtherDerived>::Flags &
RowMajorBit };
173 typedef typename internal::conditional<copy,
174 typename internal::plain_matrix_type_column_major<OtherDerived>::type, OtherDerived&>::type OtherCopy;
175 OtherCopy otherCopy(other.derived());
177 internal::sparse_solve_triangular_selector<ExpressionType, typename internal::remove_reference<OtherCopy>::type, Mode>::run(m_matrix, otherCopy);
183 template<
typename ExpressionType,
int Mode>
184 template<
typename OtherDerived>
185 typename internal::plain_matrix_type_column_major<OtherDerived>::type
186 SparseTriangularView<ExpressionType,Mode>::solve(
const MatrixBase<OtherDerived>& other)
const
188 typename internal::plain_matrix_type_column_major<OtherDerived>::type res(other);
197 template<
typename Lhs,
typename Rhs,
int Mode,
198 int UpLo = (Mode &
Lower)
203 int StorageOrder = int(Lhs::Flags) & (
RowMajorBit)>
204 struct sparse_solve_triangular_sparse_selector;
207 template<
typename Lhs,
typename Rhs,
int Mode,
int UpLo>
208 struct sparse_solve_triangular_sparse_selector<Lhs,Rhs,Mode,UpLo,ColMajor>
210 typedef typename Rhs::Scalar Scalar;
211 typedef typename promote_index_type<typename traits<Lhs>::Index,
212 typename traits<Rhs>::Index>::type Index;
213 static void run(
const Lhs& lhs, Rhs& other)
215 const bool IsLower = (UpLo==
Lower);
216 AmbiVector<Scalar,Index> tempVector(other.rows()*2);
217 tempVector.setBounds(0,other.rows());
219 Rhs res(other.rows(), other.cols());
220 res.reserve(other.nonZeros());
222 for(
int col=0 ; col<other.cols() ; ++col)
225 tempVector.init(.99);
226 tempVector.setZero();
227 tempVector.restart();
228 for (
typename Rhs::InnerIterator rhsIt(other, col); rhsIt; ++rhsIt)
230 tempVector.coeffRef(rhsIt.index()) = rhsIt.value();
233 for(
int i=IsLower?0:lhs.cols()-1;
234 IsLower?i<lhs.cols():i>=0;
237 tempVector.restart();
238 Scalar& ci = tempVector.coeffRef(i);
242 typename Lhs::InnerIterator it(lhs, i);
243 if(!(Mode & UnitDiag))
247 eigen_assert(it.index()==i);
251 ci /= lhs.coeff(i,i);
253 tempVector.restart();
259 tempVector.coeffRef(it.index()) -= ci * it.value();
263 for(; it && it.index()<i; ++it)
264 tempVector.coeffRef(it.index()) -= ci * it.value();
272 for (
typename AmbiVector<Scalar,Index>::Iterator it(tempVector); it; ++it)
278 res.insert(it.index(), col) = it.value();
283 other = res.markAsRValue();
289 template<
typename ExpressionType,
int Mode>
290 template<
typename OtherDerived>
291 void SparseTriangularView<ExpressionType,Mode>::solveInPlace(SparseMatrixBase<OtherDerived>& other)
const
293 eigen_assert(m_matrix.cols() == m_matrix.rows() && m_matrix.cols() == other.rows());
294 eigen_assert( (!(Mode & ZeroDiag)) &&
bool(Mode & (Upper|
Lower)));
302 internal::sparse_solve_triangular_sparse_selector<ExpressionType, OtherDerived, Mode>::run(m_matrix, other.derived());
308 #ifdef EIGEN2_SUPPORT
313 template<
typename Derived>
314 template<
typename OtherDerived>
315 void SparseMatrixBase<Derived>::solveTriangularInPlace(MatrixBase<OtherDerived>& other)
const
317 this->
template triangular<Flags&(Upper|Lower)>().solveInPlace(other);
321 template<
typename Derived>
322 template<
typename OtherDerived>
323 typename internal::plain_matrix_type_column_major<OtherDerived>::type
324 SparseMatrixBase<Derived>::solveTriangular(
const MatrixBase<OtherDerived>& other)
const
326 typename internal::plain_matrix_type_column_major<OtherDerived>::type res(other);
327 derived().solveTriangularInPlace(res);
330 #endif // EIGEN2_SUPPORT
334 #endif // EIGEN_SPARSETRIANGULARSOLVER_H
Definition: Constants.h:167
Definition: Constants.h:264
Definition: Constants.h:173
Definition: Constants.h:169
Definition: Constants.h:171
Definition: Constants.h:266
const unsigned int RowMajorBit
Definition: Constants.h:53