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.
- {DFO_LS-1.5.1.dist-info → DFO_LS-1.5.2.dist-info}/METADATA +1 -1
- {DFO_LS-1.5.1.dist-info → DFO_LS-1.5.2.dist-info}/RECORD +7 -7
- {DFO_LS-1.5.1.dist-info → DFO_LS-1.5.2.dist-info}/WHEEL +1 -1
- dfols/__init__.py +1 -1
- dfols/diagnostic_info.py +1 -1
- {DFO_LS-1.5.1.dist-info → DFO_LS-1.5.2.dist-info}/LICENSE.txt +0 -0
- {DFO_LS-1.5.1.dist-info → DFO_LS-1.5.2.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: DFO-LS
|
|
3
|
-
Version: 1.5.
|
|
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=
|
|
1
|
+
dfols/__init__.py,sha256=EGaYvogmtsNfmB_MVMFwglCwZbhl8O18rsOldwjIr5Q,1605
|
|
2
2
|
dfols/controller.py,sha256=Jffyao_z7wcQf1WEQtv2smnNew8HXGguWuUPLbgVuCc,52487
|
|
3
|
-
dfols/diagnostic_info.py,sha256=
|
|
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.
|
|
11
|
-
DFO_LS-1.5.
|
|
12
|
-
DFO_LS-1.5.
|
|
13
|
-
DFO_LS-1.5.
|
|
14
|
-
DFO_LS-1.5.
|
|
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,,
|
dfols/__init__.py
CHANGED
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)
|
|
File without changes
|
|
File without changes
|