Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Variables
Type
Visibility
Attributes
Name
Initial
logical,
private
::
is_invalid
Source Code
elemental function validate_gmsh_msh1_file(mesh_data)result(is_valid)type(gmsh_msh1_data_type),intent(in)::mesh_datalogical::is_validlogical::is_invalidis_invalid=&!&is_stat_failure(mesh_data%status)&!&.or.is_iostat_failure(mesh_data%status)&!&.or.(.not.all_flag(mesh_data))is_valid=.not.is_invalidend function validate_gmsh_msh1_file