Skip to content

Commit

Permalink
fixup! Fixes and tweaks to Blowers Masel classes' fit_to_reactions me…
Browse files Browse the repository at this point in the history
…thods.
  • Loading branch information
rwest committed Jul 19, 2023
1 parent c626d2b commit f2abd68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmgpy/kinetics/arrhenius.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ cdef class ArrheniusBM(KineticsModel):
keep_trying = True
xtol = 1e-8
ftol = 1e-8
while boo:
while keep_trying:
keep_trying = False
try:
params = curve_fit(kfcn, xdata, ydata, sigma=sigmas, p0=[1.0, 1.0, w0 / 10.0], xtol=xtol, ftol=ftol)
Expand Down

0 comments on commit f2abd68

Please sign in to comment.