Skip to content

Commit

Permalink
Proper bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed Jul 29, 2024
1 parent 71e6374 commit 281e58d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/accurate/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use dwm1c::dwm1c;

use super::Z0;

/// Computes the principal branch of the Lambert W function, W_0(`z`), to 50 bits of accuracy, if `z` is larger than -1/e.
/// Computes the principal branch of the Lambert W function, W_0(`z`), to 50 bits of accuracy, if `z` >= -1/e.
///
/// Uses the piecewise minimax rational function approximation method of Toshio Fukushima.
///
Expand Down
2 changes: 1 addition & 1 deletion src/fast/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mod swm1;
use sw0::sw0;
use swm1::swm1;

/// Computes the principal branch of the Lambert W function, W_0(`z`), to 24 bits of accuracy, if `z` > -1/e.
/// Computes the principal branch of the Lambert W function, W_0(`z`), to 24 bits of accuracy, if `z` >= -1/e.
///
/// Uses the piecewise minimax rational function approximation method of Toshio Fukushima.
///
Expand Down

0 comments on commit 281e58d

Please sign in to comment.