Skip to content

Commit

Permalink
Merge pull request #750 from OpenFreeEnergy/fix-ahfe-integration-tests
Browse files Browse the repository at this point in the history
Fix ahfe integration tests - missing restraints lamdas
  • Loading branch information
IAlibay authored Mar 18, 2024
2 parents ae69edc + d236e05 commit cee5750
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions openfe/tests/protocols/test_openmm_afe_slow.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,15 @@ def test_openmm_run_engine(platform,
s.solvent_output_settings.checkpoint_interval = 20 * unit.femtosecond
s.vacuum_simulation_settings.n_replicas = 20
s.solvent_simulation_settings.n_replicas = 20
s.lambda_settings.lambda_elec = \
[0.0, 0.25, 0.5, 0.75, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0,
1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]
s.lambda_settings.lambda_vdw = \
[0.0, 0.0, 0.0, 0.0, 0.0, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5,
0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95, 1.0]
s.lambda_settings.lambda_elec = [
0.0, 0.25, 0.5, 0.75, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0,
1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0
]
s.lambda_settings.lambda_vdw = [
0.0, 0.0, 0.0, 0.0, 0.0, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5,
0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95, 1.0
]
s.lambda_settings.lambda_restraints = [0.0 for i in range(20)]


protocol = openmm_afe.AbsoluteSolvationProtocol(
Expand Down

0 comments on commit cee5750

Please sign in to comment.