I'm trying to implement a modifyable custom expression using Eigen, similar to this question. Basically, what I want is something similar to the indexing example in the tutorial, but with the possibility to assign new values to the selected coefficients.
As suggested in the accepted answer in the question mentioned above, I have looked into the Transpose
implementation and tried many things, yet without success. Basically, my attempts are failing with errors like 'Eigen::internal::evaluator<SrcXprType>::evaluator(const Eigen::internal::evaluator<SrcXprType> &)': cannot convert argument 1 from 'const Eigen::Indexing<Derived>' to 'Eigen::Indexing<Derived> &'
. Probably, the problem lies in my evaluator
struct which seems to be read-only.
namespace Eigen {
namespace internal {
template<typename ArgType>
struct evaluator<Indexing<ArgType> >
: evaluator_base<Indexing<ArgType> >
{
typedef Indexing<ArgType> XprType;
typedef typename nested_eval<ArgType, XprType::ColsAtCompileTime>::type ArgTypeNested;
typedef typename remove_all<ArgTypeNested>::type ArgTypeNestedCleaned;
typedef typename XprType::CoeffReturnType CoeffReturnType;
typedef typename traits<ArgType>::Scalar Scalar;
enum {
CoeffReadCost = evaluator<ArgTypeNestedCleaned>::CoeffReadCost,
Flags = Eigen::ColMajor
};
evaluator(XprType& xpr)
: m_argImpl(xpr.m_arg), m_rows(xpr.rows())
{ }
const Scalar& coeffRef(Index row, Index col) const
{
return m_argImpl.coeffRef(... very clever stuff ...)
}
Scalar& coeffRef(Index row, Index col)
{
return m_argImpl.coeffRef(... very clever stuff ...)
}
evaluator<ArgTypeNestedCleaned> m_argImpl;
const Index m_rows;
};
}
}
Also, I've changed all occurences of typedef typename Eigen::internal::ref_selector<ArgType>::type
to ...::non_const_type
, but this had no effect.
Due to the complexity of the Eigen library, I cant figure out how to puzzle the expression and the evaluator together correctly. I don't understand, why my evaluator is read-only or how to get a write-enabled evaluator. It would be great if someone could provide a minimal example for a modifyable custom expression.
With help of ggael's hint I've been able to sucessfully add my own modifyable expression. I've basically adapted the
IndexedView
of the Eigen development branch.As the originally requested funcionality is covered by the
IndexedView
, I've written a modifyable circular shift function as simple example of a modifyable custom expression. Most of the code is directly taken from theIndexedView
, so credits go to the authors of that.And: