mirror of
https://github.com/vale981/arb
synced 2025-03-06 01:41:39 -05:00
comment out superfluous precondition check for unsigned M < 0
(avoid compiler warning)
This commit is contained in:
parent
7e7f47d734
commit
fda6608900
1 changed files with 1 additions and 2 deletions
|
@ -38,7 +38,7 @@ arb_const_khinchin_eval_param(arb_t s, ulong N, ulong M, long prec)
|
|||
arb_init(h);
|
||||
|
||||
if (N < 2) abort();
|
||||
if (M < 0) abort();
|
||||
/* if (M < 0) abort(); */
|
||||
|
||||
pows = _arb_vec_init(N - 2);
|
||||
|
||||
|
@ -121,4 +121,3 @@ arb_const_khinchin_eval(arb_t K, long prec)
|
|||
}
|
||||
|
||||
ARB_DEF_CACHED_CONSTANT(arb_const_khinchin, arb_const_khinchin_eval)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue