MCPcopy Create free account
hub / github.com/PX4/eigen / evalToLazy

Method evalToLazy

Eigen/src/Core/TriangularMatrix.h:933–937  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

931template<typename Derived>
932template<typename DenseDerived>
933void TriangularBase<Derived>::evalToLazy(MatrixBase<DenseDerived> &other) const
934{
935 other.derived().resize(this->rows(), this->cols());
936 internal::call_triangular_assignment_loop<Derived::Mode,(Derived::Mode&SelfAdjoint)==0 /* SetOpposite */>(other.derived(), derived().nestedExpression());
937}
938
939namespace internal {
940

Callers

nothing calls this directly

Calls 4

rowsMethod · 0.95
colsMethod · 0.95
resizeMethod · 0.45
nestedExpressionMethod · 0.45

Tested by

no test coverage detected