smod_qz_direct Submodule

Submodule containing the implementation of the QZ-direct algorithm. We keep the general form of the eigenvalue problem and solve this directly by calling LAPACK's zggev3 routine.


Uses


Contents


Module Procedures

module procedure qz_direct module module subroutine qz_direct(matrix_A, matrix_B, settings, omega, vr)

Solves the eigenvalue problem directly.

Arguments

TypeIntentOptionalAttributesName
type(matrix_t), intent(in) :: matrix_A

matrix A

type(matrix_t), intent(in) :: matrix_B

matrix B

type(settings_t), intent(in) :: settings

settings object

complex(kind=dp), intent(out) :: omega(:)

array with eigenvalues

complex(kind=dp), intent(out) :: vr(:,:)

array with right eigenvectors