get_num_nodes_square_first Module Function

module function get_num_nodes_square_first(self) result(num_nodes)

Arguments

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

Return Value integer(kind=int32)


Called by

proc~~get_num_nodes_square_first~~CalledByGraph proc~get_num_nodes_square_first get_num_nodes_square_first interface~get_num_nodes_square_first type_square_first%get_num_nodes_square_first interface~get_num_nodes_square_first->proc~get_num_nodes_square_first

Source Code

    module function get_num_nodes_square_first(self) result(num_nodes)
        implicit none
        class(type_square_first), intent(in) :: self
        integer(int32) :: num_nodes

        num_nodes = self%num_nodes
    end function get_num_nodes_square_first