Re: Numerics
josé bollo <[email protected]>
| Newsgroups | gmane.comp.lang.eiffel.smalleiffel |
|---|---|
| Message-ID | <[email protected]> |
hi all,
i have looked at the generated C code!
supposing that x is a REAL_32, x+1 is a valid expression and its C form
is something like x+(int8)(1)
when i write x+{REAL_32 1.0} then the C from is somthing like that
x+(float)(1.0F)
so the way it is written influencies the performances
but one can not write x+1.0
it is very complicate
regards
josé