mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 08:38:38 +08:00
Revert "libs/libm: fix epsilon relaxation in log and logf"
This reverts commit a2ed0ddd72
.
This commit is contained in:
parent
c45e4ac440
commit
9cfb10069c
2 changed files with 2 additions and 2 deletions
|
@ -98,7 +98,7 @@ double log(double x)
|
|||
iter = 0;
|
||||
}
|
||||
|
||||
if (iter == 0)
|
||||
if (relax_factor > 1.0)
|
||||
{
|
||||
epsilon *= relax_factor;
|
||||
}
|
||||
|
|
|
@ -94,7 +94,7 @@ float logf(float x)
|
|||
iter = 0;
|
||||
}
|
||||
|
||||
if (iter == 0)
|
||||
if (relax_factor > 1.0F)
|
||||
{
|
||||
epsilon *= relax_factor;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue