Path Tracer
|
Pseudo expression representing a solving operation. More...
#include <SolveWithGuess.h>
Public Types | |
typedef internal::traits< SolveWithGuess >::Scalar | Scalar |
typedef internal::traits< SolveWithGuess >::PlainObject | PlainObject |
typedef internal::generic_xpr_base< SolveWithGuess< Decomposition, RhsType, GuessType >, MatrixXpr, typename internal::traits< RhsType >::StorageKind >::type | Base |
typedef internal::ref_selector< SolveWithGuess >::type | Nested |
Public Member Functions | |
SolveWithGuess (const Decomposition &dec, const RhsType &rhs, const GuessType &guess) | |
EIGEN_DEVICE_FUNC Index | rows () const |
EIGEN_DEVICE_FUNC Index | cols () const |
EIGEN_DEVICE_FUNC const Decomposition & | dec () const |
EIGEN_DEVICE_FUNC const RhsType & | rhs () const |
EIGEN_DEVICE_FUNC const GuessType & | guess () const |
Protected Attributes | |
const Decomposition & | m_dec |
const RhsType & | m_rhs |
const GuessType & | m_guess |
Pseudo expression representing a solving operation.
Decomposition | the type of the matrix or decomposion object |
Rhstype | the type of the right-hand side |
This class represents an expression of A.solve(B) and most of the time this is the only way it is used.