In [1]:
%matplotlib notebook

In [2]:
import os, sys
sys.path.append(os.path.abspath('../../main/python'))

In [3]:
import math
import time

import thalesians.tsa.evaluation as evaluation
import thalesians.tsa.numpyutils as npu
import thalesians.tsa.optimization as optimization
import thalesians.tsa.optimization.visual as visual

In [4]:
npu.init_warnings()

In [5]:
def sphere_func(x, y, z):
    import time
    time.sleep(1)
    return x*x + y*y + z*z

In [6]:
output = optimization.grid_search(
        sphere_func, {
                'x': [-1., -.5, 0., .5, 1.],
                'y': [-1., -.5, 0., .5, 1.],
                'z': [-1., -.5, 0., .5, 1.]
        }, evaluator=evaluation.IPyParallelEvaluator(),
        optimization_id='sphere_func')

In [7]:
output


Out[7]:
GridSearchResult(param_ranges={'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, optimization_id="sphere_func", evaluation_statuses=[Status(ready=False, work=Work(work_id=1, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 1}), result=None), Status(ready=False, work=Work(work_id=2, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 2}), result=None), Status(ready=False, work=Work(work_id=3, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 3}), result=None), Status(ready=False, work=Work(work_id=4, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 4}), result=None), Status(ready=False, work=Work(work_id=5, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 5}), result=None), Status(ready=False, work=Work(work_id=6, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 6}), result=None), Status(ready=False, work=Work(work_id=7, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 7}), result=None), Status(ready=False, work=Work(work_id=8, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 8}), result=None), Status(ready=False, work=Work(work_id=9, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 9}), result=None), Status(ready=False, work=Work(work_id=10, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 10}), result=None), Status(ready=False, work=Work(work_id=11, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 11}), result=None), Status(ready=False, work=Work(work_id=12, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 12}), result=None), Status(ready=False, work=Work(work_id=13, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 13}), result=None), Status(ready=False, work=Work(work_id=14, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 14}), result=None), Status(ready=False, work=Work(work_id=15, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 15}), result=None), Status(ready=False, work=Work(work_id=16, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 16}), result=None), Status(ready=False, work=Work(work_id=17, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 17}), result=None), Status(ready=False, work=Work(work_id=18, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 18}), result=None), Status(ready=False, work=Work(work_id=19, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 19}), result=None), Status(ready=False, work=Work(work_id=20, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 20}), result=None), Status(ready=False, work=Work(work_id=21, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 21}), result=None), Status(ready=False, work=Work(work_id=22, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 22}), result=None), Status(ready=False, work=Work(work_id=23, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 23}), result=None), Status(ready=False, work=Work(work_id=24, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 24}), result=None), Status(ready=False, work=Work(work_id=25, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 25}), result=None), Status(ready=False, work=Work(work_id=26, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 26}), result=None), Status(ready=False, work=Work(work_id=27, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 27}), result=None), Status(ready=False, work=Work(work_id=28, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 28}), result=None), Status(ready=False, work=Work(work_id=29, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 29}), result=None), Status(ready=False, work=Work(work_id=30, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 30}), result=None), Status(ready=False, work=Work(work_id=31, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 31}), result=None), Status(ready=False, work=Work(work_id=32, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 32}), result=None), Status(ready=False, work=Work(work_id=33, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 33}), result=None), Status(ready=False, work=Work(work_id=34, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 34}), result=None), Status(ready=False, work=Work(work_id=35, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 35}), result=None), Status(ready=False, work=Work(work_id=36, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 36}), result=None), Status(ready=False, work=Work(work_id=37, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 37}), result=None), Status(ready=False, work=Work(work_id=38, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 38}), result=None), Status(ready=False, work=Work(work_id=39, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 39}), result=None), Status(ready=False, work=Work(work_id=40, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 40}), result=None), Status(ready=False, work=Work(work_id=41, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 41}), result=None), Status(ready=False, work=Work(work_id=42, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 42}), result=None), Status(ready=False, work=Work(work_id=43, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 43}), result=None), Status(ready=False, work=Work(work_id=44, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 44}), result=None), Status(ready=False, work=Work(work_id=45, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 45}), result=None), Status(ready=False, work=Work(work_id=46, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 46}), result=None), Status(ready=False, work=Work(work_id=47, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 47}), result=None), Status(ready=False, work=Work(work_id=48, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 48}), result=None), Status(ready=False, work=Work(work_id=49, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 49}), result=None), Status(ready=False, work=Work(work_id=50, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 50}), result=None), Status(ready=False, work=Work(work_id=51, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 51}), result=None), Status(ready=False, work=Work(work_id=52, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 52}), result=None), Status(ready=False, work=Work(work_id=53, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 53}), result=None), Status(ready=False, work=Work(work_id=54, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 54}), result=None), Status(ready=False, work=Work(work_id=55, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 55}), result=None), Status(ready=False, work=Work(work_id=56, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 56}), result=None), Status(ready=False, work=Work(work_id=57, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 57}), result=None), Status(ready=False, work=Work(work_id=58, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 58}), result=None), Status(ready=False, work=Work(work_id=59, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 59}), result=None), Status(ready=False, work=Work(work_id=60, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 60}), result=None), Status(ready=False, work=Work(work_id=61, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 61}), result=None), Status(ready=False, work=Work(work_id=62, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 62}), result=None), Status(ready=False, work=Work(work_id=63, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 63}), result=None), Status(ready=False, work=Work(work_id=64, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 64}), result=None), Status(ready=False, work=Work(work_id=65, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 65}), result=None), Status(ready=False, work=Work(work_id=66, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 66}), result=None), Status(ready=False, work=Work(work_id=67, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 67}), result=None), Status(ready=False, work=Work(work_id=68, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 68}), result=None), Status(ready=False, work=Work(work_id=69, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 69}), result=None), Status(ready=False, work=Work(work_id=70, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 70}), result=None), Status(ready=False, work=Work(work_id=71, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 71}), result=None), Status(ready=False, work=Work(work_id=72, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 72}), result=None), Status(ready=False, work=Work(work_id=73, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 73}), result=None), Status(ready=False, work=Work(work_id=74, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 74}), result=None), Status(ready=False, work=Work(work_id=75, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 75}), result=None), Status(ready=False, work=Work(work_id=76, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 76}), result=None), Status(ready=False, work=Work(work_id=77, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 77}), result=None), Status(ready=False, work=Work(work_id=78, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 78}), result=None), Status(ready=False, work=Work(work_id=79, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 79}), result=None), Status(ready=False, work=Work(work_id=80, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 80}), result=None), Status(ready=False, work=Work(work_id=81, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 81}), result=None), Status(ready=False, work=Work(work_id=82, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 82}), result=None), Status(ready=False, work=Work(work_id=83, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 83}), result=None), Status(ready=False, work=Work(work_id=84, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 84}), result=None), Status(ready=False, work=Work(work_id=85, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 85}), result=None), Status(ready=False, work=Work(work_id=86, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 86}), result=None), Status(ready=False, work=Work(work_id=87, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 87}), result=None), Status(ready=False, work=Work(work_id=88, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 88}), result=None), Status(ready=False, work=Work(work_id=89, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 89}), result=None), Status(ready=False, work=Work(work_id=90, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 90}), result=None), Status(ready=False, work=Work(work_id=91, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 91}), result=None), Status(ready=False, work=Work(work_id=92, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 92}), result=None), Status(ready=False, work=Work(work_id=93, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 93}), result=None), Status(ready=False, work=Work(work_id=94, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 94}), result=None), Status(ready=False, work=Work(work_id=95, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 95}), result=None), Status(ready=False, work=Work(work_id=96, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 96}), result=None), Status(ready=False, work=Work(work_id=97, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 97}), result=None), Status(ready=False, work=Work(work_id=98, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 98}), result=None), Status(ready=False, work=Work(work_id=99, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 99}), result=None), Status(ready=False, work=Work(work_id=100, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 100}), result=None), Status(ready=False, work=Work(work_id=101, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 101}), result=None), Status(ready=False, work=Work(work_id=102, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 102}), result=None), Status(ready=False, work=Work(work_id=103, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 103}), result=None), Status(ready=False, work=Work(work_id=104, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 104}), result=None), Status(ready=False, work=Work(work_id=105, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 105}), result=None), Status(ready=False, work=Work(work_id=106, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 106}), result=None), Status(ready=False, work=Work(work_id=107, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 107}), result=None), Status(ready=False, work=Work(work_id=108, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 108}), result=None), Status(ready=False, work=Work(work_id=109, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 109}), result=None), Status(ready=False, work=Work(work_id=110, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 110}), result=None), Status(ready=False, work=Work(work_id=111, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 111}), result=None), Status(ready=False, work=Work(work_id=112, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 112}), result=None), Status(ready=False, work=Work(work_id=113, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 113}), result=None), Status(ready=False, work=Work(work_id=114, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 114}), result=None), Status(ready=False, work=Work(work_id=115, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 115}), result=None), Status(ready=False, work=Work(work_id=116, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 116}), result=None), Status(ready=False, work=Work(work_id=117, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 117}), result=None), Status(ready=False, work=Work(work_id=118, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 118}), result=None), Status(ready=False, work=Work(work_id=119, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 119}), result=None), Status(ready=False, work=Work(work_id=120, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 120}), result=None), Status(ready=False, work=Work(work_id=121, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 121}), result=None), Status(ready=False, work=Work(work_id=122, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 122}), result=None), Status(ready=False, work=Work(work_id=123, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 123}), result=None), Status(ready=False, work=Work(work_id=124, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 124}), result=None), Status(ready=False, work=Work(work_id=125, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 125}), result=None)])

In [8]:
visual.visualize_grid_search(output, refresh_until_ready=True);



In [9]:
output


Out[9]:
GridSearchResult(param_ranges={'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, optimization_id="sphere_func", evaluation_statuses=[Status(ready=True, work=Work(work_id=1, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 1}), result=Result(work_id=1, func=<function sphere_func at 0x000001E148536268>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 1}, evaluation_id="4f47d602ead4467ca340d0bb8817145a", result=3.0, exception=None, start_datetime=2019-04-21 13:13:38.668344, seconds_per_call=[1.0006468999999925], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=2, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 2}), result=Result(work_id=2, func=<function sphere_func at 0x000001E14851FC80>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 2}, evaluation_id="87bef9c5c64a4025a2598c606f3c1ddd", result=2.25, exception=None, start_datetime=2019-04-21 13:13:38.673343, seconds_per_call=[0.9999956999999995], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=3, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 3}), result=Result(work_id=3, func=<function sphere_func at 0x000001E14851F1E0>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 3}, evaluation_id="fa02647d257e4d0d8a919aa2394f6580", result=2.0, exception=None, start_datetime=2019-04-21 13:13:38.679343, seconds_per_call=[0.9998847999995633], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=4, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 4}), result=Result(work_id=4, func=<function sphere_func at 0x000001E1485066A8>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 4}, evaluation_id="1b96a231caaf45a49c7740fdb8b659dc", result=2.25, exception=None, start_datetime=2019-04-21 13:13:38.684342, seconds_per_call=[1.0007095000000845], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=5, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 5}), result=Result(work_id=5, func=<function sphere_func at 0x000001E148882510>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 5}, evaluation_id="8f27f8f534c84b569444866077704ab7", result=3.0, exception=None, start_datetime=2019-04-21 13:13:38.692341, seconds_per_call=[0.9991703000005145], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=6, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 6}), result=Result(work_id=6, func=<function sphere_func at 0x000001E148882048>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 6}, evaluation_id="a1d3eda6c091461492b052e73cda7b51", result=2.25, exception=None, start_datetime=2019-04-21 13:13:38.698344, seconds_per_call=[1.0003441999997449], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=7, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 7}), result=Result(work_id=7, func=<function sphere_func at 0x000001E148868400>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 7}, evaluation_id="c351a5388baf4a78876e53f939d229c2", result=1.5, exception=None, start_datetime=2019-04-21 13:13:38.702346, seconds_per_call=[1.0002701999992496], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=8, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 8}), result=Result(work_id=8, func=<function sphere_func at 0x000001E148562378>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 8}, evaluation_id="125905494619435bb83a66f548a6e8b4", result=1.25, exception=None, start_datetime=2019-04-21 13:13:38.708344, seconds_per_call=[1.000303800000438], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=9, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 9}), result=Result(work_id=9, func=<function sphere_func at 0x000001E1486D98C8>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 9}, evaluation_id="76cf094d588447da9731200e68513206", result=1.5, exception=None, start_datetime=2019-04-21 13:13:39.682343, seconds_per_call=[1.0005564000002778], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=10, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 10}), result=Result(work_id=10, func=<function sphere_func at 0x000001E1486D9F28>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 10}, evaluation_id="21c8e30e2d11479b8b1ffe23426fec0a", result=2.25, exception=None, start_datetime=2019-04-21 13:13:39.687341, seconds_per_call=[1.0001795000007405], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=11, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 11}), result=Result(work_id=11, func=<function sphere_func at 0x000001E1487BB950>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 11}, evaluation_id="2f68b6630ec64438b1ba3dfdd3b1afaa", result=2.0, exception=None, start_datetime=2019-04-21 13:13:39.693341, seconds_per_call=[1.0001041000004989], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=12, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 12}), result=Result(work_id=12, func=<function sphere_func at 0x000001E1484B8A60>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 12}, evaluation_id="9a0a6f3c886e4222bb3ca30ef04138b4", result=1.25, exception=None, start_datetime=2019-04-21 13:13:39.698338, seconds_per_call=[1.000693500000125], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=13, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 13}), result=Result(work_id=13, func=<function sphere_func at 0x000001E148784EA0>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 13}, evaluation_id="193bbf87c8ba477084c5b7a3bfcabdf4", result=1.0, exception=None, start_datetime=2019-04-21 13:13:39.704343, seconds_per_call=[1.001075000000128], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=14, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 14}), result=Result(work_id=14, func=<function sphere_func at 0x000001E148784488>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 14}, evaluation_id="139944324d0b4f29becd5af6bb8071e0", result=1.25, exception=None, start_datetime=2019-04-21 13:13:39.711337, seconds_per_call=[0.999169400000028], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=15, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 15}), result=Result(work_id=15, func=<function sphere_func at 0x000001E14879E488>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 15}, evaluation_id="80af1bd4d5314392ba0a526fd7c31b25", result=2.0, exception=None, start_datetime=2019-04-21 13:13:39.712342, seconds_per_call=[1.0005527000002985], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=16, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 16}), result=Result(work_id=16, func=<function sphere_func at 0x000001E1483D56A8>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 16}, evaluation_id="371d423fb7674b71b25308d440ee4352", result=2.25, exception=None, start_datetime=2019-04-21 13:13:39.718338, seconds_per_call=[0.9999955000002956], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=17, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 17}), result=Result(work_id=17, func=<function sphere_func at 0x000001E14879E9D8>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 17}, evaluation_id="a309f86965cc4dcea21e7c431b0db2f6", result=1.5, exception=None, start_datetime=2019-04-21 13:13:40.696333, seconds_per_call=[1.0002310999998372], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=18, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 18}), result=Result(work_id=18, func=<function sphere_func at 0x000001E148723598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 18}, evaluation_id="147de1bc7d774156ae8446557ad49dba", result=1.25, exception=None, start_datetime=2019-04-21 13:13:40.701334, seconds_per_call=[1.0003688999995575], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=19, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 19}), result=Result(work_id=19, func=<function sphere_func at 0x000001E148769EA0>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 19}, evaluation_id="171f86aca8f64e36a1295dd41a056ff8", result=1.5, exception=None, start_datetime=2019-04-21 13:13:40.706343, seconds_per_call=[1.000170700000126], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=20, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 20}), result=Result(work_id=20, func=<function sphere_func at 0x000001E1487699D8>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 20}, evaluation_id="89e4984288b4409f9285ef2b60fe2472", result=2.25, exception=None, start_datetime=2019-04-21 13:13:40.712328, seconds_per_call=[1.000287699999717], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=21, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 21}), result=Result(work_id=21, func=<function sphere_func at 0x000001E148750488>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 21}, evaluation_id="428ac2dd54124ec1b059e55df2498573", result=3.0, exception=None, start_datetime=2019-04-21 13:13:40.719342, seconds_per_call=[1.0007977000004757], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=22, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 22}), result=Result(work_id=22, func=<function sphere_func at 0x000001E148671D90>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 22}, evaluation_id="5e14723831f442088702959570c5f57b", result=2.25, exception=None, start_datetime=2019-04-21 13:13:40.724335, seconds_per_call=[1.0008545000000595], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=23, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 23}), result=Result(work_id=23, func=<function sphere_func at 0x000001E1484A0F28>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 23}, evaluation_id="f70fe73e12e342f6b4721a5f0a184107", result=2.0, exception=None, start_datetime=2019-04-21 13:13:40.724335, seconds_per_call=[1.0002849000002243], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=24, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 24}), result=Result(work_id=24, func=<function sphere_func at 0x000001E14873D950>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 24}, evaluation_id="3747ccd55e4f4f3c9ca9948e29ff8efa", result=2.25, exception=None, start_datetime=2019-04-21 13:13:40.727334, seconds_per_call=[1.0007541000004494], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=25, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 25}), result=Result(work_id=25, func=<function sphere_func at 0x000001E1484A09D8>, args=[], kwargs=OrderedDict([('x', -1.0), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [0, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 25}, evaluation_id="e780e17aaa9e41bea9294ab43e1ff065", result=3.0, exception=None, start_datetime=2019-04-21 13:13:41.716327, seconds_per_call=[1.000267000000349], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=26, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 26}), result=Result(work_id=26, func=<function sphere_func at 0x000001E14873D0D0>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 26}, evaluation_id="388f6dfc7d334a1a99012f5dd98ee0a2", result=2.25, exception=None, start_datetime=2019-04-21 13:13:41.717323, seconds_per_call=[1.0006348000006255], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=27, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 27}), result=Result(work_id=27, func=<function sphere_func at 0x000001E14873D268>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 27}, evaluation_id="72996387b17c48bda5ea709a073f57d5", result=1.5, exception=None, start_datetime=2019-04-21 13:13:41.720326, seconds_per_call=[1.0003665999993245], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=28, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 28}), result=Result(work_id=28, func=<function sphere_func at 0x000001E14873D400>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 28}, evaluation_id="3d0bb72f8f5a43eaae91b8366491ea3b", result=1.25, exception=None, start_datetime=2019-04-21 13:13:41.725326, seconds_per_call=[1.0010898999998972], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=29, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 29}), result=Result(work_id=29, func=<function sphere_func at 0x000001E14873D2F0>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 29}, evaluation_id="af8fb2bb56d34c2cbdc037b3ab523707", result=1.5, exception=None, start_datetime=2019-04-21 13:13:41.734326, seconds_per_call=[1.0010013000000981], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=30, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 30}), result=Result(work_id=30, func=<function sphere_func at 0x000001E1484EC620>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 30}, evaluation_id="53f12cfee3e3495b8687c00293b995d2", result=2.25, exception=None, start_datetime=2019-04-21 13:13:41.740325, seconds_per_call=[1.0004776999994647], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=31, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 31}), result=Result(work_id=31, func=<function sphere_func at 0x000001E14873D488>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 31}, evaluation_id="9560677d2bd1499ba5e3cc725e45d8c8", result=1.5, exception=None, start_datetime=2019-04-21 13:13:41.742322, seconds_per_call=[1.0007771999999022], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=32, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 32}), result=Result(work_id=32, func=<function sphere_func at 0x000001E14863CE18>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 32}, evaluation_id="2f6a9537daab4d39932109c025ab4869", result=0.75, exception=None, start_datetime=2019-04-21 13:13:41.742322, seconds_per_call=[1.0002658000003066], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=33, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 33}), result=Result(work_id=33, func=<function sphere_func at 0x000001E14847FEA0>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 33}, evaluation_id="1b304fc602704be6b543821778f27803", result=0.5, exception=None, start_datetime=2019-04-21 13:13:42.733318, seconds_per_call=[1.000221799999963], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=34, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 34}), result=Result(work_id=34, func=<function sphere_func at 0x000001E14847F400>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 34}, evaluation_id="5a4df39f43134141832814347b1f9776", result=0.75, exception=None, start_datetime=2019-04-21 13:13:42.736313, seconds_per_call=[1.0005150000006324], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=35, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 35}), result=Result(work_id=35, func=<function sphere_func at 0x000001E146566510>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 35}, evaluation_id="51f327335f704382b5910d3c2a99774e", result=1.5, exception=None, start_datetime=2019-04-21 13:13:42.739324, seconds_per_call=[1.0008715000003576], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=36, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 36}), result=Result(work_id=36, func=<function sphere_func at 0x000001E1487060D0>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 36}, evaluation_id="cddcaad65eb64ee98730aa4db2d822dc", result=1.25, exception=None, start_datetime=2019-04-21 13:13:42.741325, seconds_per_call=[1.000105799999801], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=37, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 37}), result=Result(work_id=37, func=<function sphere_func at 0x000001E146566400>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 37}, evaluation_id="9f72946dd69f40379474e2621f063eae", result=0.5, exception=None, start_datetime=2019-04-21 13:13:42.751322, seconds_per_call=[1.0006979999998293], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=38, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 38}), result=Result(work_id=38, func=<function sphere_func at 0x000001E1484D3598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 38}, evaluation_id="6970d88731b34a99b295b54c256c2bb2", result=0.25, exception=None, start_datetime=2019-04-21 13:13:42.757319, seconds_per_call=[1.0010455000001457], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=39, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 39}), result=Result(work_id=39, func=<function sphere_func at 0x000001E1486F01E0>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 39}, evaluation_id="3c171ac733d541ad885967584fae699a", result=0.5, exception=None, start_datetime=2019-04-21 13:13:42.760317, seconds_per_call=[1.0010252000001856], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=40, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 40}), result=Result(work_id=40, func=<function sphere_func at 0x000001E1486F0048>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 40}, evaluation_id="629d3c356e0a454a8c65ed13a4472713", result=1.25, exception=None, start_datetime=2019-04-21 13:13:42.761314, seconds_per_call=[1.0001313000002483], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=41, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 41}), result=Result(work_id=41, func=<function sphere_func at 0x000001E1486F0AE8>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 41}, evaluation_id="c0cdd052febb416184ad97bcd4cf155c", result=1.5, exception=None, start_datetime=2019-04-21 13:13:43.748312, seconds_per_call=[1.0006467000002885], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=42, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 42}), result=Result(work_id=42, func=<function sphere_func at 0x000001E1486F00D0>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 42}, evaluation_id="76b07b79abae4406a54686e91ae639ed", result=0.75, exception=None, start_datetime=2019-04-21 13:13:43.751311, seconds_per_call=[0.9998222000003807], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=43, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 43}), result=Result(work_id=43, func=<function sphere_func at 0x000001E1485F1620>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 43}, evaluation_id="723cb862ed3d4b47ae2a0678c0ddd49a", result=0.5, exception=None, start_datetime=2019-04-21 13:13:43.756317, seconds_per_call=[1.000130999999783], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=44, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 44}), result=Result(work_id=44, func=<function sphere_func at 0x000001E1485F1E18>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 44}, evaluation_id="505939dc724f45d1811b9a2983f44f81", result=0.75, exception=None, start_datetime=2019-04-21 13:13:43.757310, seconds_per_call=[1.000136300000122], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=45, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 45}), result=Result(work_id=45, func=<function sphere_func at 0x000001E1485DCA60>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 45}, evaluation_id="1f85693b4b534650912218d2e4acb2b9", result=1.5, exception=None, start_datetime=2019-04-21 13:13:43.765310, seconds_per_call=[1.0006368999993356], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=46, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 46}), result=Result(work_id=46, func=<function sphere_func at 0x000001E1485DCD08>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 46}, evaluation_id="b2a8f2a5d0864741b979c638318308d3", result=2.25, exception=None, start_datetime=2019-04-21 13:13:43.776306, seconds_per_call=[1.0009835999999268], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=47, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 47}), result=Result(work_id=47, func=<function sphere_func at 0x000001E1485C1378>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 47}, evaluation_id="1ccfbeaacb61498281e8525a924f1363", result=1.5, exception=None, start_datetime=2019-04-21 13:13:43.780319, seconds_per_call=[1.0011265999992247], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=48, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 48}), result=Result(work_id=48, func=<function sphere_func at 0x000001E148416400>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 48}, evaluation_id="81cb06b5ad544985b92fb726742240df", result=1.25, exception=None, start_datetime=2019-04-21 13:13:43.781311, seconds_per_call=[1.000497500000165], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=49, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 49}), result=Result(work_id=49, func=<function sphere_func at 0x000001E1486A6E18>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 49}, evaluation_id="4cd870e8aa794c37ac6a13ac016e0b32", result=1.5, exception=None, start_datetime=2019-04-21 13:13:44.765302, seconds_per_call=[1.0001578999999765], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=50, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 50}), result=Result(work_id=50, func=<function sphere_func at 0x000001E1486A6A60>, args=[], kwargs=OrderedDict([('x', -0.5), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [1, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 50}, evaluation_id="dcc1acbeb6af4ca5947e30ddbf02279a", result=2.25, exception=None, start_datetime=2019-04-21 13:13:44.766301, seconds_per_call=[1.0003029999998034], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=51, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 51}), result=Result(work_id=51, func=<function sphere_func at 0x000001E1485A8D90>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 51}, evaluation_id="478c4636c0ba44d08159c5ba5ef63b0e", result=2.0, exception=None, start_datetime=2019-04-21 13:13:44.769309, seconds_per_call=[1.0002260999999635], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=52, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 52}), result=Result(work_id=52, func=<function sphere_func at 0x000001E1486A62F0>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 52}, evaluation_id="2830af710fd04babb95901eb947951dc", result=1.25, exception=None, start_datetime=2019-04-21 13:13:44.772303, seconds_per_call=[1.0002763000002233], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=53, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 53}), result=Result(work_id=53, func=<function sphere_func at 0x000001E1485A8840>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 53}, evaluation_id="23cd9d99239e472793f7485db3747c72", result=1.0, exception=None, start_datetime=2019-04-21 13:13:44.780296, seconds_per_call=[1.0002603000002637], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=54, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 54}), result=Result(work_id=54, func=<function sphere_func at 0x000001E148590620>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 54}, evaluation_id="f403ab90b3e548878115ee82c4aa7c9f", result=1.25, exception=None, start_datetime=2019-04-21 13:13:44.790311, seconds_per_call=[1.0005905999996685], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=55, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 55}), result=Result(work_id=55, func=<function sphere_func at 0x000001E14868A840>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 55}, evaluation_id="202f0498111e4039847d2633b9104365", result=2.0, exception=None, start_datetime=2019-04-21 13:13:44.793315, seconds_per_call=[1.0005793999998787], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=56, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 56}), result=Result(work_id=56, func=<function sphere_func at 0x000001E148590158>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 56}, evaluation_id="82e2133ce3e84e2b95f6c131801dce4e", result=1.25, exception=None, start_datetime=2019-04-21 13:13:44.795303, seconds_per_call=[1.0004106999995201], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=57, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 57}), result=Result(work_id=57, func=<function sphere_func at 0x000001E148469EA0>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 57}, evaluation_id="b2266f2315d14da0a9d0108d242b7a7c", result=0.5, exception=None, start_datetime=2019-04-21 13:13:45.783289, seconds_per_call=[1.0005954999996902], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=58, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 58}), result=Result(work_id=58, func=<function sphere_func at 0x000001E14868AD90>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 58}, evaluation_id="92ab474ba0d943069cc6b83f7bdbe817", result=0.25, exception=None, start_datetime=2019-04-21 13:13:45.788292, seconds_per_call=[1.000378799999453], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=59, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 59}), result=Result(work_id=59, func=<function sphere_func at 0x000001E1488B2730>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 59}, evaluation_id="55079cf3dd234991b2c29986e7ac2a8e", result=0.5, exception=None, start_datetime=2019-04-21 13:13:45.789293, seconds_per_call=[1.0006209000002855], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=60, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 60}), result=Result(work_id=60, func=<function sphere_func at 0x000001E1488B2268>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 60}, evaluation_id="57932211cea649ad9d5060f57874af09", result=1.25, exception=None, start_datetime=2019-04-21 13:13:45.790291, seconds_per_call=[1.0007857000000513], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=61, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 61}), result=Result(work_id=61, func=<function sphere_func at 0x000001E1488B22F0>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 61}, evaluation_id="409e0a093aa74353b8e850c5d8404697", result=1.0, exception=None, start_datetime=2019-04-21 13:13:45.792297, seconds_per_call=[1.000184100000297], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=62, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 62}), result=Result(work_id=62, func=<function sphere_func at 0x000001E1488971E0>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 62}, evaluation_id="f44cc71fa2e949ce9cd041d9bc8f6d32", result=0.25, exception=None, start_datetime=2019-04-21 13:13:45.800290, seconds_per_call=[0.9991420999995171], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=63, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 63}), result=Result(work_id=63, func=<function sphere_func at 0x000001E148897048>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 63}, evaluation_id="952af5d414cf42d19de87a52d7ff6cb0", result=0.0, exception=None, start_datetime=2019-04-21 13:13:45.802292, seconds_per_call=[0.9993634000002203], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=64, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 64}), result=Result(work_id=64, func=<function sphere_func at 0x000001E1488B2A60>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 64}, evaluation_id="85f5b5191c1642aeabc0c1198404f8d2", result=0.25, exception=None, start_datetime=2019-04-21 13:13:45.803293, seconds_per_call=[0.9999643999999535], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=65, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 65}), result=Result(work_id=65, func=<function sphere_func at 0x000001E148897B70>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 65}, evaluation_id="d56f33419f724ada87be81f821013f1a", result=1.0, exception=None, start_datetime=2019-04-21 13:13:46.798296, seconds_per_call=[1.001126199999817], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=66, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 66}), result=Result(work_id=66, func=<function sphere_func at 0x000001E148824510>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 66}, evaluation_id="7f3b250eb6384df3921d33afdce8c889", result=1.25, exception=None, start_datetime=2019-04-21 13:13:46.804296, seconds_per_call=[1.0004080999997313], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=67, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 67}), result=Result(work_id=67, func=<function sphere_func at 0x000001E14880A400>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 67}, evaluation_id="f683d2af95744e7d8eed0a41c3001a89", result=0.5, exception=None, start_datetime=2019-04-21 13:13:46.809286, seconds_per_call=[1.0002429000005577], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=68, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 68}), result=Result(work_id=68, func=<function sphere_func at 0x000001E1488246A8>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 68}, evaluation_id="397a05f797ba490b91d63f264ee97e6b", result=0.25, exception=None, start_datetime=2019-04-21 13:13:46.810296, seconds_per_call=[1.0001868999997896], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=69, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 69}), result=Result(work_id=69, func=<function sphere_func at 0x000001E14880A950>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 69}, evaluation_id="c545461f58e140ffb5b6f7816ce1bc04", result=0.5, exception=None, start_datetime=2019-04-21 13:13:46.814296, seconds_per_call=[1.000170700000126], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=70, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 70}), result=Result(work_id=70, func=<function sphere_func at 0x000001E148CB3268>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 70}, evaluation_id="2eb84c43a9604c4ba8a2c65eda0c6d45", result=1.25, exception=None, start_datetime=2019-04-21 13:13:46.815297, seconds_per_call=[1.0001847000003181], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=71, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 71}), result=Result(work_id=71, func=<function sphere_func at 0x000001E148CB3510>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 71}, evaluation_id="3bcc69d9c579429baf60ad70c061d4d0", result=2.0, exception=None, start_datetime=2019-04-21 13:13:46.817290, seconds_per_call=[1.0006886999999551], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=72, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 72}), result=Result(work_id=72, func=<function sphere_func at 0x000001E148CB30D0>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 72}, evaluation_id="72796364dda141cf9fc4c2e2a5f41cc1", result=1.25, exception=None, start_datetime=2019-04-21 13:13:46.818286, seconds_per_call=[1.0008757999994486], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=73, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 73}), result=Result(work_id=73, func=<function sphere_func at 0x000001E148CB3400>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 73}, evaluation_id="f1ea2a3baed74294a345f876f920e526", result=1.0, exception=None, start_datetime=2019-04-21 13:13:47.813281, seconds_per_call=[1.0010535999999775], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=74, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 74}), result=Result(work_id=74, func=<function sphere_func at 0x000001E148CB32F0>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 74}, evaluation_id="fabf8d0350144d81b010e445fe8885dc", result=1.25, exception=None, start_datetime=2019-04-21 13:13:47.819277, seconds_per_call=[1.000685699999849], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=75, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 75}), result=Result(work_id=75, func=<function sphere_func at 0x000001E148CB36A8>, args=[], kwargs=OrderedDict([('x', 0.0), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [2, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 75}, evaluation_id="d2433454461a4308851ccacb32b75b58", result=2.0, exception=None, start_datetime=2019-04-21 13:13:47.826280, seconds_per_call=[1.0010419000000184], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=76, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 76}), result=Result(work_id=76, func=<function sphere_func at 0x000001E148CB38C8>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 76}, evaluation_id="2ae5c4d410a14642843db4e6459c9d97", result=2.25, exception=None, start_datetime=2019-04-21 13:13:47.827281, seconds_per_call=[1.0008774999996604], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=77, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 77}), result=Result(work_id=77, func=<function sphere_func at 0x000001E148CB37B8>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 77}, evaluation_id="0af809d30d584dbf8dff67bcf0c6e768", result=1.5, exception=None, start_datetime=2019-04-21 13:13:47.831276, seconds_per_call=[1.0003670999994938], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=78, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 78}), result=Result(work_id=78, func=<function sphere_func at 0x000001E148CB3D90>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 78}, evaluation_id="9605ef56070e4c8881be0b7bc0dd2f91", result=1.25, exception=None, start_datetime=2019-04-21 13:13:47.834276, seconds_per_call=[1.0007016999998086], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=79, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 79}), result=Result(work_id=79, func=<function sphere_func at 0x000001E148CB39D8>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 79}, evaluation_id="5802e151abec4459861d3c8317b932b3", result=1.5, exception=None, start_datetime=2019-04-21 13:13:47.835276, seconds_per_call=[0.9998850000001767], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=80, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 80}), result=Result(work_id=80, func=<function sphere_func at 0x000001E148CB3BF8>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 80}, evaluation_id="0a611a3eb303441bbc8346d6336a9b35", result=2.25, exception=None, start_datetime=2019-04-21 13:13:47.835276, seconds_per_call=[0.9991687000001548], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=81, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 81}), result=Result(work_id=81, func=<function sphere_func at 0x000001E148CB3AE8>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 81}, evaluation_id="b6bd5ac8297c49d3bfe3083cf51364cb", result=1.5, exception=None, start_datetime=2019-04-21 13:13:48.828273, seconds_per_call=[1.0002124000002368], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=82, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 82}), result=Result(work_id=82, func=<function sphere_func at 0x000001E148CB3C80>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 82}, evaluation_id="067fcea71956438990708cc4906ff4b3", result=0.75, exception=None, start_datetime=2019-04-21 13:13:48.832272, seconds_per_call=[1.0005565999999817], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=83, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 83}), result=Result(work_id=83, func=<function sphere_func at 0x000001E148CB3F28>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 83}, evaluation_id="ff93313fc8fc4e7db381e4cac13394a6", result=0.5, exception=None, start_datetime=2019-04-21 13:13:48.845273, seconds_per_call=[0.9996555999996417], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=84, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 84}), result=Result(work_id=84, func=<function sphere_func at 0x000001E148CCD0D0>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 84}, evaluation_id="4fd75bb81653468583906300d4a8b35a", result=0.75, exception=None, start_datetime=2019-04-21 13:13:48.849266, seconds_per_call=[0.9993702000001576], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=85, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 85}), result=Result(work_id=85, func=<function sphere_func at 0x000001E148CCD1E0>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 85}, evaluation_id="325a04036fbb4e2e93c13b04beb766b1", result=1.5, exception=None, start_datetime=2019-04-21 13:13:48.852268, seconds_per_call=[1.0004494999993767], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=86, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 86}), result=Result(work_id=86, func=<function sphere_func at 0x000001E148CCD378>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 86}, evaluation_id="ba01ceedcd64492980d10e8fdbafa95c", result=1.25, exception=None, start_datetime=2019-04-21 13:13:48.853269, seconds_per_call=[0.9992388999999093], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=87, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 87}), result=Result(work_id=87, func=<function sphere_func at 0x000001E148CCD510>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 87}, evaluation_id="e11654b1274745a3b2aa7d1a4e74dd55", result=0.5, exception=None, start_datetime=2019-04-21 13:13:48.854269, seconds_per_call=[1.0008146000000124], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=88, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 88}), result=Result(work_id=88, func=<function sphere_func at 0x000001E148CCD2F0>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 88}, evaluation_id="4fa7a619546d44849addecdc5944fd76", result=0.25, exception=None, start_datetime=2019-04-21 13:13:48.854269, seconds_per_call=[0.9994348999998692], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=89, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 89}), result=Result(work_id=89, func=<function sphere_func at 0x000001E148CCD6A8>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 89}, evaluation_id="84cfd2ab947b48e893475b1d3b10351b", result=0.5, exception=None, start_datetime=2019-04-21 13:13:49.842275, seconds_per_call=[1.0001065000005838], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=90, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 90}), result=Result(work_id=90, func=<function sphere_func at 0x000001E148CCD598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 90}, evaluation_id="1a596949cfec49e6b7dad356a59dd46e", result=1.25, exception=None, start_datetime=2019-04-21 13:13:49.846274, seconds_per_call=[1.0002764999999272], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=91, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 91}), result=Result(work_id=91, func=<function sphere_func at 0x000001E148CCD840>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 91}, evaluation_id="3e68a0deb93a4e958d3c619c6786f7c3", result=1.5, exception=None, start_datetime=2019-04-21 13:13:49.858265, seconds_per_call=[1.000724800000171], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=92, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 92}), result=Result(work_id=92, func=<function sphere_func at 0x000001E148CCD950>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 92}, evaluation_id="df38cb2e50334b30927ee3ec54f74d30", result=0.75, exception=None, start_datetime=2019-04-21 13:13:49.864265, seconds_per_call=[1.000185899999451], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=93, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 93}), result=Result(work_id=93, func=<function sphere_func at 0x000001E148CCDA60>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 93}, evaluation_id="799b3569afea405cb3abecdccb320f1a", result=0.5, exception=None, start_datetime=2019-04-21 13:13:49.869266, seconds_per_call=[1.0007850000001781], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=94, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 94}), result=Result(work_id=94, func=<function sphere_func at 0x000001E148CCDC80>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 94}, evaluation_id="1cb031fd931142d4b7e3c86bf97117d3", result=0.75, exception=None, start_datetime=2019-04-21 13:13:49.873260, seconds_per_call=[1.0006970999993428], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=95, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 95}), result=Result(work_id=95, func=<function sphere_func at 0x000001E148CCDD08>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 95}, evaluation_id="77da325044ac4a03aac06ba98d3ee23b", result=1.5, exception=None, start_datetime=2019-04-21 13:13:49.874261, seconds_per_call=[1.0006610000000364], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=96, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 96}), result=Result(work_id=96, func=<function sphere_func at 0x000001E148CCDB70>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 96}, evaluation_id="989af5621a6d498b9c103c84c570f6cc", result=2.25, exception=None, start_datetime=2019-04-21 13:13:49.874261, seconds_per_call=[1.0006124999999884], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=97, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 97}), result=Result(work_id=97, func=<function sphere_func at 0x000001E148CCDEA0>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 97}, evaluation_id="005b90a6850048e2b0eca20562ce4af3", result=1.5, exception=None, start_datetime=2019-04-21 13:13:50.859258, seconds_per_call=[1.0004679000003307], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=98, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 98}), result=Result(work_id=98, func=<function sphere_func at 0x000001E148CEA048>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 98}, evaluation_id="04b0980b885344b3bb1d383beee23017", result=1.25, exception=None, start_datetime=2019-04-21 13:13:50.860257, seconds_per_call=[1.000142799999594], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=99, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 99}), result=Result(work_id=99, func=<function sphere_func at 0x000001E148CEA268>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 99}, evaluation_id="fa4f041abb274b02a5c4f1a4c43680d1", result=1.5, exception=None, start_datetime=2019-04-21 13:13:50.871258, seconds_per_call=[1.000417600000219], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=100, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 100}), result=Result(work_id=100, func=<function sphere_func at 0x000001E148CEA158>, args=[], kwargs=OrderedDict([('x', 0.5), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [3, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 100}, evaluation_id="468f4b3f17d64c5fa9bc1069c1071370", result=2.25, exception=None, start_datetime=2019-04-21 13:13:50.878257, seconds_per_call=[1.0001229999998031], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=101, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 101}), result=Result(work_id=101, func=<function sphere_func at 0x000001E148CEA378>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 0], 'optimization_id': 'sphere_func', 'work_id': 101}, evaluation_id="4e470833cfc549f39013118f83e28e58", result=3.0, exception=None, start_datetime=2019-04-21 13:13:50.885265, seconds_per_call=[1.0002138999998351], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=102, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 102}), result=Result(work_id=102, func=<function sphere_func at 0x000001E148CEA488>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 1], 'optimization_id': 'sphere_func', 'work_id': 102}, evaluation_id="f16a9c7c08a1481380ec4475793907d8", result=2.25, exception=None, start_datetime=2019-04-21 13:13:50.890259, seconds_per_call=[1.0002990000002683], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=103, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 103}), result=Result(work_id=103, func=<function sphere_func at 0x000001E148CEA6A8>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 2], 'optimization_id': 'sphere_func', 'work_id': 103}, evaluation_id="9d8c6b023fad4adea00a96b9c93793b4", result=2.0, exception=None, start_datetime=2019-04-21 13:13:50.892253, seconds_per_call=[1.0010566000000836], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=104, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 104}), result=Result(work_id=104, func=<function sphere_func at 0x000001E148CEA7B8>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 3], 'optimization_id': 'sphere_func', 'work_id': 104}, evaluation_id="b5aea0fcf7d74690aa76856fd618178a", result=2.25, exception=None, start_datetime=2019-04-21 13:13:50.894253, seconds_per_call=[1.000242299999627], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=105, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 105}), result=Result(work_id=105, func=<function sphere_func at 0x000001E148CEA598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 0, 4], 'optimization_id': 'sphere_func', 'work_id': 105}, evaluation_id="b045334a151e4e04b46ac0a11d7e3845", result=3.0, exception=None, start_datetime=2019-04-21 13:13:51.876249, seconds_per_call=[1.0000883000002432], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=106, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 106}), result=Result(work_id=106, func=<function sphere_func at 0x000001E148CEA840>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 0], 'optimization_id': 'sphere_func', 'work_id': 106}, evaluation_id="245505001f7142758862dc4482e36688", result=2.25, exception=None, start_datetime=2019-04-21 13:13:51.877260, seconds_per_call=[0.9999778000001243], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=107, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 107}), result=Result(work_id=107, func=<function sphere_func at 0x000001E148CEAAE8>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 1], 'optimization_id': 'sphere_func', 'work_id': 107}, evaluation_id="40981659a7604bcda6259238c9acc31e", result=1.5, exception=None, start_datetime=2019-04-21 13:13:51.885250, seconds_per_call=[1.000908700000764], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=108, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 108}), result=Result(work_id=108, func=<function sphere_func at 0x000001E148CEA9D8>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 2], 'optimization_id': 'sphere_func', 'work_id': 108}, evaluation_id="d9fcdb3837fc421cbcd0047aefb8e840", result=1.25, exception=None, start_datetime=2019-04-21 13:13:51.892249, seconds_per_call=[1.000861900000018], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=109, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 109}), result=Result(work_id=109, func=<function sphere_func at 0x000001E148CEABF8>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 3], 'optimization_id': 'sphere_func', 'work_id': 109}, evaluation_id="22f882579aa9412b911831f3cfbf5a03", result=1.5, exception=None, start_datetime=2019-04-21 13:13:51.899246, seconds_per_call=[0.9992691999996168], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=110, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 110}), result=Result(work_id=110, func=<function sphere_func at 0x000001E148CEAD08>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', -0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 1, 4], 'optimization_id': 'sphere_func', 'work_id': 110}, evaluation_id="300a789ab9b24ba6ae16079fdad25d9b", result=2.25, exception=None, start_datetime=2019-04-21 13:13:51.903250, seconds_per_call=[1.0008545999999114], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=111, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 111}), result=Result(work_id=111, func=<function sphere_func at 0x000001E148CEAF28>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 0], 'optimization_id': 'sphere_func', 'work_id': 111}, evaluation_id="deeb2e34b5a64096bac09cbaa0cb2c75", result=2.0, exception=None, start_datetime=2019-04-21 13:13:51.910250, seconds_per_call=[1.000362299999324], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=112, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 112}), result=Result(work_id=112, func=<function sphere_func at 0x000001E148CEAE18>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 1], 'optimization_id': 'sphere_func', 'work_id': 112}, evaluation_id="c7ab46b75a3f412cbc84d82a8e84d2fd", result=1.25, exception=None, start_datetime=2019-04-21 13:13:51.911245, seconds_per_call=[1.0008937000002334], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=113, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 113}), result=Result(work_id=113, func=<function sphere_func at 0x000001E148CFF0D0>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 2], 'optimization_id': 'sphere_func', 'work_id': 113}, evaluation_id="86b40247c988424eae60ece14ab881f1", result=1.0, exception=None, start_datetime=2019-04-21 13:13:52.890241, seconds_per_call=[1.0002602000004117], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=114, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 114}), result=Result(work_id=114, func=<function sphere_func at 0x000001E148CFF1E0>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 3], 'optimization_id': 'sphere_func', 'work_id': 114}, evaluation_id="7a1685034c924427a9c2e20ba46c84aa", result=1.25, exception=None, start_datetime=2019-04-21 13:13:52.892236, seconds_per_call=[1.0010677999998734], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=115, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 115}), result=Result(work_id=115, func=<function sphere_func at 0x000001E148CFF2F0>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 2, 4], 'optimization_id': 'sphere_func', 'work_id': 115}, evaluation_id="f0881812981c49adab3732dbccfbb721", result=2.0, exception=None, start_datetime=2019-04-21 13:13:52.898239, seconds_per_call=[0.9996783000005962], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=116, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 116}), result=Result(work_id=116, func=<function sphere_func at 0x000001E148CFF488>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 0], 'optimization_id': 'sphere_func', 'work_id': 116}, evaluation_id="b9010e686aaa461d8d0cfeaf2dd812bf", result=2.25, exception=None, start_datetime=2019-04-21 13:13:52.902240, seconds_per_call=[1.0003142000005028], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=117, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 117}), result=Result(work_id=117, func=<function sphere_func at 0x000001E148CFF400>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 1], 'optimization_id': 'sphere_func', 'work_id': 117}, evaluation_id="2d226e8708584fe7a094f73a8c60da36", result=1.5, exception=None, start_datetime=2019-04-21 13:13:52.907243, seconds_per_call=[1.000416199999563], hostname="PB-MP", pid=19756, thread_id=19756)), Status(ready=True, work=Work(work_id=118, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 118}), result=Result(work_id=118, func=<function sphere_func at 0x000001E148CFF598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 2], 'optimization_id': 'sphere_func', 'work_id': 118}, evaluation_id="8ceec2977973459ea8d0053e25a44b61", result=1.25, exception=None, start_datetime=2019-04-21 13:13:52.917247, seconds_per_call=[1.0003971999994974], hostname="PB-MP", pid=22036, thread_id=22036)), Status(ready=True, work=Work(work_id=119, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 119}), result=Result(work_id=119, func=<function sphere_func at 0x000001E148CFF730>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 3], 'optimization_id': 'sphere_func', 'work_id': 119}, evaluation_id="5b03639807d64cad91be2faf315b24a3", result=1.5, exception=None, start_datetime=2019-04-21 13:13:52.923249, seconds_per_call=[1.0008662000000186], hostname="PB-MP", pid=2980, thread_id=2980)), Status(ready=True, work=Work(work_id=120, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 120}), result=Result(work_id=120, func=<function sphere_func at 0x000001E148CFF840>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 0.5), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 3, 4], 'optimization_id': 'sphere_func', 'work_id': 120}, evaluation_id="1b5d16d15cdb4e9c9101b2306485c397", result=2.25, exception=None, start_datetime=2019-04-21 13:13:52.925245, seconds_per_call=[1.0005719000000681], hostname="PB-MP", pid=11732, thread_id=11732)), Status(ready=True, work=Work(work_id=121, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 121}), result=Result(work_id=121, func=<function sphere_func at 0x000001E148CFF950>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', -1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 0], 'optimization_id': 'sphere_func', 'work_id': 121}, evaluation_id="14222f2bd7b14a4e924a75a3dc6e15de", result=3.0, exception=None, start_datetime=2019-04-21 13:13:53.906232, seconds_per_call=[1.0010618999995131], hostname="PB-MP", pid=18940, thread_id=18940)), Status(ready=True, work=Work(work_id=122, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 122}), result=Result(work_id=122, func=<function sphere_func at 0x000001E148CFFA60>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', -0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 1], 'optimization_id': 'sphere_func', 'work_id': 122}, evaluation_id="4cb636698dd945e2a518885944e4a262", result=2.25, exception=None, start_datetime=2019-04-21 13:13:53.908232, seconds_per_call=[1.0003167000004396], hostname="PB-MP", pid=21656, thread_id=21656)), Status(ready=True, work=Work(work_id=123, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 123}), result=Result(work_id=123, func=<function sphere_func at 0x000001E148CFFAE8>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', 0.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 2], 'optimization_id': 'sphere_func', 'work_id': 123}, evaluation_id="cb09b6bb3b2641fb9d70b5d640bcd1d8", result=2.0, exception=None, start_datetime=2019-04-21 13:13:53.911234, seconds_per_call=[1.0002572000003056], hostname="PB-MP", pid=19528, thread_id=19528)), Status(ready=True, work=Work(work_id=124, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 124}), result=Result(work_id=124, func=<function sphere_func at 0x000001E148CFFBF8>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', 0.5)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 3], 'optimization_id': 'sphere_func', 'work_id': 124}, evaluation_id="5e32df4525524b7fa35bc4cc716874e3", result=2.25, exception=None, start_datetime=2019-04-21 13:13:53.916227, seconds_per_call=[1.0004392000000735], hostname="PB-MP", pid=23652, thread_id=23652)), Status(ready=True, work=Work(work_id=125, func=<function sphere_func at 0x000001E148416598>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 125}), result=Result(work_id=125, func=<function sphere_func at 0x000001E148CFFD08>, args=[], kwargs=OrderedDict([('x', 1.0), ('y', 1.0), ('z', 1.0)]), call_count=1, repeat_count=1, info={'param_ranges': {'x': [-1.0, -0.5, 0.0, 0.5, 1.0], 'y': [-1.0, -0.5, 0.0, 0.5, 1.0], 'z': [-1.0, -0.5, 0.0, 0.5, 1.0]}, 'param_names': ['x', 'y', 'z'], 'param_value_indices': [4, 4, 4], 'optimization_id': 'sphere_func', 'work_id': 125}, evaluation_id="8626d2388e4b49fc964f0beb565c7811", result=3.0, exception=None, start_datetime=2019-04-21 13:13:53.922234, seconds_per_call=[1.0000893999995242], hostname="PB-MP", pid=19756, thread_id=19756))])

In [10]:
[x.ready for x in output.evaluation_statuses]


Out[10]:
[True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True]