Skip to content

Commit

Permalink
Intermediate commit
Browse files Browse the repository at this point in the history
While having a quick check to the code status, fixing a minimal typo
for the bath_type=general case.
Thanks Adriano for taking care of this.
  • Loading branch information
lcrippa committed Dec 12, 2024
1 parent 56b3488 commit 23ce802
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ED_BATH/delta_functions/delta_general.f90
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function delta_bath_array_general(x,dmft_bath_,axis) result(Delta)
!
do ibath=1,Nbath
v = dmft_bath_%item(ibath)%vg
Hk = nn2so_reshape(Hreplica_build(dmft_bath_%item(ibath)%lambda),Nnambu*Nspin,Norb)
Hk = nn2so_reshape(Hgeneral_build(dmft_bath_%item(ibath)%lambda),Nnambu*Nspin,Norb)
Vk = kron( pauli_sigma_z, one*diag(v) )
do i=1,L
invH_k = diag(Z(:,i)) - Hk
Expand Down
2 changes: 1 addition & 1 deletion src/ED_BATH/delta_functions/fdelta_general.f90
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function fdelta_bath_array_general(x,dmft_bath_,axis) result(Fdelta)
!
do ibath=1,Nbath
V = dmft_bath_%item(ibath)%vg
Hk = nn2so_reshape(Hreplica_build(dmft_bath_%item(ibath)%lambda),Nnambu*Nspin,Norb)
Hk = nn2so_reshape(Hgeneral_build(dmft_bath_%item(ibath)%lambda),Nnambu*Nspin,Norb)
Vk = kron( pauli_sigma_z, one*diag(V) )
do i=1,L
invH_k = diag(Z(:,i)) - Hk
Expand Down

0 comments on commit 23ce802

Please sign in to comment.