-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add 1/e constant #13
base: main
Are you sure you want to change the base?
Add 1/e constant #13
Conversation
useful in many situations, also -exp(-1) is the branching point of Lambert's W_0(t) and W_{-1}(t)
Pull Request Test Coverage Report for Build 1649138962Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
It seems it's only used in the tests but not required by the implementation in the PR? |
I can make it required from the code too, because there it is used several times implicitly (as in the original version). |
I am not hesitant per se, I just want to understand the motivation for this PR so I can review it properly. You provided one argument for adding it but at first glance it does not seem completely convincing since the constant is not used in the package but only in the tests. Maybe you can update the SpecialFunctions PR and show how it is useful for the actual implementation as well? I would guess that often one could also just use eg. |
|
Adds
inve = 1/e
constant (cherry-picked from #12). Required by JuliaMath/SpecialFunctions.jl/issues/371