Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Registrati
Accedi
SisMaker
/
jiffy
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Projects
0
Rilasci
62
Wiki
Attività
Sfoglia il codice sorgente
Bug fix for large doubles with a fraction
My truth table was a bit busted for extreme value doubles.
pull/44/head
Paul J. Davis
12 anni fa
parent
ea5f8060ea
commit
90b28c68e6
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-1
c_src/decoder.c
+ 1
- 1
c_src/decoder.c
Vedi File
@ -561,7 +561,7 @@ parse:
if
(
!
has_frac
&
&
!
has_exp
)
{
num_type
=
d
-
>
atoms
-
>
atom_bignum
;
}
else
if
(
has_exp
)
{
}
else
if
(
!
has_frac
&
&
has_exp
)
{
num_type
=
d
-
>
atoms
-
>
atom_bignum_e
;
}
else
{
num_type
=
d
-
>
atoms
-
>
atom_bigdbl
;
Scrivi
Anteprima
Caricamento…
Annulla
Salva