Searched refs:DerType (Results 1 – 1 of 1) sorted by relevance
69 typedef typename internal::remove_all<_DerType>::type DerType; typedef70 typedef typename internal::traits<DerType>::Scalar Scalar;82 : m_value(value), m_derivatives(DerType::Zero(nbDer)) in AutoDiffScalar()97 AutoDiffScalar(const Scalar& value, const DerType& der) in AutoDiffScalar()136 inline const DerType& derivatives() const { return m_derivatives; } in derivatives()137 inline DerType& derivatives() { return m_derivatives; } in derivatives()160 inline const AutoDiffScalar<DerType&> operator+(const Scalar& other) const162 return AutoDiffScalar<DerType&>(m_value + other, m_derivatives);165 friend inline const AutoDiffScalar<DerType&> operator+(const Scalar& a, const AutoDiffScalar& b)167 return AutoDiffScalar<DerType&>(a + b.value(), b.derivatives());[all …]