source:
branches/ali/HEADERLIBS/eigen_fix_gcc_610_compile.patch
Last change on this file was 14807, checked in by westram, 9 years ago | |
---|---|
File size: 672 bytes |
-
eigen/Eigen/src/Sparse/AmbiVector.h
44 44 void init(RealScalar estimatedDensity); 45 45 void init(int mode); 46 46 47 voidnonZeros() const;47 int nonZeros() const; 48 48 49 49 /** Specifies a sub-vector to work on */ 50 50 void setBounds(int start, int end) { m_start = start; m_end = end; } … … 133 133 134 134 /** \returns the number of non zeros in the current sub vector */ 135 135 template<typename Scalar> 136 voidAmbiVector<Scalar>::nonZeros() const136 int AmbiVector<Scalar>::nonZeros() const 137 137 { 138 138 if (m_mode==IsSparse) 139 139 return m_llSize;
Note: See TracBrowser
for help on using the repository browser.