We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecc28fb commit 6ba9291Copy full SHA for 6ba9291
src/SpecialFunctions.jl
@@ -13,8 +13,10 @@ using IrrationalConstants:
13
invsqrt2π,
14
logtwo,
15
logπ,
16
- log2π,
17
- inve
+ log2π
+
18
+# FIXME temporary until the fate of inve is decided
19
+Base.@irrational inve 0.367879441171442321595 inv(big(ℯ))
20
21
import ChainRulesCore
22
import LogExpFunctions
test/lambertw.jl
@@ -1,5 +1,6 @@
1
### domain errors
2
-using IrrationalConstants
+using SpecialFunctions: inve # FIXME temporary until the fate of inve is decided
3
+#using IrrationalConstants
4
5
@test_throws DomainError lambertw(-2.0, 0)
6
@test_throws DomainError lambertw(-2.0, -1)
0 commit comments