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
The Fortran 2003 intrinsic module iso_c_binding is used in the sample implementation bmi_heat.f90 to flatten arrays. Although there's nothing wrong with this, I think it's unnecessary; the arrays can be flattened using pure Fortran pointers. I may be wrong about this, but it would be nice to remove this dependency since it adds an additional layer of complexity for a model developer trying to implement this BMI.
The text was updated successfully, but these errors were encountered:
I'll mark this as pending, since I've advertised our BMI as only needing 2003, not 2008. OTOH, it's quite clean, and it removes the iso_c_binding dependency.
The Fortran 2003 intrinsic module
iso_c_binding
is used in the sample implementation bmi_heat.f90 to flatten arrays. Although there's nothing wrong with this, I think it's unnecessary; the arrays can be flattened using pure Fortran pointers. I may be wrong about this, but it would be nice to remove this dependency since it adds an additional layer of complexity for a model developer trying to implement this BMI.The text was updated successfully, but these errors were encountered: