-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Boz constants not allowed in select case construct #2
Comments
Yes, running into this one...Could you elaborate more on this please?
|
This only matters if you are using the Concerning the boz constants, the issue is here in the construct:
The boz constants of form
and a comment block added to the code. The same needs to be done at line 272 in |
Thanks! I ended up just trimming this file. I really just need a subset of functions from the interface. |
The Intel Fortran compiler shows warning when compiling the
read_graph
andwrite_graph
routines inmetis_oo_interface.f90
due to the use of BOZ constants (e.g. b'001', b '101') in the select case construct used to discern different types of graphs.One solution is to simply convert the Boz constant to integers with the
int
intrinsic, or simply code their integer values their directly (and put the binary pattern in a comment).The text was updated successfully, but these errors were encountered: