File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 191191 Lm = loggamma (z_minus)
192192 Lp = loggamma (z_plus)
193193
194- zf_minus = SpecialFunctions . _loggamma_oracle64_point (z_minus)
195- zf_plus = SpecialFunctions . _loggamma_oracle64_point (z_plus)
196- Lf_minus = SpecialFunctions . loggamma (zf_minus)
197- Lf_plus = SpecialFunctions . loggamma (zf_plus)
194+ zf_minus = _loggamma_oracle64_point (z_minus)
195+ zf_plus = _loggamma_oracle64_point (z_plus)
196+ Lf_minus = loggamma (zf_minus)
197+ Lf_plus = loggamma (zf_plus)
198198
199199 @test isapprox (Float64 (real (Lm)), real (Lf_minus); rtol= 0 , atol= 1e-14 )
200200 @test isapprox (Float64 (imag (Lm)), imag (Lf_minus); rtol= 0 , atol= 1e-14 )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ using Aqua: Aqua
1111using ExplicitImports: ExplicitImports
1212using JET: JET
1313
14- using SpecialFunctions: AmosException, f64
14+ using SpecialFunctions: AmosException, f64, _loggamma_oracle64_point
1515
1616# useful test functions for relative error, which differ from isapprox
1717# relerr separately looks at the real and imaginary parts if one of the arguments is complex
You can’t perform that action at this time.
0 commit comments