Skip to content

Commit f2abd68

Browse files
committed
fixup! Fixes and tweaks to Blowers Masel classes' fit_to_reactions methods.
1 parent c626d2b commit f2abd68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rmgpy/kinetics/arrhenius.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ cdef class ArrheniusBM(KineticsModel):
666666
keep_trying = True
667667
xtol = 1e-8
668668
ftol = 1e-8
669-
while boo:
669+
while keep_trying:
670670
keep_trying = False
671671
try:
672672
params = curve_fit(kfcn, xdata, ydata, sigma=sigmas, p0=[1.0, 1.0, w0 / 10.0], xtol=xtol, ftol=ftol)

0 commit comments

Comments
 (0)