You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lots of changes, most of them trivial, but a few major bugfixes
Add applied pressure to LAMMPS fix ns/cell_mc, add corresponding pytest
Fix serious sign error in lammps fix ns/type (detected when debugging pressure in cell_mc). Hopefully correct derivation documented in comment in ns_configs/ase_atoms/walks_lammps.py. NOTE: should probably add a test comparing ASE and LAMMPS dynamics for fixed mu, to ensure they behave the same
Fix serious bug in step-size tuning that failed to reset walk counters before each pilot walk.
Fix bug in initializing rngs when restarting from snapshot. Note that restart still isn't perfect because snapshots are in extxyz which has insufficient precision. This affects some of the restart tests, so loosen tolerance.
HACK: handle calculators that create Calculator.results["energy"] when "free_energy" is passed to Calculator.calculate in properties
Switch from ASE LJ to somewhat faster ASE Morse for pytests (update expected values)
Fix bug in composition vs. full_composition pytest
Fix searching for potential module in sampling pytests
parser.add_argument("--output_filename_postfix", "-p", help="string to append to params.global.output_filename_prefix", default="")
77
77
parser.add_argument("--max_iter", "-i", type=int, help="max number of NS iterations, overriding params")
78
-
parser.add_argument("--restart_diff_nproc", "-d", action="store_true", help="allow restarts to use a different number of processors that previous partial run")
78
+
parser.add_argument("--restart_diff_nproc", "-d", action="store_true", help="allow restarts to use a different number of processors than previous partial run")
0 commit comments