mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-22 09:39:34 +08:00
Fix warning typedef XXX locally defined but not used
This commit is contained in:
parent
7adfca5af2
commit
cf5c5ed725
@ -11,7 +11,6 @@
|
|||||||
|
|
||||||
template<typename Scalar> void special_numbers()
|
template<typename Scalar> void special_numbers()
|
||||||
{
|
{
|
||||||
typedef typename NumTraits<Scalar>::Real RealScalar;
|
|
||||||
typedef Matrix<Scalar, Dynamic,Dynamic> MatType;
|
typedef Matrix<Scalar, Dynamic,Dynamic> MatType;
|
||||||
int rows = internal::random<int>(1,300);
|
int rows = internal::random<int>(1,300);
|
||||||
int cols = internal::random<int>(1,300);
|
int cols = internal::random<int>(1,300);
|
||||||
|
@ -295,11 +295,7 @@ namespace Eigen
|
|||||||
enum { Order = SplineTraits<SplineType>::OrderAtCompileTime };
|
enum { Order = SplineTraits<SplineType>::OrderAtCompileTime };
|
||||||
enum { DerivativeOrder = DerivativeType::ColsAtCompileTime };
|
enum { DerivativeOrder = DerivativeType::ColsAtCompileTime };
|
||||||
|
|
||||||
typedef typename SplineTraits<SplineType>::Scalar Scalar;
|
|
||||||
|
|
||||||
typedef typename SplineTraits<SplineType>::BasisVectorType BasisVectorType;
|
|
||||||
typedef typename SplineTraits<SplineType>::ControlPointVectorType ControlPointVectorType;
|
typedef typename SplineTraits<SplineType>::ControlPointVectorType ControlPointVectorType;
|
||||||
|
|
||||||
typedef typename SplineTraits<SplineType,DerivativeOrder>::BasisDerivativeType BasisDerivativeType;
|
typedef typename SplineTraits<SplineType,DerivativeOrder>::BasisDerivativeType BasisDerivativeType;
|
||||||
typedef typename BasisDerivativeType::ConstRowXpr BasisDerivativeRowXpr;
|
typedef typename BasisDerivativeType::ConstRowXpr BasisDerivativeRowXpr;
|
||||||
|
|
||||||
@ -358,7 +354,6 @@ namespace Eigen
|
|||||||
typedef typename SplineTraits<SplineType>::Scalar Scalar;
|
typedef typename SplineTraits<SplineType>::Scalar Scalar;
|
||||||
typedef typename SplineTraits<SplineType>::BasisVectorType BasisVectorType;
|
typedef typename SplineTraits<SplineType>::BasisVectorType BasisVectorType;
|
||||||
typedef typename SplineTraits<SplineType>::KnotVectorType KnotVectorType;
|
typedef typename SplineTraits<SplineType>::KnotVectorType KnotVectorType;
|
||||||
typedef typename SplineTraits<SplineType>::ControlPointVectorType ControlPointVectorType;
|
|
||||||
|
|
||||||
const KnotVectorType& U = spline.knots();
|
const KnotVectorType& U = spline.knots();
|
||||||
|
|
||||||
|
@ -40,8 +40,6 @@ namespace Eigen
|
|||||||
template <typename KnotVectorType>
|
template <typename KnotVectorType>
|
||||||
void KnotAveraging(const KnotVectorType& parameters, DenseIndex degree, KnotVectorType& knots)
|
void KnotAveraging(const KnotVectorType& parameters, DenseIndex degree, KnotVectorType& knots)
|
||||||
{
|
{
|
||||||
typedef typename KnotVectorType::Scalar Scalar;
|
|
||||||
|
|
||||||
knots.resize(parameters.size()+degree+1);
|
knots.resize(parameters.size()+degree+1);
|
||||||
|
|
||||||
for (DenseIndex j=1; j<parameters.size()-degree; ++j)
|
for (DenseIndex j=1; j<parameters.size()-degree; ++j)
|
||||||
@ -118,7 +116,6 @@ namespace Eigen
|
|||||||
SplineType SplineFitting<SplineType>::Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_parameters)
|
SplineType SplineFitting<SplineType>::Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_parameters)
|
||||||
{
|
{
|
||||||
typedef typename SplineType::KnotVectorType::Scalar Scalar;
|
typedef typename SplineType::KnotVectorType::Scalar Scalar;
|
||||||
typedef typename SplineType::BasisVectorType BasisVectorType;
|
|
||||||
typedef typename SplineType::ControlPointVectorType ControlPointVectorType;
|
typedef typename SplineType::ControlPointVectorType ControlPointVectorType;
|
||||||
|
|
||||||
typedef Matrix<Scalar,Dynamic,Dynamic> MatrixType;
|
typedef Matrix<Scalar,Dynamic,Dynamic> MatrixType;
|
||||||
|
@ -161,12 +161,12 @@ void testMatrixVector(const MatrixType& m, const VectorType& v, double tol)
|
|||||||
testTriangularProduct(m,v,tol);
|
testTriangularProduct(m,v,tol);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
typedef Matrix<double,3,3,RowMajor> Matrix3dRowMajor;
|
||||||
|
typedef Matrix<long double,Dynamic,Dynamic> MatrixXe;
|
||||||
|
typedef Matrix<long double,Dynamic,1> VectorXe;
|
||||||
|
|
||||||
void test_matrix_power()
|
void test_matrix_power()
|
||||||
{
|
{
|
||||||
typedef Matrix<double,3,3,RowMajor> Matrix3dRowMajor;
|
|
||||||
typedef Matrix<long double,Dynamic,Dynamic> MatrixXe;
|
|
||||||
typedef Matrix<long double,Dynamic,1> VectorXe;
|
|
||||||
|
|
||||||
CALL_SUBTEST_2(test2dRotation<double>(1e-13));
|
CALL_SUBTEST_2(test2dRotation<double>(1e-13));
|
||||||
CALL_SUBTEST_1(test2dRotation<float>(2e-5)); // was 1e-5, relaxed for clang 2.8 / linux / x86-64
|
CALL_SUBTEST_1(test2dRotation<float>(2e-5)); // was 1e-5, relaxed for clang 2.8 / linux / x86-64
|
||||||
CALL_SUBTEST_9(test2dRotation<long double>(1e-13));
|
CALL_SUBTEST_9(test2dRotation<long double>(1e-13));
|
||||||
|
@ -106,10 +106,7 @@ void evalSolverSugarFunction( const POLYNOMIAL& pols, const ROOTS& roots, const
|
|||||||
|
|
||||||
typedef typename POLYNOMIAL::Scalar Scalar;
|
typedef typename POLYNOMIAL::Scalar Scalar;
|
||||||
typedef typename REAL_ROOTS::Scalar Real;
|
typedef typename REAL_ROOTS::Scalar Real;
|
||||||
|
|
||||||
typedef PolynomialSolver<Scalar, Deg > PolynomialSolverType;
|
typedef PolynomialSolver<Scalar, Deg > PolynomialSolverType;
|
||||||
typedef typename PolynomialSolverType::RootsType RootsType;
|
|
||||||
typedef Matrix<Scalar,Deg,1> EvalRootsType;
|
|
||||||
|
|
||||||
//Test realRoots
|
//Test realRoots
|
||||||
std::vector< Real > calc_realRoots;
|
std::vector< Real > calc_realRoots;
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
template<typename SetterType,typename DenseType, typename Scalar, int Options>
|
template<typename SetterType,typename DenseType, typename Scalar, int Options>
|
||||||
bool test_random_setter(SparseMatrix<Scalar,Options>& sm, const DenseType& ref, const std::vector<Vector2i>& nonzeroCoords)
|
bool test_random_setter(SparseMatrix<Scalar,Options>& sm, const DenseType& ref, const std::vector<Vector2i>& nonzeroCoords)
|
||||||
{
|
{
|
||||||
typedef SparseMatrix<Scalar,Options> SparseType;
|
|
||||||
{
|
{
|
||||||
sm.setZero();
|
sm.setZero();
|
||||||
SetterType w(sm);
|
SetterType w(sm);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user