Este site funciona melhor com JavaScript.
Página inicial
Ajuda
Acessar
lolengine
/
lol
espelhamento de
https://github.com/lolengine/lol
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
0
Wiki
Atividade
Ver código fonte
math: fix a bug in real::cbrt() that completely broke the function.
legacy
Sam Hocevar
5 anos atrás
pai
90bf8a37d5
commit
5814dd4cf0
1 arquivos alterados
com
1 adições
e
1 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+1
-1
src/math/real.cpp
+ 1
- 1
src/math/real.cpp
Ver arquivo
@@ -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;
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar