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

Function _solve_impl

Eigen/src/Core/TriangularMatrix.h:537–542  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

535
536 template<typename RhsType, typename DstType>
537 EIGEN_DEVICE_FUNC
538 EIGEN_STRONG_INLINE void _solve_impl(const RhsType &rhs, DstType &dst) const {
539 if(!internal::is_same_dense(dst,rhs))
540 dst = rhs;
541 this->solveInPlace(dst);
542 }
543
544 template<typename ProductType>
545 EIGEN_DEVICE_FUNC

Callers

nothing calls this directly

Calls 2

is_same_denseFunction · 0.85
solveInPlaceMethod · 0.45

Tested by

no test coverage detected