From 2fa1010fd9ddc05b75fe756d55ce49becfc18b5f Mon Sep 17 00:00:00 2001 From: Pierre-Francois Loos Date: Mon, 17 Jan 2022 15:15:27 +0100 Subject: [PATCH] fix bug linGF --- src/QuAcK/read_options.f90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/QuAcK/read_options.f90 b/src/QuAcK/read_options.f90 index b27077a..383aaee 100644 --- a/src/QuAcK/read_options.f90 +++ b/src/QuAcK/read_options.f90 @@ -195,13 +195,13 @@ subroutine read_options(maxSCF_HF,thresh_HF,DIIS_HF,n_diis_HF,guess_type,ortho_t if(answer8 == 'T') regGW = .true. if(.not.DIIS_GW) n_diis_GW = 1 -! Read GF options +! Read GT options maxSCF_GT = 64 thresh_GT = 1d-5 DIIS_GT = .false. n_diis_GT = 5 - linGF = .false. + linGT = .false. eta_GT = 0d0 regGT = .false. TDA_T = .false.