get_algorithm_name Function

private pure function get_algorithm_name(self) result(algorithm_name)

Type Bound

type_iteration

Arguments

Type IntentOptional Attributes Name
class(type_iteration), intent(in) :: self

Return Value character(len=:), allocatable


Called by

proc~~get_algorithm_name~2~~CalledByGraph proc~get_algorithm_name~2 type_iteration%get_algorithm_name proc~solve_type_hydraulic_crs solve_type_hydraulic_crs proc~solve_type_hydraulic_crs->proc~get_algorithm_name~2 proc~solve_type_thermal_crs solve_type_thermal_crs proc~solve_type_thermal_crs->proc~get_algorithm_name~2 interface~solve_type_hydraulic_crs type_hydraulic_crs%solve_type_hydraulic_crs interface~solve_type_hydraulic_crs->proc~solve_type_hydraulic_crs interface~solve_type_thermal_crs type_thermal_crs%solve_type_thermal_crs interface~solve_type_thermal_crs->proc~solve_type_thermal_crs proc~compute_type_hydraulic_crs compute_type_hydraulic_crs proc~compute_type_hydraulic_crs->interface~solve_type_hydraulic_crs proc~compute_type_thermal_crs compute_type_thermal_crs proc~compute_type_thermal_crs->interface~solve_type_thermal_crs interface~compute_type_hydraulic_crs type_hydraulic_crs%compute_type_hydraulic_crs interface~compute_type_hydraulic_crs->proc~compute_type_hydraulic_crs interface~compute_type_thermal_crs type_thermal_crs%compute_type_thermal_crs interface~compute_type_thermal_crs->proc~compute_type_thermal_crs

Source Code

    pure function get_algorithm_name(self) result(algorithm_name)
        implicit none
        class(type_iteration), intent(in) :: self
        character(:), allocatable :: algorithm_name

        algorithm_name = self%algorithm
    end function get_algorithm_name