empa-scientific-it / cleedpy

MIT License
1 stars 0 forks source link

Convert all `real` types to `double` #52

Open yakutovicha opened 3 months ago

yakutovicha commented 3 months ago

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.