Skip to content

Commit 45056ff

Browse files
committed
Correct unpacking of final results for diagnostic info (fixes #23)
1 parent d488f21 commit 45056ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dfols/diagnostic_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def save_info_from_control(self, control, nruns, iter_this_run, save_poisedness=
102102
self.data["rho"].append(control.rho)
103103
# And from a model?
104104
self.data["npt"].append(control.model.npt())
105-
x, rvec, f, jac, nsamples = control.model.get_final_results()
105+
x, rvec, f, jac, nsamples, eval_num, jac_eval_nums = control.model.get_final_results()
106106
self.data["xk"].append(remove_scaling(x, control.scaling_changes))
107107
self.data["rk"].append(rvec)
108108
self.data["fk"].append(f)

0 commit comments

Comments
 (0)