mirror of
https://github.com/QuantumPackage/qp2.git
synced 2025-01-03 17:15:40 +01:00
This commit is contained in:
parent
44bfee0c6b
commit
13ae95fac5
@ -56,9 +56,14 @@ subroutine routine_s2
|
|||||||
double precision :: accu(N_states)
|
double precision :: accu(N_states)
|
||||||
|
|
||||||
print *, 'Weights of the CFG'
|
print *, 'Weights of the CFG'
|
||||||
do i=1,N_det
|
integer :: step
|
||||||
|
|
||||||
|
step = max(1,N_det/100)
|
||||||
|
do i=1,N_det-1,step
|
||||||
print *, i, real(weight_configuration(det_to_configuration(i),:)), real(sum(weight_configuration(det_to_configuration(i),:)))
|
print *, i, real(weight_configuration(det_to_configuration(i),:)), real(sum(weight_configuration(det_to_configuration(i),:)))
|
||||||
enddo
|
enddo
|
||||||
|
i=N_det
|
||||||
|
print *, i, real(weight_configuration(det_to_configuration(i),:)), real(sum(weight_configuration(det_to_configuration(i),:)))
|
||||||
print*, 'Min weight of the configuration?'
|
print*, 'Min weight of the configuration?'
|
||||||
read(5,*) wmin
|
read(5,*) wmin
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user