Generic procedures in fortran 2003

1.4k Views Asked by At

I know that fortran has the concept of a generic procedure allowing users to define several specific procedures and collecting their interfaces in an interface block. What is not clear to me however is whether it is possible to remove code duplication by only having one implementation of a generic function.

As an example consider the intrinsic SIN function. It can accept both real and double precision arguments. Does this mean there are two implementations say SIN_REAL and SIN_DOUBLE_PRECISION with exactly the same code?

Apologies for the naive question, I am a fortran beginner. Thanks for reading.

1

There are 1 best solutions below

2
On

As an example consider the intrinsic SIN function. It can accept both real and double precision arguments. Does this mean there are two implementations say SIN_REAL and SIN_DOUBLE_PRECISION with exactly the same code?

Yes. But you can manage the common progamming part in putting this one in an include file.