mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Renamed PlainMatrixType to PlainObject (Array != Matrix).
Renamed ReturnByValue::ReturnMatrixType ReturnByValue::ReturnType (again, Array != Matrix).
This commit is contained in:
@@ -516,7 +516,7 @@ template<typename Derived> class MatrixFunctionReturnValue
|
||||
inline void evalTo(ResultType& result) const
|
||||
{
|
||||
const typename ei_eval<Derived>::type Aevaluated = m_A.eval();
|
||||
MatrixFunction<typename Derived::PlainMatrixType> mf(Aevaluated, m_f);
|
||||
MatrixFunction<typename Derived::PlainObject> mf(Aevaluated, m_f);
|
||||
mf.compute(result);
|
||||
}
|
||||
|
||||
@@ -531,7 +531,7 @@ template<typename Derived> class MatrixFunctionReturnValue
|
||||
template<typename Derived>
|
||||
struct ei_traits<MatrixFunctionReturnValue<Derived> >
|
||||
{
|
||||
typedef typename Derived::PlainMatrixType ReturnMatrixType;
|
||||
typedef typename Derived::PlainObject ReturnType;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user