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
When parsing and regenerating a FUNCTION that is declared with a return type, the return type keyword is removed from the prefix specifications and replaced by a declaration of the function's result. The syntax is different but the behavior of the function has not changed.
For example, parsing and regenerating this function:
REALFUNCTIONsquare(a)
IMPLICIT NONEREAL, INTENT(IN) :: a
square = a * a
ENDFUNCTION square
leads to:
FUNCTIONsquare(a)
IMPLICIT NONEREAL:: square
REAL, INTENT(IN) :: a
square = a * a
ENDFUNCTION square
Howerer, if a RESULT clause is added to the function declaration, this leads to an incorrect inference of the result and thus to a error when compiling the regenerated code. For example, parsing and regenerating this function:
REALFUNCTIONsquare(a) result(b)
IMPLICIT NONEREAL, INTENT(IN) :: a
b = a * a
ENDFUNCTION square
leads to:
FUNCTIONsquare (a) RESULT(b)
IMPLICIT NONEREAL:: square ! this should be REAL:: b
REAL, INTENT(IN) :: a
b = a*a
ENDFUNCTIONsquare
where the declared result should b instead of square.
We are not sure how the wrong result inference should be addressed. Keeping the result type in the declaration (as in other programing languages) would be nice but not necessary.
What are the steps to reproduce the bug?
fcode="""REAL FUNCTION square(a) result(b) IMPLICIT NONE REAL, INTENT(IN) :: a b = a * aEND FUNCTION square""".strip()
square=Subroutine.from_source(fcode)
print(square.result_name) # bprint(square.return_type) # Noneprint(square.to_fortran())
What happened?
When parsing and regenerating a
FUNCTION
that is declared with a return type, the return type keyword is removed from theprefix
specifications and replaced by a declaration of the function's result. The syntax is different but the behavior of the function has not changed.For example, parsing and regenerating this function:
leads to:
Howerer, if a
RESULT
clause is added to the function declaration, this leads to an incorrect inference of the result and thus to a error when compiling the regenerated code. For example, parsing and regenerating this function:leads to:
where the declared result should
b
instead ofsquare
.We are not sure how the wrong result inference should be addressed. Keeping the result type in the declaration (as in other programing languages) would be nice but not necessary.
What are the steps to reproduce the bug?
The output is:
Version
0.3.1
Platform (OS and architecture)
Red Hat Enterprise Linux 9.2 - Python 3.12.7
Relevant log output
Accompanying data
No response
Organisation
IPSL
The text was updated successfully, but these errors were encountered: