From 493e1a9429bf12cbba0ebbbcefcd78c6567b4726 Mon Sep 17 00:00:00 2001 From: Pascal Leroy Date: Mon, 9 Sep 2024 21:44:11 +0200 Subject: [PATCH] After egg's review. Co-authored-by: Robin Leroy --- astronomy/time_scales_body.hpp | 2 +- functions/accurate_table_generator_body.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/astronomy/time_scales_body.hpp b/astronomy/time_scales_body.hpp index 08d3a4e1a7..7013f55f78 100644 --- a/astronomy/time_scales_body.hpp +++ b/astronomy/time_scales_body.hpp @@ -375,7 +375,7 @@ constexpr Instant InterpolatedEOPC04(EOPC04Entry const* low, ((low + 1)->ut1() - low->ut1()))); } -// UT1 Julian Day fraction in [-1/2 - ε, 1/2 + ε] where ε bounds `UT1-UTC`, +// UT1 Julian Day fraction in [-1/2 - ε, 1/2 + ε] where ε bounds |UT1-UTC|, // obtained by linear interpolation of EOP C04 on the TT range // [low->tt(), (low + 1)->tt()]. // `jd_minus_2451545` is set to the integer such that the Julian UT1 date is diff --git a/functions/accurate_table_generator_body.hpp b/functions/accurate_table_generator_body.hpp index 7e65eebd43..850f7a44ef 100644 --- a/functions/accurate_table_generator_body.hpp +++ b/functions/accurate_table_generator_body.hpp @@ -369,7 +369,7 @@ absl::StatusOr StehléZimmermannSimultaneousSearch( std::array>, 2> P; for (std::int64_t i = 0; i < functions.size(); ++i) { F[i] = [&functions, i, N, &starting_argument](cpp_rational const& t) { - // Here `t` <= `T`. + // Here |t| ≤ T. return N * functions[i](starting_argument + t / N); }; }