|
1 | 1 | /* |
2 | | - * Copyright 2020 INRIA |
| 2 | + * Copyright 2020-2024 INRIA |
3 | 3 | */ |
4 | 4 |
|
5 | | -#ifndef __eigenpy_utils_scalar_is_approx_hpp__ |
6 | | -#define __eigenpy_utils_scalar_is_approx_hpp__ |
| 5 | +#ifndef __eigenpy_utils_is_approx_hpp__ |
| 6 | +#define __eigenpy_utils_is_approx_hpp__ |
7 | 7 |
|
8 | 8 | #include <Eigen/Core> |
| 9 | +#include <Eigen/SparseCore> |
9 | 10 |
|
10 | 11 | namespace eigenpy { |
11 | 12 | template <typename MatrixType1, typename MatrixType2> |
12 | | -inline EIGEN_DONT_INLINE bool is_approx( |
13 | | - const Eigen::MatrixBase<MatrixType1>& mat1, |
14 | | - const Eigen::MatrixBase<MatrixType2>& mat2, |
| 13 | +EIGEN_DONT_INLINE bool is_approx(const Eigen::MatrixBase<MatrixType1>& mat1, |
| 14 | + const Eigen::MatrixBase<MatrixType2>& mat2, |
| 15 | + const typename MatrixType1::Scalar& prec) { |
| 16 | + return mat1.isApprox(mat2, prec); |
| 17 | +} |
| 18 | + |
| 19 | +template <typename MatrixType1, typename MatrixType2> |
| 20 | +EIGEN_DONT_INLINE bool is_approx(const Eigen::MatrixBase<MatrixType1>& mat1, |
| 21 | + const Eigen::MatrixBase<MatrixType2>& mat2) { |
| 22 | + return is_approx( |
| 23 | + mat1, mat2, |
| 24 | + Eigen::NumTraits<typename MatrixType1::Scalar>::dummy_precision()); |
| 25 | +} |
| 26 | + |
| 27 | +template <typename MatrixType1, typename MatrixType2> |
| 28 | +EIGEN_DONT_INLINE bool is_approx( |
| 29 | + const Eigen::SparseMatrixBase<MatrixType1>& mat1, |
| 30 | + const Eigen::SparseMatrixBase<MatrixType2>& mat2, |
15 | 31 | const typename MatrixType1::Scalar& prec) { |
16 | 32 | return mat1.isApprox(mat2, prec); |
17 | 33 | } |
18 | 34 |
|
19 | 35 | template <typename MatrixType1, typename MatrixType2> |
20 | | -inline EIGEN_DONT_INLINE bool is_approx( |
21 | | - const Eigen::MatrixBase<MatrixType1>& mat1, |
22 | | - const Eigen::MatrixBase<MatrixType2>& mat2) { |
| 36 | +EIGEN_DONT_INLINE bool is_approx( |
| 37 | + const Eigen::SparseMatrixBase<MatrixType1>& mat1, |
| 38 | + const Eigen::SparseMatrixBase<MatrixType2>& mat2) { |
23 | 39 | return is_approx( |
24 | 40 | mat1, mat2, |
25 | 41 | Eigen::NumTraits<typename MatrixType1::Scalar>::dummy_precision()); |
26 | 42 | } |
27 | 43 | } // namespace eigenpy |
28 | 44 |
|
29 | | -#endif // ifndef __eigenpy_utils_scalar_is_approx_hpp__ |
| 45 | +#endif // ifndef __eigenpy_utils_is_approx_hpp__ |
0 commit comments