DFO-LS 1.5.1__tar.gz → 1.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of DFO-LS might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DFO-LS
3
- Version: 1.5.1
3
+ Version: 1.5.2
4
4
  Summary: A flexible derivative-free solver for (bound constrained) nonlinear least-squares minimization
5
5
  Author-email: Lindon Roberts <lindon.roberts@sydney.edu.au>
6
6
  Maintainer-email: Lindon Roberts <lindon.roberts@sydney.edu.au>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DFO-LS
3
- Version: 1.5.1
3
+ Version: 1.5.2
4
4
  Summary: A flexible derivative-free solver for (bound constrained) nonlinear least-squares minimization
5
5
  Author-email: Lindon Roberts <lindon.roberts@sydney.edu.au>
6
6
  Maintainer-email: Lindon Roberts <lindon.roberts@sydney.edu.au>
@@ -39,7 +39,7 @@ alternative licensing.
39
39
  from __future__ import absolute_import, division, print_function, unicode_literals
40
40
 
41
41
  # DFO-LS version
42
- __version__ = '1.5.1'
42
+ __version__ = '1.5.2'
43
43
 
44
44
  # Main solver & exit flags
45
45
  from .solver import *
@@ -102,7 +102,7 @@ class DiagnosticInfo(object):
102
102
  self.data["rho"].append(control.rho)
103
103
  # And from a model?
104
104
  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()
106
106
  self.data["xk"].append(remove_scaling(x, control.scaling_changes))
107
107
  self.data["rk"].append(rvec)
108
108
  self.data["fk"].append(f)
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes