We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
random_number
The following code snippet from LFRic (taken from PSyclone's tests/psyad/tl2ad_test.py
tests/psyad/tl2ad_test.py
real, dimension(npts) :: field call random_number(field)
does not recognise random_number as an intrinsic. FParser returns it as:
Call_Stmt(Name('random_number'), Actual_Arg_Spec_List(',', (Name('field'),)))
It should not be a Call_Stmt. I checked - it calls Call_Stmt.match, but not Intrinsic_Name.match.
Call_Stmt.match
Intrinsic_Name.match
The text was updated successfully, but these errors were encountered:
date_and_time has the same issue. As has back_trace. I'll stop listing them :)
date_and_time
Sorry, something went wrong.
No branches or pull requests
The following code snippet from LFRic (taken from PSyclone's
tests/psyad/tl2ad_test.py
does not recognise
random_number
as an intrinsic. FParser returns it as:It should not be a Call_Stmt. I checked - it calls
Call_Stmt.match
, but notIntrinsic_Name.match
.The text was updated successfully, but these errors were encountered: