mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
slight tuning of cutoff parameters
This commit is contained in:
parent
0021661d61
commit
0346fe4df7
1 changed files with 3 additions and 3 deletions
|
@ -146,12 +146,12 @@ arb_hypgeom_legendre_p_ui(arb_t res, arb_t res_prime, ulong n, const arb_t x, sl
|
|||
basecase_ok = ((xx < 0.999999 && n < 10 && prec < 2000) ||
|
||||
(xx < 0.999999 && n < 50 && prec < 1000) ||
|
||||
(xx < 0.9999 && n < 100 && prec < 1000) ||
|
||||
(xx < 0.999 && n < 300 && prec < 1000) ||
|
||||
(xx < 0.9 && n < 300 && prec < 600))
|
||||
(xx < 0.999 && n < 350 && prec < 1000) ||
|
||||
(xx < 0.9 && n < 400 && prec < 1000))
|
||||
&& ((xx > 0.00001 && n < 10 && prec < 2000) ||
|
||||
(xx > 0.00001 && n < 60 && prec < 1000) ||
|
||||
(xx > 0.01 && n < 200 && prec < 1000) ||
|
||||
(xx > 0.1 && n < 300 && prec < 1000));
|
||||
(xx > 0.1 && n < 400 && prec < 1000));
|
||||
}
|
||||
else if (prec < 500)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue