Skip to content

Commit

Permalink
Mention in files that they are made by T. Fukushima and ported
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed Jul 28, 2024
1 parent d7ccc73 commit 283fbcc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/accurate/dw0c.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! The original implementation of the principal branch of the Lambert W function by Toshio Fukushima, accurate to 50 bits, ported to Rust.
use crate::LambertW0Error;

/// 50-bit accuracy computation of principal branch of Lambert W function, W_0(z),
Expand Down
2 changes: 2 additions & 0 deletions src/accurate/dwm1c.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! The original implementation of the secondary branch of the Lambert W function by Toshio Fukushima, accurate to 50 bits, ported to Rust.
use super::super::{X0, Z0};
use crate::{LambertWm1Error, LambertWm1ErrorReason};

Expand Down
2 changes: 2 additions & 0 deletions src/fast/sw0.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! The original implementation of the principal branch of the Lambert W function by Toshio Fukushima, accurate to 24 bits, ported to Rust.
use super::super::Z0;
use crate::LambertW0Error;

Expand Down
2 changes: 2 additions & 0 deletions src/fast/swm1.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! The original implementation of the secondary branch of the Lambert W function by Toshio Fukushima, accurate to 24 bits, ported to Rust.
use super::super::{X0, Z0};
use crate::{LambertWm1Error, LambertWm1ErrorReason};

Expand Down

0 comments on commit 283fbcc

Please sign in to comment.