Explorar el Código

math: fix a bug in real::cbrt() that completely broke the function.

legacy
Sam Hocevar hace 5 años
padre
commit
5814dd4cf0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/math/real.cpp

+ 1
- 1
src/math/real.cpp Ver fichero

@@ -821,7 +821,7 @@ template<> real cbrt(real const &x)
real third = inverse(real::R_3());
for (int i = 1; i <= x.bigit_count(); i *= 2)
{
ret = third * (x / (ret * ret) + (ret / 2));
ret = third * (x / (ret * ret) + (ret * 2));
}

return ret;


Cargando…
Cancelar
Guardar