Skip to content

Commit

Permalink
Update URL
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Mar 19, 2024
1 parent 4cc6736 commit 7f4cdc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LogarithmicIntegral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ T Li(T x)
/// This implementation computes Li^-1(x) as the zero of the
/// function f(z) = Li(z) - x using the Newton–Raphson method.
/// Note that Li'(z) = 1 / log(z).
/// https://math.stackexchange.com/a/853192
/// https://en.wikipedia.org/wiki/Newton%27s_method
///
/// Newton–Raphson method:
/// zn+1 = zn - (f(zn) / f'(zn)).
Expand Down Expand Up @@ -252,7 +252,7 @@ __float128 Li(__float128 x)
/// This implementation computes Li^-1(x) as the zero of the
/// function f(z) = Li(z) - x using the Newton–Raphson method.
/// Note that Li'(z) = 1 / log(z).
/// https://math.stackexchange.com/a/853192
/// https://en.wikipedia.org/wiki/Newton%27s_method
///
/// Newton–Raphson method:
/// zn+1 = zn - (f(zn) / f'(zn)).
Expand Down

0 comments on commit 7f4cdc4

Please sign in to comment.