DFO-LS 1.5.1__py3-none-any.whl → 1.5.2__py3-none-any.whl

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,14 +1,14 @@
1
- dfols/__init__.py,sha256=3Behg9yoaMxCM839jWUrGelzyZXWPlbXKWLcqxESBKM,1605
1
+ dfols/__init__.py,sha256=EGaYvogmtsNfmB_MVMFwglCwZbhl8O18rsOldwjIr5Q,1605
2
2
  dfols/controller.py,sha256=Jffyao_z7wcQf1WEQtv2smnNew8HXGguWuUPLbgVuCc,52487
3
- dfols/diagnostic_info.py,sha256=2kEUkL-MS4eDENUf1r2hOWsntP8OxMDKi_kyHmrC9V4,6081
3
+ dfols/diagnostic_info.py,sha256=kEcFCjD2rk39XRa90ocEaQvJWc0wj_ZPpQkOulVIM-k,6106
4
4
  dfols/hessian.py,sha256=sExx4J4KoGwHItbthX2odosB2ONbQFvLdlcod7PIh4k,4262
5
5
  dfols/model.py,sha256=1Npj3fJvMv66bKu_RIzLLI-2tyzPWOsKuyv-YUjcv2c,20711
6
6
  dfols/params.py,sha256=GzJGO0TByH1X3B0NbLOCOqmYG8dRiKPKjjX7or_fOqI,18342
7
7
  dfols/solver.py,sha256=tvDdZgQ3AtybIZCTJf2DvGo6YvbV1NNACrzT2RUF000,63910
8
8
  dfols/trust_region.py,sha256=JbHLBDw7H88a3cIMuialh7kpMNGjL3Lp9JsjrBNpDWQ,28231
9
9
  dfols/util.py,sha256=efGVAKPb7YrHya1IOgyzacwa_h0u2jHHs5FhuxUlYDg,10282
10
- DFO_LS-1.5.1.dist-info/LICENSE.txt,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
11
- DFO_LS-1.5.1.dist-info/METADATA,sha256=A6WZ9HlnQVKdaNKd2cD7qqVr3F_fv_anCLmlAT6nqI8,8069
12
- DFO_LS-1.5.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
13
- DFO_LS-1.5.1.dist-info/top_level.txt,sha256=UfxRhaDN8HQx2_l17KbrDrERJ90OCN7VKkDMpYYbRLU,6
14
- DFO_LS-1.5.1.dist-info/RECORD,,
10
+ DFO_LS-1.5.2.dist-info/LICENSE.txt,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
11
+ DFO_LS-1.5.2.dist-info/METADATA,sha256=eTT5r3VaND81vjaSdiW8AcUn6HsISxXAgV5UNXAHnBk,8069
12
+ DFO_LS-1.5.2.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
13
+ DFO_LS-1.5.2.dist-info/top_level.txt,sha256=UfxRhaDN8HQx2_l17KbrDrERJ90OCN7VKkDMpYYbRLU,6
14
+ DFO_LS-1.5.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
dfols/__init__.py CHANGED
@@ -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 *
dfols/diagnostic_info.py CHANGED
@@ -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)