max(x, y) + log1p(exp(-abs(x - y)))
which is a good approximation if x
and y
are of the same order of magnitude, but if they
are of very different sizes just returns the maximum of the two. To prevent adding numbers of very different
magnitude we iteratively add the numbers pairwise. Because of numerical issues with doing this, the order
of the input values can affect the result.
log_sum_of_logs(log_values)