10 #ifndef EIGEN_SOLVEWITHGUESS_H 11 #define EIGEN_SOLVEWITHGUESS_H 15 template<
typename Decomposition,
typename RhsType,
typename GuessType>
class SolveWithGuess;
32 template<
typename Decomposition,
typename RhsType,
typename GuessType>
34 :
traits<Solve<Decomposition,RhsType> >
40 template<
typename Decomposition,
typename RhsType,
typename GuessType>
49 SolveWithGuess(
const Decomposition &dec,
const RhsType &rhs,
const GuessType &guess)
50 : m_dec(dec), m_rhs(rhs), m_guess(guess)
69 Scalar coeff(
Index i)
const;
75 template<
typename Decomposition,
typename RhsType,
typename GuessType>
77 :
public evaluator<typename SolveWithGuess<Decomposition,RhsType,GuessType>::PlainObject>
84 : m_result(solve.
rows(), solve.
cols())
86 ::new (static_cast<Base*>(
this)) Base(m_result);
87 m_result = solve.
guess();
88 solve.
dec()._solve_with_guess_impl(solve.
rhs(), m_result);
97 template<
typename DstXprType,
typename DecType,
typename RhsType,
typename GuessType,
typename Scalar>
105 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
106 dst.resize(dstRows, dstCols);
109 src.
dec()._solve_with_guess_impl(src.
rhs(), dst);
117 #endif // EIGEN_SOLVEWITHGUESS_H SolveType::PlainObject PlainObject
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index cols() const EIGEN_NOEXCEPT
Pseudo expression representing a solving operation.
internal::ref_selector< SolveWithGuess >::type Nested
EIGEN_DEVICE_FUNC const RhsType & rhs() const
const Decomposition & m_dec
static void run(DstXprType &dst, const SrcXprType &src, const internal::assign_op< Scalar, Scalar > &)
Namespace containing all symbols from the Eigen library.
evaluator(const SolveType &solve)
internal::traits< SolveWithGuess >::Scalar Scalar
internal::generic_xpr_base< SolveWithGuess< Decomposition, RhsType, GuessType >, MatrixXpr, typename internal::traits< RhsType >::StorageKind >::type Base
const GuessType & m_guess
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
EIGEN_DEVICE_FUNC const GuessType & guess() const
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index rows() const EIGEN_NOEXCEPT
SolveWithGuess< Decomposition, RhsType, GuessType > SolveType
#define EIGEN_DEVICE_FUNC
evaluator< PlainObject > Base
EIGEN_DEVICE_FUNC const Decomposition & dec() const
Generic expression where a coefficient-wise unary operator is applied to an expression.
SolveWithGuess(const Decomposition &dec, const RhsType &rhs, const GuessType &guess)
internal::traits< SolveWithGuess >::PlainObject PlainObject
SolveWithGuess< DecType, RhsType, GuessType > SrcXprType