123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef CERES_PUBLIC_CONSTANTS_H_
- #define CERES_PUBLIC_CONSTANTS_H_
- namespace ceres::constants {
- template <typename T>
- inline constexpr T pi_v(3.141592653589793238462643383279502884);
- inline constexpr double pi = pi_v<double>;
- }
- #endif
|