Closed jacobwilliams closed 4 years ago
When strict type checking is false, the real to int conversion is using:
value = int(me%dbl_value)
It should probably be:
value = int(me%dbl_value, IK)
for the case where the library has been compiled with a non-default int kind.
int
When strict type checking is false, the real to int conversion is using:
It should probably be:
for the case where the library has been compiled with a non-default
int
kind.