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
assert0<=fit.bounds[0][3] <=1, f"For {algorithm}, the default lower bound of S {fit.bounds[0][3]} is unrealistic; note data is normaized"
124
126
assert1<=fit.bounds[1][3] <=1000, f"For {algorithm}, the default upper bound of S {fit.bounds[1][3]} is unrealistic; note data is normaized"
125
127
assertfit.bounds[1][0] <=fit.bounds[0][2], f"For {algorithm}, the default upper bound of D {fit.bounds[1][0]} is higher than lower bound of D* {fit.bounds[0][2]}"
126
-
iffit.initial_guessisnotNone:
128
+
iffit.use_initial_guess:
127
129
assert0.0008<=fit.initial_guess[0] <=0.002, f"For {algorithm}, the default initial guess for D {fit.initial_guess[0]} is unrealistic"
128
130
assert0<=fit.initial_guess[1] <=0.5, f"For {algorithm}, the default initial guess for f {fit.initial_guess[1]} is unrealistic"
129
131
assert0.003<=fit.initial_guess[2] <=0.1, f"For {algorithm}, the default initial guess for Ds {fit.initial_guess[2]} is unrealistic"
0 commit comments