DestroyLanczosCalc Subroutine

public subroutine DestroyLanczosCalc(this)

Arguments

Type IntentOptional Attributes Name
type(LanczosCalcType), intent(inout) :: this

Contents

Source Code


Source Code

    subroutine DestroyLanczosCalc(this)
        type(LanczosCalcType), intent(inout) :: this
        call FreeLanczosCalc(this)
        ! deallocate results as well
        safe_free(this%eigenvalues)
        safe_free(this%eigenvectors)
    end subroutine DestroyLanczosCalc