Skip to content

Commit

Permalink
Remove information about what the method isn't
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed Dec 13, 2024
1 parent 5c0026e commit 87b4987
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ This method works by dividing the function's domain into subdomains.
On each one, it uses a simple transformation of the input inserted into
a rational function to approximate the function's value.

The method is not iterative, it doesn't allocate memory, and it doesn't use
recursion or loops except for what might already be included in the
implementations of the logarithm and square root functions.

The implementation uses conditional switches on the input value
to select the appropriate subdomain, followed by either a square root
(and possibly a division) or a logarithm. Then it performs a series of
Expand Down
8 changes: 2 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@
//! with the method of Toshio Fukushima \[[1](#references)\].
//!
//! This method works by dividing the function's domain into subdomains.
//! On each one, it uses a simple transformation of the input inserted
//! into a rational function to approximate the function's value.
//!
//! The method is not iterative, it doesn't allocate memory, and it doesn't use
//! recursion or loops except for what might already be included in the
//! implementations of the logarithm and square root functions.
//! On each one, it uses a simple transformation of the input inserted into
//! a rational function to approximate the function's value.
//!
//! The implementation uses conditional switches on the input value
//! to select the appropriate subdomain, followed by either a square root
Expand Down

0 comments on commit 87b4987

Please sign in to comment.