You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: