is_binary_gmsh_msh_format Function

private elemental function is_binary_gmsh_msh_format(gmsh_msh_format) result(res)

Checks if the read Gmsh MSH file is binary mode

Arguments

Type IntentOptional Attributes Name
type(gmsh_msh_format_type), intent(in) :: gmsh_msh_format

Return Value logical


Called by

proc~~is_binary_gmsh_msh_format~~CalledByGraph proc~is_binary_gmsh_msh_format is_binary_gmsh_msh_format interface~is_binary is_binary interface~is_binary->proc~is_binary_gmsh_msh_format

Source Code

    elemental function is_binary_gmsh_msh_format(gmsh_msh_format) result(res)

        type(gmsh_msh_format_type), intent(in) :: gmsh_msh_format

        logical :: res



        res = gmsh_msh_format%file_type .eq. 1_c_int

    end function is_binary_gmsh_msh_format