is_stat_failure Function

private elemental function is_stat_failure(status)

Arguments

Type IntentOptional Attributes Name
type(gmsh_msh1_status_type), intent(in) :: status

Return Value logical


Called by

proc~~is_stat_failure~~CalledByGraph proc~is_stat_failure is_stat_failure proc~read_gmsh_msh1_element read_gmsh_msh1_element proc~read_gmsh_msh1_element->proc~is_stat_failure proc~read_gmsh_msh1_file_kernel read_gmsh_msh1_file_kernel proc~read_gmsh_msh1_file_kernel->proc~is_stat_failure proc~read_gmsh_msh1_file_kernel->proc~read_gmsh_msh1_element proc~validate_gmsh_msh1_file validate_gmsh_msh1_file proc~validate_gmsh_msh1_file->proc~is_stat_failure interface~validate validate interface~validate->proc~validate_gmsh_msh1_file proc~validate_gmsh_msh1_node validate_gmsh_msh1_node interface~validate->proc~validate_gmsh_msh1_node proc~read_gmsh_msh1_file read_gmsh_msh1_file proc~read_gmsh_msh1_file->proc~read_gmsh_msh1_file_kernel proc~validate_gmsh_msh1_node->interface~validate

Source Code

    elemental function is_stat_failure(status)

        type(gmsh_msh1_status_type), intent(in) :: status

        logical :: is_stat_failure



        is_stat_failure = (status%err%code .ne. stat_success)

    end function is_stat_failure