n_inputs_wrapper Subroutine

public subroutine n_inputs_wrapper(me, n_inputs)

Arguments

Type IntentOptional Attributes Name
class(simulated_annealing_type), intent(inout) :: me
integer, intent(out) :: n_inputs

Calls

proc~~n_inputs_wrapper~~CallsGraph proc~n_inputs_wrapper n_inputs_wrapper c_n_inputs_ptr c_n_inputs_ptr proc~n_inputs_wrapper->c_n_inputs_ptr

Source Code

    subroutine n_inputs_wrapper(me, n_inputs)
        class(simulated_annealing_type), intent(inout) :: me
        integer, intent(out) :: n_inputs

        select type (me)
         type is (c_sa_wrapper_type)
          call me%c_n_inputs_ptr(me%iproblem, n_inputs)
        end select

    end subroutine n_inputs_wrapper