Revert "libs/libm: fix epsilon relaxation in log and logf"

This reverts commit a2ed0ddd72.
This commit is contained in:
Petro Karashchenko 2024-09-05 11:39:43 +02:00 committed by Xiang Xiao
parent c45e4ac440
commit 9cfb10069c
2 changed files with 2 additions and 2 deletions

View file

@ -98,7 +98,7 @@ double log(double x)
iter = 0;
}
if (iter == 0)
if (relax_factor > 1.0)
{
epsilon *= relax_factor;
}

View file

@ -94,7 +94,7 @@ float logf(float x)
iter = 0;
}
if (iter == 0)
if (relax_factor > 1.0F)
{
epsilon *= relax_factor;
}