Skip to content

Commit d488f21

Browse files
committed
Updated documentation with new changes
1 parent 50ecc25 commit d488f21

36 files changed

+525
-411
lines changed

dfols/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from __future__ import absolute_import, division, print_function, unicode_literals
4040

4141
# DFO-LS version
42-
__version__ = '1.5.0'
42+
__version__ = '1.5.1'
4343

4444
# Main solver & exit flags
4545
from .solver import *

dfols/tests/test_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ def runTest(self):
211211
self.assertTrue(array_compare(model.rsave, np.array([0.0, 0.0])), 'Wrong rsave after saving 3')
212212
self.assertAlmostEqual(model.objsave, 0.0, 'Wrong fsave after saving 3')
213213
self.assertEqual(model.nsamples_save, 2, 'Wrong nsamples_save after saving 3')
214-
self.assertEqual(model.eval_num_save, 7, 'Wrong eval_num_save after saving 2')
215-
self.assertIsNone(model.jacsave_eval_nums, 'jacsave_eval_nums not none after saving 2')
214+
self.assertEqual(model.eval_num_save, 7, 'Wrong eval_num_save after saving 3')
215+
self.assertIsNone(model.jacsave_eval_nums, 'jacsave_eval_nums not none after saving 3')
216216

217217

218218
class TestAveraging(unittest.TestCase):

docs/advanced.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Initialization of Points
2424
------------------------
2525
* :code:`init.random_initial_directions` - Build the initial interpolation set using random directions (as opposed to coordinate directions). Default as of version 1.2 is :code:`False`.
2626
* :code:`init.random_directions_make_orthogonal` - If building initial interpolation set with random directions, whether or not these should be orthogonalized. Default is :code:`True`.
27-
* :code:`init.run_in_parallel` - If using random directions, whether or not to ask for all :code:`objfun` to be evaluated at all points without any intermediate processing. Default is :code:`False`.
27+
* :code:`init.run_in_parallel` - If using random directions or non-random with input :code:`npt` at most :code:`len(x0)+1`, whether or not to ask for all :code:`objfun` to be evaluated at all points without any intermediate processing. Default is :code:`False`.
2828

2929
Trust Region Management
3030
-----------------------

docs/build/doctrees/advanced.doctree

477 Bytes
Binary file not shown.
8.3 KB
Binary file not shown.

docs/build/doctrees/history.doctree

1.53 KB
Binary file not shown.

docs/build/doctrees/index.doctree

-2 Bytes
Binary file not shown.

docs/build/doctrees/userguide.doctree

5.22 KB
Binary file not shown.

docs/build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 8fe9d19f5645917bc7a4a240ff52ff51
3+
config: 57a11b064dfa88ccc9f8feaa9e7f040a
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/build/html/_sources/advanced.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Initialization of Points
2424
------------------------
2525
* :code:`init.random_initial_directions` - Build the initial interpolation set using random directions (as opposed to coordinate directions). Default as of version 1.2 is :code:`False`.
2626
* :code:`init.random_directions_make_orthogonal` - If building initial interpolation set with random directions, whether or not these should be orthogonalized. Default is :code:`True`.
27-
* :code:`init.run_in_parallel` - If using random directions, whether or not to ask for all :code:`objfun` to be evaluated at all points without any intermediate processing. Default is :code:`False`.
27+
* :code:`init.run_in_parallel` - If using random directions or non-random with input :code:`npt` at most :code:`len(x0)+1`, whether or not to ask for all :code:`objfun` to be evaluated at all points without any intermediate processing. Default is :code:`False`.
2828

2929
Trust Region Management
3030
-----------------------

0 commit comments

Comments
 (0)