Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
lolengine
/
lol
réplica de
https://github.com/lolengine/lol
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
math: fix a bug in real::cbrt() that completely broke the function.
legacy
Sam Hocevar
hace 5 años
padre
90bf8a37d5
commit
5814dd4cf0
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+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;
Escribir
Vista previa
Cargando…
Cancelar
Guardar