Skip to content

Commit

Permalink
Merge pull request #186 from jchodera/fix-bar
Browse files Browse the repository at this point in the history
Minor bugfix to BAR
  • Loading branch information
jchodera committed May 27, 2015
2 parents e4fb52b + 467948b commit 737b55c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymbar/bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def BAR(w_F, w_R, DeltaF=0.0, compute_uncertainty=True, maximum_iterations=500,
# Convergence is achieved.
if verbose:
print("Convergence achieved.")
relative_change = 10 ^ (-15)
relative_change = 10 ** (-15)
break

if method == 'bisection':
Expand Down

0 comments on commit 737b55c

Please sign in to comment.