mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 07:28:38 +08:00
libs/libm/libm: increase number of 'log' iterations before epsilon relaxation
Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
parent
02b1e895e2
commit
c6a7816bed
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@
|
|||
* todo: might need to adjust the double floating point version too.
|
||||
*/
|
||||
|
||||
#define LOG_MAX_ITER 10
|
||||
#define LOG_MAX_ITER 400
|
||||
#define LOG_RELAX_MULTIPLIER 2.0
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
* todo: might need to adjust the double floating point version too.
|
||||
*/
|
||||
|
||||
#define LOGF_MAX_ITER 10
|
||||
#define LOGF_MAX_ITER 400
|
||||
#define LOGF_RELAX_MULTIPLIER 2.0F
|
||||
|
||||
/****************************************************************************
|
||||
|
|
Loading…
Reference in a new issue