From c1e434cd7a345b5af98342cfe590275cd1bdb10e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Sun, 28 Jul 2024 20:16:21 +0200 Subject: [PATCH] Update README and docstring --- README.md | 2 -- src/lib.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/README.md b/README.md index 96efed6..304e1fd 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,6 @@ Fast evaluation of the principal and secondary branches of the [Lambert W functi This method uses a piecewise minimax rational approximation of the function. -This crate is a Rust port of the original Fortran 90 code by T. Fukushima. - ## Examples Evaluate the principal branch of the Lambert W function to 50 bits of accuracy: diff --git a/src/lib.rs b/src/lib.rs index f2be512..25be34a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,8 +4,6 @@ //! //! This method uses a piecewise minimax rational approximation of the function. //! -//! This crate is a Rust port of the original Fortran 90 code by T. Fukushima. -//! //! ## Examples //! //! Evaluate the principal branch of the Lambert W function to 50 bits of accuracy: