-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove all results * Test border values * More descriptive feature flag names * More description in Cargo.toml * Add speed-accuracy trade-off info to readme * Update README and docstring
- Loading branch information
Showing
12 changed files
with
328 additions
and
384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lambert_w" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Johanna Sörngård <[email protected]>"] | ||
categories = ["mathematics"] | ||
|
@@ -16,11 +16,11 @@ repository = "https://github.com/JSorngard/lambert_w" | |
approx = "0.5.1" | ||
|
||
[features] | ||
default = ["24", "50"] | ||
# Enables the function versions with 50 bits of accuracy. | ||
50 = [] | ||
# Enables the function versions with 24 bits of accuracy. | ||
24 = [] | ||
default = ["24bits", "50bits"] | ||
# Enables the more accurate function versions with 50 bits of accuracy. | ||
50bits = [] | ||
# Enables the faster function versions with 24 bits of accuracy. | ||
24bits = [] | ||
|
||
# docs.rs-specific configuration. Taken from <https://stackoverflow.com/a/61417700/>. | ||
[package.metadata.docs.rs] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.