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 Intel Fortran compiler shows warning when compiling the read_graph and write_graph routines in metis_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:
This only matters if you are using the read_graph or write_graph routines which are not thoroughly tested yet. If not, I would recommend simply copying metis_interface.f90 into your project.
Concerning the boz constants, the issue is here in the construct:
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: