Skip to content

Commit

Permalink
Minor bugfix:
Browse files Browse the repository at this point in the history
I forgot to deallocate FGmatrix for frobenius norm fit
  • Loading branch information
lcrippa committed May 22, 2024
1 parent c5235d4 commit c661d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ED_BATH/ED_FIT_GENERAL.f90
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ subroutine chi2_fitgf_general(fg,bath_)
!
call get_dmft_bath(dmft_bath,bath_) ! *** dmft_bath --> bath_ *** (bath in output)
call deallocate_dmft_bath(dmft_bath)
deallocate(Gdelta,Xdelta,Wdelta)
deallocate(FGmatrix,Gdelta,Xdelta,Wdelta)
deallocate(getIspin,getJspin)
deallocate(getIorb,getJorb)
deallocate(array_bath)
Expand Down

0 comments on commit c661d70

Please sign in to comment.