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 an infinite loop in the real number print function.
legacy
Sam Hocevar
sam
13 anos atrás
pai
dfdff977c1
commit
a949a2cd08
1 arquivos alterados
com
6 adições
e
0 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+6
-0
src/real.cpp
+ 6
- 0
src/real.cpp
Ver arquivo
@@ -1274,6 +1274,12 @@ void real::print(int ndigits) const
x = -x;
}
if (!x)
{
printf("0.0\n");
return;
}
/* Normalise x so that mantissa is in [1..9.999] */
/* FIXME: better use int64_t when the cast is implemented */
int exponent = ceil(log10(x));
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar