zero_coo Subroutine

private subroutine zero_coo(self)

Type Bound

type_coo

Arguments

Type IntentOptional Attributes Name
class(type_coo), intent(inout) :: self

Calls

proc~~zero_coo~~CallsGraph proc~zero_coo type_coo%zero_coo proc~set_all_coo type_coo%set_all_coo proc~zero_coo->proc~set_all_coo

Source Code

    subroutine zero_coo(self)
        implicit none
        class(type_coo), intent(inout) :: self

        call self%set_all(0.0d0)

    end subroutine zero_coo