Skip to content

Commit

Permalink
After egg's review.
Browse files Browse the repository at this point in the history
Co-authored-by: Robin Leroy <[email protected]>
  • Loading branch information
pleroy and eggrobin authored Sep 9, 2024
1 parent 447d2d1 commit 493e1a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion astronomy/time_scales_body.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion functions/accurate_table_generator_body.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ absl::StatusOr<cpp_rational> StehléZimmermannSimultaneousSearch(
std::array<std::optional<AccuratePolynomial<cpp_rational, 2>>, 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);
};
}
Expand Down

0 comments on commit 493e1a9

Please sign in to comment.