123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef CERES_INTERNAL_IS_CLOSE_H_
- #define CERES_INTERNAL_IS_CLOSE_H_
- #include "ceres/internal/disable_warnings.h"
- #include "ceres/internal/export.h"
- namespace ceres::internal {
- CERES_NO_EXPORT bool IsClose(double x,
- double y,
- double relative_precision,
- double* relative_error,
- double* absolute_error)
- }
- #include "ceres/internal/reenable_warnings.h"
- #endif
|