Skip to content

Commit

Permalink
Merge pull request #97 from wehs7661/master
Browse files Browse the repository at this point in the history
Removed redundant lines for calculating statistical inefficiency

Addresses #96
  • Loading branch information
dotsdl authored Jan 25, 2020
2 parents ed6cb72 + bcaeaa9 commit 7fcdf7a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@ The rules for this file:
------------------------------------------------------------------------------


??/??/2020 wehs7661, dotsdl

* 0.?.?

Enhancements

Deprecations

Fixes
- removed redundant statistical inefficiency calculation in
`alchemlyb.preprocessing.subsampling.equilibrium_detection`


Changes




01/16/2020 dotsdl, orbeckst

* 0.3.1
Expand Down
3 changes: 0 additions & 3 deletions src/alchemlyb/preprocessing/subsampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,6 @@ def equilibrium_detection(df, series=None, lower=None, upper=None, step=None):
if series is not None:
series = slicing(series, lower=lower, upper=upper, step=step)

# calculate statistical inefficiency of series
statinef = statisticalInefficiency(series)

# calculate statistical inefficiency of series, with equilibrium detection
t, statinef, Neff_max = detectEquilibration(series.values)

Expand Down

0 comments on commit 7fcdf7a

Please sign in to comment.