In all C code, the real type is currently used instead of double. The intention was to be able to switch between double and float types on not-so-performant machines. This feature is not needed anymore, so we should switch all the real types to double.
In some places, one should look for the REAL_IS_DOUBLE and REAL_IS_FLOAT macros and delete them too.
In all C code, the
real
type is currently used instead ofdouble
. The intention was to be able to switch between double and float types on not-so-performant machines. This feature is not needed anymore, so we should switch all thereal
types todouble
.In some places, one should look for the
REAL_IS_DOUBLE
andREAL_IS_FLOAT
macros and delete them too.