Skip to content

Commit

Permalink
HELIUM: Restore old init to conserve Ceperly regtests
Browse files Browse the repository at this point in the history
  • Loading branch information
cschran authored and hforbert committed Sep 12, 2019
1 parent 3ffad99 commit 37f251d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/motion/helium_methods.F
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,9 @@ SUBROUTINE helium_coord_init(helium_env, initkT, solute_radius)
iter = iter+1
invalidpos = .FALSE.
! if sampling fails to often, reduce he he criterion
minHeHedsttmp = 0.90_dp**(iter/100)*minHeHedst
!CS TODO:
!minHeHedsttmp = 0.90_dp**(iter/100)*minHeHedst
minHeHedsttmp = 0.90_dp**MIN(0, iter-2)*minHeHedst
DO ic = 1, 3
r1 = next_random_number(helium_env(k)%helium%rng_stream_uniform)
r1 = 2.0_dp*r1-1.0_dp
Expand Down
3 changes: 0 additions & 3 deletions src/motion/helium_types.F
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,6 @@ MODULE helium_types
! helium variables
!
REAL(KIND=dp), DIMENSION(:, :, :), POINTER :: pos !< position of the helium atoms DIM(3,atoms,beads)
#ifdef __FU_DEBUGWORM
REAL(KIND=dp), DIMENSION(:, :, :), POINTER :: TMPpos !< position of the helium atoms DIM(3,atoms,beads)
#endif
REAL(KIND=dp), DIMENSION(:, :, :), POINTER :: work !< same dimensions as pos
!
INTEGER, DIMENSION(:), POINTER :: permutation !< current permutation state DIM(atoms)
Expand Down

0 comments on commit 37f251d

Please sign in to comment.