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 8affa46 commit dc1cae9Copy full SHA for dc1cae9
test/runtests.jl
@@ -134,6 +134,7 @@ separator()
134
DistSpec(:TriangularDist, (1, 2), 1.5),
135
DistSpec(:TriangularDist, (1, 3, 2), 1.5),
136
DistSpec(:Triweight, (1, 1), 1),
137
+ DistSpec(:((mu, sigma, l, u) -> Truncated(Normal(mu, sigma), l, u)), (0.0, 1.0, 1.0, 2.0), 1.5),
138
DistSpec(:Uniform, (), 0.5),
139
DistSpec(:Uniform, (0, 1), 0.5),
140
DistSpec(:VonMises, (), 1),
@@ -152,8 +153,6 @@ separator()
152
153
DistSpec(:NoncentralChisq, (1.0, 2.0), 0.5),
154
DistSpec(:NoncentralF, (1, 2, 1), 0.5),
155
DistSpec(:NoncentralT, (1, 2), 0.5),
- # Dispatch error caused by lack of type parameters in Distributions.Truncated
156
- DistSpec(:((mu, sigma, l, u) -> Truncated(Normal(mu, sigma), l, u)), (0.0, 1.0, 1.0, 2.0), 1.5),
157
# Stackoverflow caused by SpecialFunctions.besselix
158
DistSpec(:VonMises, (1.0,), 1.0),
159
DistSpec(:VonMises, (1, 1), 1),
0 commit comments