mirror of
https://github.com/LCPQ/quantum_package
synced 2025-01-12 14:08:30 +01:00
Merge branch 'master' of github.com:LCPQ/quantum_package into LCPQ-master
This commit is contained in:
commit
e89eeae6ec
2
configure
vendored
2
configure
vendored
@ -138,7 +138,7 @@ zeromq = Info(
|
|||||||
default_path=join(QP_ROOT_LIB, "libzmq.a"))
|
default_path=join(QP_ROOT_LIB, "libzmq.a"))
|
||||||
|
|
||||||
gmp= Info(
|
gmp= Info(
|
||||||
url='https://gmplib.org/download/gmp/gmp-6.1.2.tar.bz2',
|
url='ftp://ftp.gnu.org/gnu/gmp/gmp-6.1.2.tar.bz2',
|
||||||
description=' The GNU Multiple Precision Arithmetic Library',
|
description=' The GNU Multiple Precision Arithmetic Library',
|
||||||
default_path=join(QP_ROOT_LIB, "libgmp.a"))
|
default_path=join(QP_ROOT_LIB, "libgmp.a"))
|
||||||
|
|
||||||
|
@ -100,7 +100,7 @@ subroutine bielec_integrals_index_reverse(i,j,k,l,i1)
|
|||||||
call bielec_integrals_index(i(ii),j(ii),k(ii),l(ii),i2)
|
call bielec_integrals_index(i(ii),j(ii),k(ii),l(ii),i2)
|
||||||
if (i1 /= i2) then
|
if (i1 /= i2) then
|
||||||
print *, i1, i2
|
print *, i1, i2
|
||||||
print *, i(ii), j(jj), k(jj), l(jj)
|
print *, i(ii), j(ii), k(ii), l(ii)
|
||||||
stop 'bielec_integrals_index_reverse failed'
|
stop 'bielec_integrals_index_reverse failed'
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@ -447,7 +447,7 @@ subroutine get_mo_bielec_integrals(j,k,l,sze,out_val,map)
|
|||||||
call bielec_integrals_index(i,j,k,l,hash(i))
|
call bielec_integrals_index(i,j,k,l,hash(i))
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
if (key_kind == 8) then
|
if (integral_kind == 8) then
|
||||||
call map_get_many(map, hash, out_val, sze)
|
call map_get_many(map, hash, out_val, sze)
|
||||||
else
|
else
|
||||||
call map_get_many(map, hash, tmp_val, sze)
|
call map_get_many(map, hash, tmp_val, sze)
|
||||||
@ -534,7 +534,7 @@ subroutine get_mo_bielec_integrals_coulomb_ii(k,l,sze,out_val,map)
|
|||||||
call bielec_integrals_index(k,i,l,i,hash(i))
|
call bielec_integrals_index(k,i,l,i,hash(i))
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
if (key_kind == 8) then
|
if (integral_kind == 8) then
|
||||||
call map_get_many(map, hash, out_val, sze)
|
call map_get_many(map, hash, out_val, sze)
|
||||||
else
|
else
|
||||||
call map_get_many(map, hash, tmp_val, sze)
|
call map_get_many(map, hash, tmp_val, sze)
|
||||||
@ -567,7 +567,7 @@ subroutine get_mo_bielec_integrals_exch_ii(k,l,sze,out_val,map)
|
|||||||
call bielec_integrals_index(k,i,i,l,hash(i))
|
call bielec_integrals_index(k,i,i,l,hash(i))
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
if (key_kind == 8) then
|
if (integral_kind == 8) then
|
||||||
call map_get_many(map, hash, out_val, sze)
|
call map_get_many(map, hash, out_val, sze)
|
||||||
else
|
else
|
||||||
call map_get_many(map, hash, tmp_val, sze)
|
call map_get_many(map, hash, tmp_val, sze)
|
||||||
|
Loading…
Reference in New Issue
Block a user