
.. DO NOT EDIT.
.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY.
.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE:
.. "examples/examples_parallelism/plot_from_serial_to_parallel_hpo.py"
.. LINE NUMBERS ARE GIVEN BELOW.

.. only:: html

    .. note::
        :class: sphx-glr-download-link-note

        :ref:`Go to the end <sphx_glr_download_examples_examples_parallelism_plot_from_serial_to_parallel_hpo.py>`
        to download the full example code.

.. rst-class:: sphx-glr-example-title

.. _sphx_glr_examples_examples_parallelism_plot_from_serial_to_parallel_hpo.py:


From Sequential to Massively-Parallel Bayesian Optimization
===========================================================

**Author(s)**: Romain Egele.

In this example you will learn about the advantages of parallel over sequential
evaluations with Bayesian optimization. 

We start by defining a black-box ``run``-function that implements the Ackley function:

.. image:: https://www.sfu.ca/~ssurjano/ackley.png
  :width: 400
  :alt: Ackley Function in 2D

.. GENERATED FROM PYTHON SOURCE LINES 18-32

.. dropdown:: Code (Import statements)

    .. code-block:: Python


        import time

        import matplotlib.pyplot as plt
        import numpy as np

        from deephyper.analysis import figure_size
        from deephyper.analysis.hpo import plot_search_trajectory_single_objective_hpo
        from deephyper.analysis.hpo import plot_worker_utilization
        from deephyper.evaluator import Evaluator, profile
        from deephyper.evaluator.callback import TqdmCallback
        from deephyper.hpo import HpProblem, CBO, RandomSearch








.. GENERATED FROM PYTHON SOURCE LINES 33-34

We define the Ackley function:

.. GENERATED FROM PYTHON SOURCE LINES 34-45

.. dropdown:: Code (Ackley function)

    .. code-block:: Python


        def ackley(x, a=20, b=0.2, c=2 * np.pi):
            d = len(x)
            s1 = np.sum(x**2)
            s2 = np.sum(np.cos(c * x))
            term1 = -a * np.exp(-b * np.sqrt(s1 / d))
            term2 = -np.exp(s2 / d)
            y = term1 + term2 + a + np.exp(1)
            return y








.. GENERATED FROM PYTHON SOURCE LINES 46-52

We will use the ``time.sleep`` function to simulate a budget of 2 secondes of execution in average 
which helps illustrate the advantage of parallel evaluations. The ``@profile`` decorator is useful 
to collect starting/ending time of the ``run``-function execution which help us know exactly when 
we are inside the black-box. This decorator is necessary when profiling the worker utilization. When 
using this decorator, the ``run``-function will return a dictionnary with 2 new keys ``"timestamp_start"`` 
and ``"timestamp_end"``.

.. GENERATED FROM PYTHON SOURCE LINES 52-65

.. code-block:: Python


    @profile
    def run_ackley(config, sleep_loc=2, sleep_scale=0.5):
        # to simulate the computation of an expensive black-box
        if sleep_loc > 0:
            t_sleep = np.random.normal(loc=sleep_loc, scale=sleep_scale)
            t_sleep = max(t_sleep, 0)
            time.sleep(t_sleep)

        x = np.array([config[k] for k in config if "x" in k])
        x = np.asarray_chkfinite(x)  # ValueError if any NaN or Inf
        return -ackley(x)  # maximisation is performed








.. GENERATED FROM PYTHON SOURCE LINES 66-69

Then, we define the variable(s) we want to optimize. For this problem we
optimize Ackley in a N-dimensional search space. Each dimension in the continuous range
[-32.768, 32.768]. The true minimum is located at ``(0, ..., 0)``.

.. GENERATED FROM PYTHON SOURCE LINES 69-76

.. code-block:: Python


    nb_dim = 5
    problem = HpProblem()
    for i in range(nb_dim):
        problem.add_hyperparameter((-32.768, 32.768), f"x{i}")
    problem





.. rst-class:: sphx-glr-script-out

 .. code-block:: none


    Configuration space object:
      Hyperparameters:
        x0, Type: UniformFloat, Range: [-32.768, 32.768], Default: 0.0
        x1, Type: UniformFloat, Range: [-32.768, 32.768], Default: 0.0
        x2, Type: UniformFloat, Range: [-32.768, 32.768], Default: 0.0
        x3, Type: UniformFloat, Range: [-32.768, 32.768], Default: 0.0
        x4, Type: UniformFloat, Range: [-32.768, 32.768], Default: 0.0




.. GENERATED FROM PYTHON SOURCE LINES 77-78

Then, we define some default search parameters for the Centralized Bayesian Optimization (CBO) algorithm.

.. GENERATED FROM PYTHON SOURCE LINES 78-87

.. code-block:: Python

    search_kwargs = {
        "multi_point_strategy": "qUCBd", # Multi-point strategy for asynchronous batch generations (explained later)
        "random_state": 42, # Random seed
        "acq_optimizer": "ga", # Use continuous Genetic Algorithm for the acquisition function optimizer
        "acq_optimizer_kwargs": {
            "filter_duplicated": False, # Deactivate filtration of duplicated new points
        }
    }








.. GENERATED FROM PYTHON SOURCE LINES 88-90

Then, we define the time budget for the optimization. We will compare the performance of a sequential
search with a parallel search for the same time budget. The time budget is defined in seconds.

.. GENERATED FROM PYTHON SOURCE LINES 90-92

.. code-block:: Python

    timeout = 60 # 1 minute








.. GENERATED FROM PYTHON SOURCE LINES 93-94

Then, we define the sequential Bayesian optimization search.

.. GENERATED FROM PYTHON SOURCE LINES 94-106

.. code-block:: Python

    sequential_search = CBO(problem, **search_kwargs)

    sequential_evaluator = Evaluator.create(
        run_ackley,
        method="thread",  # For synchronous function defintion relying on the GIL or I/O bound tasks
        method_kwargs={
            "num_workers": 1, 
            "callbacks": [TqdmCallback("Sequential BO:")]
        },
    )
    sequential_search = CBO(problem, **search_kwargs)








.. GENERATED FROM PYTHON SOURCE LINES 107-108

We define a utility function to preprocess our results before plotting.

.. GENERATED FROM PYTHON SOURCE LINES 108-116

.. code-block:: Python


    def preprocess_results(results):
        results = results.dropna().copy()
        offset = results["m:timestamp_start"].min()
        results["m:timestamp_start"] -= offset
        results["m:timestamp_end"] -= offset
        return results








.. GENERATED FROM PYTHON SOURCE LINES 117-124

Where we use the ``"thread"``-evaluator with a single worker and use the ``TqdmCallback`` to display
a progress bar during the search. 

We can now run the sequential search for 2 minutes. The call to the ``search``-method will return a
DataFrame with the results of the search.

If this step is executed multiple times without creating a new search the results will be accumulated in the same DataFrame.

.. GENERATED FROM PYTHON SOURCE LINES 124-129

.. code-block:: Python


    results = {}
    results["sequential"] = preprocess_results(sequential_search.search(sequential_evaluator, timeout=timeout))
    results["sequential"]





.. rst-class:: sphx-glr-script-out

 .. code-block:: none

    0it [00:00, ?it/s]    Sequential BO:: : 0it [00:00, ?it/s]    Sequential BO:: : 1it [00:00, 3744.91it/s, failures=0, objective=-21.1]    Sequential BO:: : 2it [00:01,  1.03it/s, failures=0, objective=-21.1]      Sequential BO:: : 2it [00:01,  1.03it/s, failures=0, objective=-21.1]    Sequential BO:: : 3it [00:04,  1.54s/it, failures=0, objective=-21.1]    Sequential BO:: : 3it [00:04,  1.54s/it, failures=0, objective=-20.6]    Sequential BO:: : 4it [00:05,  1.53s/it, failures=0, objective=-20.6]    Sequential BO:: : 4it [00:05,  1.53s/it, failures=0, objective=-20.6]    Sequential BO:: : 5it [00:08,  1.81s/it, failures=0, objective=-20.6]    Sequential BO:: : 5it [00:08,  1.81s/it, failures=0, objective=-20.1]    Sequential BO:: : 6it [00:09,  1.50s/it, failures=0, objective=-20.1]    Sequential BO:: : 6it [00:09,  1.50s/it, failures=0, objective=-20.1]    Sequential BO:: : 7it [00:11,  1.77s/it, failures=0, objective=-20.1]    Sequential BO:: : 7it [00:11,  1.77s/it, failures=0, objective=-20.1]    Sequential BO:: : 8it [00:12,  1.64s/it, failures=0, objective=-20.1]    Sequential BO:: : 8it [00:12,  1.64s/it, failures=0, objective=-20.1]    Sequential BO:: : 9it [00:15,  1.89s/it, failures=0, objective=-20.1]    Sequential BO:: : 9it [00:15,  1.89s/it, failures=0, objective=-20.1]    Sequential BO:: : 10it [00:17,  1.97s/it, failures=0, objective=-20.1]    Sequential BO:: : 10it [00:17,  1.97s/it, failures=0, objective=-20.1]    Sequential BO:: : 11it [00:19,  1.97s/it, failures=0, objective=-20.1]    Sequential BO:: : 11it [00:19,  1.97s/it, failures=0, objective=-20.1]    Sequential BO:: : 12it [00:22,  2.21s/it, failures=0, objective=-20.1]    Sequential BO:: : 12it [00:22,  2.21s/it, failures=0, objective=-20.1]    Sequential BO:: : 13it [00:23,  2.07s/it, failures=0, objective=-20.1]    Sequential BO:: : 13it [00:23,  2.07s/it, failures=0, objective=-20.1]    Sequential BO:: : 14it [00:26,  2.26s/it, failures=0, objective=-20.1]    Sequential BO:: : 14it [00:26,  2.26s/it, failures=0, objective=-20.1]    Sequential BO:: : 15it [00:27,  2.00s/it, failures=0, objective=-20.1]    Sequential BO:: : 15it [00:27,  2.00s/it, failures=0, objective=-20.1]    Sequential BO:: : 16it [00:30,  2.09s/it, failures=0, objective=-20.1]    Sequential BO:: : 16it [00:30,  2.09s/it, failures=0, objective=-19.9]    Sequential BO:: : 17it [00:32,  2.20s/it, failures=0, objective=-19.9]    Sequential BO:: : 17it [00:32,  2.20s/it, failures=0, objective=-19.9]    Sequential BO:: : 18it [00:34,  2.19s/it, failures=0, objective=-19.9]    Sequential BO:: : 18it [00:34,  2.19s/it, failures=0, objective=-19.9]    Sequential BO:: : 19it [00:37,  2.30s/it, failures=0, objective=-19.9]    Sequential BO:: : 19it [00:37,  2.30s/it, failures=0, objective=-19.9]    Sequential BO:: : 20it [00:39,  2.37s/it, failures=0, objective=-19.9]    Sequential BO:: : 20it [00:39,  2.37s/it, failures=0, objective=-19.9]    Sequential BO:: : 21it [00:42,  2.36s/it, failures=0, objective=-19.9]    Sequential BO:: : 21it [00:42,  2.36s/it, failures=0, objective=-19.9]    Sequential BO:: : 22it [00:44,  2.25s/it, failures=0, objective=-19.9]    Sequential BO:: : 22it [00:44,  2.25s/it, failures=0, objective=-19.9]    Sequential BO:: : 23it [00:46,  2.12s/it, failures=0, objective=-19.9]    Sequential BO:: : 23it [00:46,  2.12s/it, failures=0, objective=-19.9]    Sequential BO:: : 24it [00:49,  2.41s/it, failures=0, objective=-19.9]    Sequential BO:: : 24it [00:49,  2.41s/it, failures=0, objective=-19.9]    Sequential BO:: : 25it [00:51,  2.39s/it, failures=0, objective=-19.9]    Sequential BO:: : 25it [00:51,  2.39s/it, failures=0, objective=-19.9]    Sequential BO:: : 26it [00:53,  2.25s/it, failures=0, objective=-19.9]    Sequential BO:: : 26it [00:53,  2.25s/it, failures=0, objective=-19.9]    Sequential BO:: : 27it [00:55,  2.12s/it, failures=0, objective=-19.9]    Sequential BO:: : 27it [00:55,  2.12s/it, failures=0, objective=-18.8]    Sequential BO:: : 28it [00:57,  2.19s/it, failures=0, objective=-18.8]    Sequential BO:: : 28it [00:57,  2.19s/it, failures=0, objective=-18.7]    Sequential BO:: : 29it [00:59,  2.17s/it, failures=0, objective=-18.7]    Sequential BO:: : 29it [00:59,  2.17s/it, failures=0, objective=-18.7]

.. raw:: html

    <div class="output_subarea output_html rendered_html output_result">
    <div>
    <style scoped>
        .dataframe tbody tr th:only-of-type {
            vertical-align: middle;
        }

        .dataframe tbody tr th {
            vertical-align: top;
        }

        .dataframe thead th {
            text-align: right;
        }
    </style>
    <table border="1" class="dataframe">
      <thead>
        <tr style="text-align: right;">
          <th></th>
          <th>p:x0</th>
          <th>p:x1</th>
          <th>p:x2</th>
          <th>p:x3</th>
          <th>p:x4</th>
          <th>objective</th>
          <th>job_id</th>
          <th>job_status</th>
          <th>m:timestamp_submit</th>
          <th>m:timestamp_start</th>
          <th>m:timestamp_end</th>
          <th>m:timestamp_gather</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <th>0</th>
          <td>-5.891427</td>
          <td>22.111083</td>
          <td>-3.615456</td>
          <td>20.473183</td>
          <td>19.631534</td>
          <td>-21.121996</td>
          <td>0</td>
          <td>DONE</td>
          <td>0.005385</td>
          <td>0.000000</td>
          <td>1.636566</td>
          <td>1.642914</td>
        </tr>
        <tr>
          <th>1</th>
          <td>15.337260</td>
          <td>7.672913</td>
          <td>2.844463</td>
          <td>29.850205</td>
          <td>-32.530084</td>
          <td>-21.582693</td>
          <td>1</td>
          <td>DONE</td>
          <td>1.662552</td>
          <td>1.657275</td>
          <td>3.594421</td>
          <td>3.600878</td>
        </tr>
        <tr>
          <th>2</th>
          <td>24.847050</td>
          <td>25.000570</td>
          <td>1.776668</td>
          <td>8.980662</td>
          <td>5.463690</td>
          <td>-20.554624</td>
          <td>2</td>
          <td>DONE</td>
          <td>3.610472</td>
          <td>3.605154</td>
          <td>5.933451</td>
          <td>5.939774</td>
        </tr>
        <tr>
          <th>3</th>
          <td>1.037573</td>
          <td>12.590151</td>
          <td>-13.884561</td>
          <td>-6.698705</td>
          <td>-26.356281</td>
          <td>-20.689044</td>
          <td>3</td>
          <td>DONE</td>
          <td>5.950376</td>
          <td>5.945050</td>
          <td>7.454990</td>
          <td>7.461334</td>
        </tr>
        <tr>
          <th>4</th>
          <td>-3.304075</td>
          <td>-11.100677</td>
          <td>18.960371</td>
          <td>28.021409</td>
          <td>-11.112912</td>
          <td>-20.122708</td>
          <td>4</td>
          <td>DONE</td>
          <td>7.473245</td>
          <td>7.468100</td>
          <td>9.796861</td>
          <td>9.803062</td>
        </tr>
        <tr>
          <th>5</th>
          <td>21.648668</td>
          <td>10.601999</td>
          <td>-9.548986</td>
          <td>9.916927</td>
          <td>-4.905540</td>
          <td>-20.233767</td>
          <td>5</td>
          <td>DONE</td>
          <td>9.816972</td>
          <td>9.811713</td>
          <td>10.660171</td>
          <td>10.666215</td>
        </tr>
        <tr>
          <th>6</th>
          <td>2.526133</td>
          <td>-24.164591</td>
          <td>2.392106</td>
          <td>-11.383156</td>
          <td>2.395819</td>
          <td>-20.365415</td>
          <td>6</td>
          <td>DONE</td>
          <td>10.675736</td>
          <td>10.670532</td>
          <td>13.009698</td>
          <td>13.015930</td>
        </tr>
        <tr>
          <th>7</th>
          <td>-4.384478</td>
          <td>23.065310</td>
          <td>13.709541</td>
          <td>28.746732</td>
          <td>-18.560081</td>
          <td>-21.503655</td>
          <td>7</td>
          <td>DONE</td>
          <td>13.031111</td>
          <td>13.025853</td>
          <td>14.348860</td>
          <td>14.355063</td>
        </tr>
        <tr>
          <th>8</th>
          <td>-1.432745</td>
          <td>3.038741</td>
          <td>30.335393</td>
          <td>7.451875</td>
          <td>-12.479899</td>
          <td>-21.126941</td>
          <td>8</td>
          <td>DONE</td>
          <td>14.368652</td>
          <td>14.363406</td>
          <td>16.800594</td>
          <td>16.806757</td>
        </tr>
        <tr>
          <th>9</th>
          <td>-13.268807</td>
          <td>-32.495169</td>
          <td>29.653471</td>
          <td>31.969325</td>
          <td>-20.726331</td>
          <td>-21.779287</td>
          <td>9</td>
          <td>DONE</td>
          <td>16.821433</td>
          <td>16.816188</td>
          <td>18.936675</td>
          <td>18.942961</td>
        </tr>
        <tr>
          <th>10</th>
          <td>-13.923731</td>
          <td>-18.276881</td>
          <td>16.579693</td>
          <td>11.701505</td>
          <td>10.036555</td>
          <td>-20.492612</td>
          <td>10</td>
          <td>DONE</td>
          <td>18.954842</td>
          <td>18.949714</td>
          <td>20.933741</td>
          <td>20.940093</td>
        </tr>
        <tr>
          <th>11</th>
          <td>-8.005903</td>
          <td>-9.790183</td>
          <td>2.659173</td>
          <td>25.924207</td>
          <td>-11.668313</td>
          <td>-20.246022</td>
          <td>11</td>
          <td>DONE</td>
          <td>21.107816</td>
          <td>21.102399</td>
          <td>23.676304</td>
          <td>23.682238</td>
        </tr>
        <tr>
          <th>12</th>
          <td>-22.576208</td>
          <td>-16.108772</td>
          <td>20.935338</td>
          <td>32.493017</td>
          <td>-11.220198</td>
          <td>-21.467010</td>
          <td>12</td>
          <td>DONE</td>
          <td>23.827059</td>
          <td>23.821648</td>
          <td>25.419820</td>
          <td>25.425864</td>
        </tr>
        <tr>
          <th>13</th>
          <td>-8.353842</td>
          <td>-14.568949</td>
          <td>-3.834773</td>
          <td>29.793471</td>
          <td>-11.661498</td>
          <td>-21.166409</td>
          <td>13</td>
          <td>DONE</td>
          <td>25.564967</td>
          <td>25.559550</td>
          <td>28.138013</td>
          <td>28.144233</td>
        </tr>
        <tr>
          <th>14</th>
          <td>15.919873</td>
          <td>-4.396832</td>
          <td>17.338158</td>
          <td>26.252627</td>
          <td>-10.242380</td>
          <td>-21.065987</td>
          <td>14</td>
          <td>DONE</td>
          <td>28.293069</td>
          <td>28.287649</td>
          <td>29.523869</td>
          <td>29.529955</td>
        </tr>
        <tr>
          <th>15</th>
          <td>19.371736</td>
          <td>-15.827342</td>
          <td>8.897672</td>
          <td>5.377603</td>
          <td>-6.016775</td>
          <td>-19.861314</td>
          <td>15</td>
          <td>DONE</td>
          <td>29.665800</td>
          <td>29.660378</td>
          <td>31.835279</td>
          <td>31.841440</td>
        </tr>
        <tr>
          <th>16</th>
          <td>30.556724</td>
          <td>-2.585610</td>
          <td>-32.197811</td>
          <td>-27.323894</td>
          <td>-3.275048</td>
          <td>-21.872272</td>
          <td>16</td>
          <td>DONE</td>
          <td>31.973532</td>
          <td>31.968107</td>
          <td>34.294399</td>
          <td>34.300569</td>
        </tr>
        <tr>
          <th>17</th>
          <td>21.751522</td>
          <td>-8.413130</td>
          <td>7.590979</td>
          <td>25.252921</td>
          <td>9.484719</td>
          <td>-21.368462</td>
          <td>17</td>
          <td>DONE</td>
          <td>34.492749</td>
          <td>34.487334</td>
          <td>36.466870</td>
          <td>36.473090</td>
        </tr>
        <tr>
          <th>18</th>
          <td>14.848295</td>
          <td>26.971046</td>
          <td>6.328230</td>
          <td>-0.219498</td>
          <td>-2.990446</td>
          <td>-19.953525</td>
          <td>18</td>
          <td>DONE</td>
          <td>36.600632</td>
          <td>36.595210</td>
          <td>39.026025</td>
          <td>39.031978</td>
        </tr>
        <tr>
          <th>19</th>
          <td>23.135058</td>
          <td>-19.827276</td>
          <td>9.755866</td>
          <td>-2.105209</td>
          <td>-9.481747</td>
          <td>-20.501216</td>
          <td>19</td>
          <td>DONE</td>
          <td>39.181716</td>
          <td>39.176310</td>
          <td>41.553803</td>
          <td>41.560181</td>
        </tr>
        <tr>
          <th>20</th>
          <td>-22.233810</td>
          <td>-25.482759</td>
          <td>7.075561</td>
          <td>0.783817</td>
          <td>0.296046</td>
          <td>-20.824781</td>
          <td>20</td>
          <td>DONE</td>
          <td>41.699444</td>
          <td>41.694030</td>
          <td>43.873010</td>
          <td>43.879245</td>
        </tr>
        <tr>
          <th>21</th>
          <td>11.615944</td>
          <td>-10.472306</td>
          <td>-15.009540</td>
          <td>15.925152</td>
          <td>-0.583303</td>
          <td>-20.047425</td>
          <td>21</td>
          <td>DONE</td>
          <td>44.018105</td>
          <td>44.012692</td>
          <td>45.863985</td>
          <td>45.869918</td>
        </tr>
        <tr>
          <th>22</th>
          <td>32.245640</td>
          <td>-24.153485</td>
          <td>-25.328596</td>
          <td>12.411655</td>
          <td>-3.137632</td>
          <td>-21.490070</td>
          <td>22</td>
          <td>DONE</td>
          <td>46.021586</td>
          <td>46.016166</td>
          <td>47.697026</td>
          <td>47.703360</td>
        </tr>
        <tr>
          <th>23</th>
          <td>20.120868</td>
          <td>24.660097</td>
          <td>18.702672</td>
          <td>16.558178</td>
          <td>-14.814596</td>
          <td>-21.414807</td>
          <td>23</td>
          <td>DONE</td>
          <td>47.877986</td>
          <td>47.872562</td>
          <td>50.768134</td>
          <td>50.773959</td>
        </tr>
        <tr>
          <th>24</th>
          <td>23.530363</td>
          <td>-17.240029</td>
          <td>30.934765</td>
          <td>-22.202274</td>
          <td>4.750352</td>
          <td>-21.389061</td>
          <td>24</td>
          <td>DONE</td>
          <td>50.910365</td>
          <td>50.904943</td>
          <td>53.116923</td>
          <td>53.123098</td>
        </tr>
        <tr>
          <th>25</th>
          <td>21.719569</td>
          <td>32.295845</td>
          <td>-17.379160</td>
          <td>7.435753</td>
          <td>9.839367</td>
          <td>-21.612258</td>
          <td>25</td>
          <td>DONE</td>
          <td>53.252952</td>
          <td>53.247533</td>
          <td>55.030757</td>
          <td>55.036695</td>
        </tr>
        <tr>
          <th>26</th>
          <td>18.169401</td>
          <td>-14.119781</td>
          <td>2.519758</td>
          <td>-0.030208</td>
          <td>-5.946987</td>
          <td>-18.822556</td>
          <td>26</td>
          <td>DONE</td>
          <td>55.177736</td>
          <td>55.172315</td>
          <td>56.871191</td>
          <td>56.877399</td>
        </tr>
        <tr>
          <th>27</th>
          <td>14.292780</td>
          <td>-15.088651</td>
          <td>2.423831</td>
          <td>0.808539</td>
          <td>-7.082904</td>
          <td>-18.746422</td>
          <td>27</td>
          <td>DONE</td>
          <td>57.071600</td>
          <td>57.066178</td>
          <td>59.212659</td>
          <td>59.218937</td>
        </tr>
        <tr>
          <th>28</th>
          <td>16.209098</td>
          <td>-11.975741</td>
          <td>-6.896560</td>
          <td>1.300681</td>
          <td>-6.363823</td>
          <td>-18.750685</td>
          <td>28</td>
          <td>CANCELLED</td>
          <td>59.352107</td>
          <td>59.346696</td>
          <td>61.328404</td>
          <td>61.334550</td>
        </tr>
      </tbody>
    </table>
    </div>
    </div>
    <br />
    <br />

.. GENERATED FROM PYTHON SOURCE LINES 130-140

Each row of the DataFrame corresponds to an evaluation of the ``run``-function. The DataFrame contains the following columns:
- ``"p:*"``: The parameters of the search space.
- ``"objective"``: The objective value returned by the evaluation.
- ``"job_id"``: The id of the evaluation in increasing order of job creation.
- ``"job_status"``: The status of the evaluation (e.g., "DONE", "CANCELLED").
- ``"m:timestamp_submit/gather"``: The submition and gathering times of the evaluation by the ``Evaluator`` (includes overheads).
- ``"m:timestamp_start/end"``: The starting and ending time of the evaluation.

We can now plot the results of the sequential search. The first plot shows the evolution of the objective.
The second plot shows the utilization of the worker over time.

.. GENERATED FROM PYTHON SOURCE LINES 140-158

.. dropdown:: Code (Plot search trajectory and worker utilization)

    .. code-block:: Python


        fig, axes = plt.subplots(
                nrows=2,
                ncols=1,
                sharex=True,
                figsize=figure_size(width=600),
                tight_layout=True,
            )

        _ = plot_search_trajectory_single_objective_hpo(
            results["sequential"], mode="min", x_units="seconds", ax=axes[0]
        )

        _ = plot_worker_utilization(
            results["sequential"], num_workers=1, profile_type="start/end", ax=axes[1]
        )




.. image-sg:: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_001.png
   :alt: plot from serial to parallel hpo
   :srcset: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_001.png
   :class: sphx-glr-single-img





.. GENERATED FROM PYTHON SOURCE LINES 159-160

Then, we can create a parallel evaluator with 100 workers.

.. GENERATED FROM PYTHON SOURCE LINES 160-170

.. code-block:: Python

    parallel_evaluator = Evaluator.create(
        run_ackley,
        method="thread",
        method_kwargs={
            "num_workers": 100, # For the parallel evaluations
            "callbacks": [TqdmCallback("Parallel BO:")]
        },
    )
    parallel_search = CBO(problem, **search_kwargs)





.. rst-class:: sphx-glr-script-out

 .. code-block:: none

    Results file already exists, it will be renamed to /Users/rp5/Documents/DeepHyper/deephyper/examples/examples_parallelism/results_20250818-150058.csv




.. GENERATED FROM PYTHON SOURCE LINES 171-172

The parallel search is executed for 1 minute.

.. GENERATED FROM PYTHON SOURCE LINES 172-175

.. code-block:: Python

    results["parallel"] = preprocess_results(parallel_search.search(parallel_evaluator, timeout=timeout))
    results["parallel"]





.. rst-class:: sphx-glr-script-out

 .. code-block:: none


    0it [00:00, ?it/s]
    Parallel BO:: : 0it [00:00, ?it/s]
    Parallel BO:: : 1it [00:00, 3606.45it/s, failures=0, objective=-21.6]
    Parallel BO:: : 2it [00:00, 43.18it/s, failures=0, objective=-21.5]  
    Parallel BO:: : 3it [00:00, 10.65it/s, failures=0, objective=-21.5]
    Parallel BO:: : 3it [00:00, 10.65it/s, failures=0, objective=-20.3]
    Parallel BO:: : 4it [00:00, 10.65it/s, failures=0, objective=-20.3]
    Parallel BO:: : 5it [00:00, 10.65it/s, failures=0, objective=-20.3]
    Parallel BO:: : 6it [00:00, 10.65it/s, failures=0, objective=-20.3]
    Parallel BO:: : 7it [00:00, 10.65it/s, failures=0, objective=-20.3]
    Parallel BO:: : 8it [00:00, 18.22it/s, failures=0, objective=-20.3]
    Parallel BO:: : 8it [00:00, 18.22it/s, failures=0, objective=-20.3]
    Parallel BO:: : 9it [00:00, 18.22it/s, failures=0, objective=-20.3]
    Parallel BO:: : 10it [00:00, 18.22it/s, failures=0, objective=-20.3]
    Parallel BO:: : 11it [00:00, 19.82it/s, failures=0, objective=-20.3]
    Parallel BO:: : 11it [00:00, 19.82it/s, failures=0, objective=-20.3]
    Parallel BO:: : 12it [00:00, 19.82it/s, failures=0, objective=-20.3]
    Parallel BO:: : 13it [00:00, 19.82it/s, failures=0, objective=-20.3]
    Parallel BO:: : 14it [00:00, 19.85it/s, failures=0, objective=-20.3]
    Parallel BO:: : 14it [00:00, 19.85it/s, failures=0, objective=-20.3]
    Parallel BO:: : 15it [00:00, 19.85it/s, failures=0, objective=-20.3]
    Parallel BO:: : 16it [00:00, 19.85it/s, failures=0, objective=-20.3]
    Parallel BO:: : 17it [00:00, 21.51it/s, failures=0, objective=-20.3]
    Parallel BO:: : 17it [00:00, 21.51it/s, failures=0, objective=-20.3]
    Parallel BO:: : 18it [00:00, 21.51it/s, failures=0, objective=-19.4]
    Parallel BO:: : 19it [00:00, 21.51it/s, failures=0, objective=-19.4]
    Parallel BO:: : 20it [00:00, 21.51it/s, failures=0, objective=-19.4]
    Parallel BO:: : 21it [00:00, 21.51it/s, failures=0, objective=-19.4]
    Parallel BO:: : 22it [00:00, 27.73it/s, failures=0, objective=-19.4]
    Parallel BO:: : 22it [00:00, 27.73it/s, failures=0, objective=-19.4]
    Parallel BO:: : 23it [00:00, 27.73it/s, failures=0, objective=-19.4]
    Parallel BO:: : 24it [00:00, 27.73it/s, failures=0, objective=-19.4]
    Parallel BO:: : 25it [00:00, 27.73it/s, failures=0, objective=-19.4]
    Parallel BO:: : 26it [00:00, 27.73it/s, failures=0, objective=-16.8]
    Parallel BO:: : 27it [00:01, 32.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 27it [00:01, 32.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 28it [00:01, 32.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 29it [00:01, 32.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 30it [00:01, 32.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 31it [00:01, 32.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 32it [00:01, 32.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 32it [00:01, 32.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 33it [00:01, 32.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 34it [00:01, 32.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 35it [00:01, 32.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 36it [00:01, 32.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 37it [00:01, 32.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 38it [00:01, 32.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 39it [00:01, 32.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 40it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 40it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 41it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 42it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 43it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 44it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 45it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 46it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 47it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 48it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 49it [00:01, 42.82it/s, failures=0, objective=-16.8]
    Parallel BO:: : 50it [00:01, 55.44it/s, failures=0, objective=-16.8]
    Parallel BO:: : 50it [00:01, 55.44it/s, failures=0, objective=-16.8]
    Parallel BO:: : 51it [00:01, 55.44it/s, failures=0, objective=-16.8]
    Parallel BO:: : 52it [00:01, 55.44it/s, failures=0, objective=-16.8]
    Parallel BO:: : 53it [00:01, 55.44it/s, failures=0, objective=-16.8]
    Parallel BO:: : 54it [00:01, 55.44it/s, failures=0, objective=-16.8]
    Parallel BO:: : 55it [00:01, 55.44it/s, failures=0, objective=-16.8]
    Parallel BO:: : 56it [00:01, 55.44it/s, failures=0, objective=-16.8]
    Parallel BO:: : 57it [00:01, 57.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 57it [00:01, 57.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 58it [00:01, 57.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 59it [00:01, 57.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 60it [00:01, 57.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 61it [00:01, 57.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 62it [00:01, 57.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 63it [00:01, 57.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 64it [00:01, 58.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 64it [00:01, 58.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 65it [00:01, 58.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 66it [00:01, 58.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 67it [00:01, 58.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 68it [00:01, 58.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 69it [00:01, 58.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 70it [00:01, 58.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 71it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 71it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 72it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 73it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 74it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 75it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 76it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 77it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 78it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 79it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 80it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 81it [00:01, 59.36it/s, failures=0, objective=-16.8]
    Parallel BO:: : 82it [00:01, 70.06it/s, failures=0, objective=-16.8]
    Parallel BO:: : 82it [00:01, 70.06it/s, failures=0, objective=-16.8]
    Parallel BO:: : 83it [00:01, 70.06it/s, failures=0, objective=-16.8]
    Parallel BO:: : 84it [00:01, 70.06it/s, failures=0, objective=-16.8]
    Parallel BO:: : 85it [00:01, 70.06it/s, failures=0, objective=-16.8]
    Parallel BO:: : 86it [00:01, 70.06it/s, failures=0, objective=-16.8]
    Parallel BO:: : 87it [00:01, 70.06it/s, failures=0, objective=-16.8]
    Parallel BO:: : 88it [00:01, 70.06it/s, failures=0, objective=-16.8]
    Parallel BO:: : 89it [00:01, 70.06it/s, failures=0, objective=-16.8]
    Parallel BO:: : 90it [00:02, 70.17it/s, failures=0, objective=-16.8]
    Parallel BO:: : 90it [00:02, 70.17it/s, failures=0, objective=-16.8]
    Parallel BO:: : 91it [00:02, 70.17it/s, failures=0, objective=-16.8]
    Parallel BO:: : 92it [00:02, 70.17it/s, failures=0, objective=-16.8]
    Parallel BO:: : 93it [00:02, 70.17it/s, failures=0, objective=-16.8]
    Parallel BO:: : 94it [00:02, 70.17it/s, failures=0, objective=-16.8]
    Parallel BO:: : 95it [00:02, 70.17it/s, failures=0, objective=-16.8]
    Parallel BO:: : 96it [00:02, 70.17it/s, failures=0, objective=-16.8]
    Parallel BO:: : 97it [00:02, 70.17it/s, failures=0, objective=-16.8]
    Parallel BO:: : 98it [00:02, 70.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 98it [00:02, 70.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 99it [00:02, 70.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 100it [00:02, 70.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 101it [00:02, 70.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 102it [00:02, 70.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 103it [00:02, 70.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 104it [00:02, 70.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 105it [00:02, 70.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 106it [00:02, 34.89it/s, failures=0, objective=-16.8]
    Parallel BO:: : 106it [00:02, 34.89it/s, failures=0, objective=-16.8]
    Parallel BO:: : 107it [00:02, 34.89it/s, failures=0, objective=-16.8]
    Parallel BO:: : 108it [00:02, 34.89it/s, failures=0, objective=-16.8]
    Parallel BO:: : 109it [00:02, 34.89it/s, failures=0, objective=-16.8]
    Parallel BO:: : 110it [00:02, 34.89it/s, failures=0, objective=-16.8]
    Parallel BO:: : 111it [00:02, 34.89it/s, failures=0, objective=-16.8]
    Parallel BO:: : 112it [00:02, 35.21it/s, failures=0, objective=-16.8]
    Parallel BO:: : 112it [00:02, 35.21it/s, failures=0, objective=-16.8]
    Parallel BO:: : 113it [00:02, 35.21it/s, failures=0, objective=-16.8]
    Parallel BO:: : 114it [00:02, 35.21it/s, failures=0, objective=-16.8]
    Parallel BO:: : 115it [00:02, 35.21it/s, failures=0, objective=-16.8]
    Parallel BO:: : 116it [00:02, 35.21it/s, failures=0, objective=-16.8]
    Parallel BO:: : 117it [00:02, 35.21it/s, failures=0, objective=-16.8]
    Parallel BO:: : 118it [00:02, 35.21it/s, failures=0, objective=-16.8]
    Parallel BO:: : 119it [00:02, 35.21it/s, failures=0, objective=-16.8]
    Parallel BO:: : 120it [00:02, 39.80it/s, failures=0, objective=-16.8]
    Parallel BO:: : 120it [00:02, 39.80it/s, failures=0, objective=-16.8]
    Parallel BO:: : 121it [00:02, 39.80it/s, failures=0, objective=-16.8]
    Parallel BO:: : 122it [00:02, 39.80it/s, failures=0, objective=-16.8]
    Parallel BO:: : 123it [00:03, 39.80it/s, failures=0, objective=-16.8]
    Parallel BO:: : 124it [00:03, 39.80it/s, failures=0, objective=-16.8]
    Parallel BO:: : 125it [00:03, 39.80it/s, failures=0, objective=-16.8]
    Parallel BO:: : 126it [00:03, 40.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 126it [00:03, 40.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 127it [00:03, 40.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 128it [00:03, 40.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 129it [00:03, 40.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 130it [00:03, 40.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 131it [00:03, 40.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 132it [00:03, 40.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 133it [00:03, 40.33it/s, failures=0, objective=-16.8]
    Parallel BO:: : 134it [00:03, 45.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 134it [00:03, 45.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 135it [00:03, 45.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 136it [00:03, 45.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 137it [00:03, 45.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 138it [00:03, 45.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 139it [00:03, 45.38it/s, failures=0, objective=-16.8]
    Parallel BO:: : 140it [00:03, 45.35it/s, failures=0, objective=-16.8]
    Parallel BO:: : 140it [00:03, 45.35it/s, failures=0, objective=-16.8]
    Parallel BO:: : 141it [00:03, 45.35it/s, failures=0, objective=-16.8]
    Parallel BO:: : 142it [00:03, 45.35it/s, failures=0, objective=-16.8]
    Parallel BO:: : 143it [00:03, 45.35it/s, failures=0, objective=-16.8]
    Parallel BO:: : 144it [00:03, 45.35it/s, failures=0, objective=-16.8]
    Parallel BO:: : 145it [00:03, 45.35it/s, failures=0, objective=-16.8]
    Parallel BO:: : 146it [00:03, 45.35it/s, failures=0, objective=-16.8]
    Parallel BO:: : 147it [00:03, 47.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 147it [00:03, 47.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 148it [00:03, 47.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 149it [00:03, 47.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 150it [00:03, 47.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 151it [00:03, 47.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 152it [00:03, 47.71it/s, failures=0, objective=-16.8]
    Parallel BO:: : 153it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 153it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 154it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 155it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 156it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 157it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 158it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 159it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 160it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 161it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 162it [00:03, 43.31it/s, failures=0, objective=-16.8]
    Parallel BO:: : 163it [00:03, 52.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 163it [00:03, 52.03it/s, failures=0, objective=-16.8]
    Parallel BO:: : 164it [00:03, 52.03it/s, failures=0, objective=-14.1]
    Parallel BO:: : 165it [00:03, 52.03it/s, failures=0, objective=-14.1]
    Parallel BO:: : 166it [00:03, 52.03it/s, failures=0, objective=-14.1]
    Parallel BO:: : 167it [00:03, 52.03it/s, failures=0, objective=-14.1]
    Parallel BO:: : 168it [00:03, 52.03it/s, failures=0, objective=-14.1]
    Parallel BO:: : 169it [00:03, 52.03it/s, failures=0, objective=-14.1]
    Parallel BO:: : 170it [00:03, 52.03it/s, failures=0, objective=-14.1]
    Parallel BO:: : 171it [00:03, 51.51it/s, failures=0, objective=-14.1]
    Parallel BO:: : 171it [00:03, 51.51it/s, failures=0, objective=-14.1]
    Parallel BO:: : 172it [00:03, 51.51it/s, failures=0, objective=-14.1]
    Parallel BO:: : 173it [00:03, 51.51it/s, failures=0, objective=-14.1]
    Parallel BO:: : 174it [00:03, 51.51it/s, failures=0, objective=-14.1]
    Parallel BO:: : 175it [00:03, 51.51it/s, failures=0, objective=-14.1]
    Parallel BO:: : 176it [00:03, 51.51it/s, failures=0, objective=-14.1]
    Parallel BO:: : 177it [00:03, 51.51it/s, failures=0, objective=-14.1]
    Parallel BO:: : 178it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 178it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 179it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 180it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 181it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 182it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 183it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 184it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 185it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 186it [00:04, 43.74it/s, failures=0, objective=-14.1]
    Parallel BO:: : 187it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 187it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 188it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 189it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 190it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 191it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 192it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 193it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 194it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 195it [00:04, 42.09it/s, failures=0, objective=-14.1]
    Parallel BO:: : 196it [00:04, 47.23it/s, failures=0, objective=-14.1]
    Parallel BO:: : 196it [00:04, 47.23it/s, failures=0, objective=-14.1]
    Parallel BO:: : 197it [00:04, 47.23it/s, failures=0, objective=-14.1]
    Parallel BO:: : 198it [00:04, 47.23it/s, failures=0, objective=-14.1]
    Parallel BO:: : 199it [00:04, 47.23it/s, failures=0, objective=-14.1]
    Parallel BO:: : 200it [00:04, 47.23it/s, failures=0, objective=-14.1]
    Parallel BO:: : 201it [00:04, 47.23it/s, failures=0, objective=-14.1]
    Parallel BO:: : 202it [00:04, 44.45it/s, failures=0, objective=-14.1]
    Parallel BO:: : 202it [00:04, 44.45it/s, failures=0, objective=-14.1]
    Parallel BO:: : 203it [00:04, 44.45it/s, failures=0, objective=-14.1]
    Parallel BO:: : 204it [00:04, 44.45it/s, failures=0, objective=-14.1]
    Parallel BO:: : 205it [00:04, 44.45it/s, failures=0, objective=-13.7]
    Parallel BO:: : 206it [00:04, 44.45it/s, failures=0, objective=-13.7]
    Parallel BO:: : 207it [00:04, 42.10it/s, failures=0, objective=-13.7]
    Parallel BO:: : 207it [00:04, 42.10it/s, failures=0, objective=-13.7]
    Parallel BO:: : 208it [00:04, 42.10it/s, failures=0, objective=-13.7]
    Parallel BO:: : 209it [00:05, 42.10it/s, failures=0, objective=-13.7]
    Parallel BO:: : 210it [00:05, 42.10it/s, failures=0, objective=-13.7]
    Parallel BO:: : 211it [00:05, 42.10it/s, failures=0, objective=-13.7]
    Parallel BO:: : 212it [00:05, 39.39it/s, failures=0, objective=-13.7]
    Parallel BO:: : 212it [00:05, 39.39it/s, failures=0, objective=-13.7]
    Parallel BO:: : 213it [00:05, 39.39it/s, failures=0, objective=-13.7]
    Parallel BO:: : 214it [00:05, 39.39it/s, failures=0, objective=-13.7]
    Parallel BO:: : 215it [00:05, 39.39it/s, failures=0, objective=-13.7]
    Parallel BO:: : 216it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 216it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 217it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 218it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 219it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 220it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 221it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 222it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 223it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 224it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 225it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 226it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 227it [00:05, 32.19it/s, failures=0, objective=-13.7]
    Parallel BO:: : 228it [00:05, 44.91it/s, failures=0, objective=-13.7]
    Parallel BO:: : 228it [00:05, 44.91it/s, failures=0, objective=-13.7]
    Parallel BO:: : 229it [00:05, 44.91it/s, failures=0, objective=-13.7]
    Parallel BO:: : 230it [00:05, 44.91it/s, failures=0, objective=-13.7]
    Parallel BO:: : 231it [00:05, 44.91it/s, failures=0, objective=-13.7]
    Parallel BO:: : 232it [00:05, 44.91it/s, failures=0, objective=-13.7]
    Parallel BO:: : 233it [00:05, 44.91it/s, failures=0, objective=-13.7]
    Parallel BO:: : 234it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 234it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 235it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 236it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 237it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 238it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 239it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 240it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 241it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 242it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 243it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 244it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 245it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 246it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 247it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 248it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 249it [00:05, 36.84it/s, failures=0, objective=-13.7]
    Parallel BO:: : 250it [00:05, 53.18it/s, failures=0, objective=-13.7]
    Parallel BO:: : 250it [00:05, 53.18it/s, failures=0, objective=-13.7]
    Parallel BO:: : 251it [00:05, 53.18it/s, failures=0, objective=-13.7]
    Parallel BO:: : 252it [00:05, 53.18it/s, failures=0, objective=-12.3]
    Parallel BO:: : 253it [00:05, 53.18it/s, failures=0, objective=-12.3]
    Parallel BO:: : 254it [00:05, 53.18it/s, failures=0, objective=-12.3]
    Parallel BO:: : 255it [00:05, 53.18it/s, failures=0, objective=-12.3]
    Parallel BO:: : 256it [00:05, 52.09it/s, failures=0, objective=-12.3]
    Parallel BO:: : 256it [00:05, 52.09it/s, failures=0, objective=-12.3]
    Parallel BO:: : 257it [00:05, 52.09it/s, failures=0, objective=-12.3]
    Parallel BO:: : 258it [00:05, 52.09it/s, failures=0, objective=-12.3]
    Parallel BO:: : 259it [00:05, 52.09it/s, failures=0, objective=-12.3]
    Parallel BO:: : 260it [00:05, 52.09it/s, failures=0, objective=-12.3]
    Parallel BO:: : 261it [00:06, 52.09it/s, failures=0, objective=-12.3]
    Parallel BO:: : 262it [00:06, 48.76it/s, failures=0, objective=-12.3]
    Parallel BO:: : 262it [00:06, 48.76it/s, failures=0, objective=-12.3]
    Parallel BO:: : 263it [00:06, 48.76it/s, failures=0, objective=-12.3]
    Parallel BO:: : 264it [00:06, 48.76it/s, failures=0, objective=-12.3]
    Parallel BO:: : 265it [00:06, 48.76it/s, failures=0, objective=-12.3]
    Parallel BO:: : 266it [00:06, 48.76it/s, failures=0, objective=-12.3]
    Parallel BO:: : 267it [00:06, 48.76it/s, failures=0, objective=-12.3]
    Parallel BO:: : 268it [00:06, 48.76it/s, failures=0, objective=-12.3]
    Parallel BO:: : 269it [00:06, 48.29it/s, failures=0, objective=-12.3]
    Parallel BO:: : 269it [00:06, 48.29it/s, failures=0, objective=-12.3]
    Parallel BO:: : 270it [00:06, 48.29it/s, failures=0, objective=-12.3]
    Parallel BO:: : 271it [00:06, 48.29it/s, failures=0, objective=-12.3]
    Parallel BO:: : 272it [00:06, 48.29it/s, failures=0, objective=-12.3]
    Parallel BO:: : 273it [00:06, 48.29it/s, failures=0, objective=-12.3]
    Parallel BO:: : 274it [00:06, 40.86it/s, failures=0, objective=-12.3]
    Parallel BO:: : 274it [00:06, 40.86it/s, failures=0, objective=-12.3]
    Parallel BO:: : 275it [00:06, 40.86it/s, failures=0, objective=-12.3]
    Parallel BO:: : 276it [00:06, 40.86it/s, failures=0, objective=-12.3]
    Parallel BO:: : 277it [00:06, 40.86it/s, failures=0, objective=-12.3]
    Parallel BO:: : 278it [00:06, 40.86it/s, failures=0, objective=-12.3]
    Parallel BO:: : 279it [00:06, 40.86it/s, failures=0, objective=-12.3]
    Parallel BO:: : 280it [00:06, 40.86it/s, failures=0, objective=-12.3]
    Parallel BO:: : 281it [00:06, 42.45it/s, failures=0, objective=-12.3]
    Parallel BO:: : 281it [00:06, 42.45it/s, failures=0, objective=-12.3]
    Parallel BO:: : 282it [00:06, 42.45it/s, failures=0, objective=-12.3]
    Parallel BO:: : 283it [00:06, 42.45it/s, failures=0, objective=-12.3]
    Parallel BO:: : 284it [00:06, 42.45it/s, failures=0, objective=-12.3]
    Parallel BO:: : 285it [00:06, 42.45it/s, failures=0, objective=-12.3]
    Parallel BO:: : 286it [00:06, 40.81it/s, failures=0, objective=-12.3]
    Parallel BO:: : 286it [00:06, 40.81it/s, failures=0, objective=-12.3]
    Parallel BO:: : 287it [00:06, 40.81it/s, failures=0, objective=-12.3]
    Parallel BO:: : 288it [00:06, 40.81it/s, failures=0, objective=-12.3]
    Parallel BO:: : 289it [00:06, 40.81it/s, failures=0, objective=-12.3]
    Parallel BO:: : 290it [00:06, 40.81it/s, failures=0, objective=-12.3]
    Parallel BO:: : 291it [00:06, 40.81it/s, failures=0, objective=-12.3]
    Parallel BO:: : 292it [00:06, 40.81it/s, failures=0, objective=-10.4]
    Parallel BO:: : 293it [00:06, 40.81it/s, failures=0, objective=-10.4]
    Parallel BO:: : 294it [00:06, 46.84it/s, failures=0, objective=-10.4]
    Parallel BO:: : 294it [00:06, 46.84it/s, failures=0, objective=-10.4]
    Parallel BO:: : 295it [00:06, 46.84it/s, failures=0, objective=-10.4]
    Parallel BO:: : 296it [00:06, 46.84it/s, failures=0, objective=-10.4]
    Parallel BO:: : 297it [00:06, 46.84it/s, failures=0, objective=-10.4]
    Parallel BO:: : 298it [00:06, 46.84it/s, failures=0, objective=-10.4]
    Parallel BO:: : 299it [00:06, 46.84it/s, failures=0, objective=-10.4]
    Parallel BO:: : 300it [00:06, 46.84it/s, failures=0, objective=-10.4]
    Parallel BO:: : 301it [00:06, 48.58it/s, failures=0, objective=-10.4]
    Parallel BO:: : 301it [00:06, 48.58it/s, failures=0, objective=-10.4]
    Parallel BO:: : 302it [00:06, 48.58it/s, failures=0, objective=-10.4]
    Parallel BO:: : 303it [00:06, 48.58it/s, failures=0, objective=-10.4]
    Parallel BO:: : 304it [00:06, 48.58it/s, failures=0, objective=-10.4]
    Parallel BO:: : 305it [00:06, 48.58it/s, failures=0, objective=-10.4]
    Parallel BO:: : 306it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 306it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 307it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 308it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 309it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 310it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 311it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 312it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 313it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 314it [00:07, 44.85it/s, failures=0, objective=-10.4]
    Parallel BO:: : 315it [00:07, 51.03it/s, failures=0, objective=-10.4]
    Parallel BO:: : 315it [00:07, 51.03it/s, failures=0, objective=-10.4]
    Parallel BO:: : 316it [00:07, 51.03it/s, failures=0, objective=-10.4]
    Parallel BO:: : 317it [00:07, 51.03it/s, failures=0, objective=-10.4]
    Parallel BO:: : 318it [00:07, 51.03it/s, failures=0, objective=-10.4]
    Parallel BO:: : 319it [00:07, 51.03it/s, failures=0, objective=-10.4]
    Parallel BO:: : 320it [00:07, 51.03it/s, failures=0, objective=-10.4]
    Parallel BO:: : 321it [00:07, 37.32it/s, failures=0, objective=-10.4]
    Parallel BO:: : 321it [00:07, 37.32it/s, failures=0, objective=-10.4]
    Parallel BO:: : 322it [00:07, 37.32it/s, failures=0, objective=-10.4]
    Parallel BO:: : 323it [00:07, 37.32it/s, failures=0, objective=-10.4]
    Parallel BO:: : 324it [00:07, 37.32it/s, failures=0, objective=-10.4]
    Parallel BO:: : 325it [00:07, 37.32it/s, failures=0, objective=-10.4]
    Parallel BO:: : 326it [00:07, 34.37it/s, failures=0, objective=-10.4]
    Parallel BO:: : 326it [00:07, 34.37it/s, failures=0, objective=-10.4]
    Parallel BO:: : 327it [00:07, 34.37it/s, failures=0, objective=-10.4]
    Parallel BO:: : 328it [00:07, 34.37it/s, failures=0, objective=-10.4]
    Parallel BO:: : 329it [00:07, 34.37it/s, failures=0, objective=-10.4]
    Parallel BO:: : 330it [00:07, 34.37it/s, failures=0, objective=-10.4]
    Parallel BO:: : 331it [00:07, 34.37it/s, failures=0, objective=-10.4]
    Parallel BO:: : 332it [00:07, 36.63it/s, failures=0, objective=-10.4]
    Parallel BO:: : 332it [00:07, 36.63it/s, failures=0, objective=-10.4]
    Parallel BO:: : 333it [00:07, 36.63it/s, failures=0, objective=-10.4]
    Parallel BO:: : 334it [00:07, 36.63it/s, failures=0, objective=-10.4]
    Parallel BO:: : 335it [00:07, 36.63it/s, failures=0, objective=-10.4]
    Parallel BO:: : 336it [00:07, 36.63it/s, failures=0, objective=-10.4]
    Parallel BO:: : 337it [00:07, 35.89it/s, failures=0, objective=-10.4]
    Parallel BO:: : 337it [00:07, 35.89it/s, failures=0, objective=-10.4]
    Parallel BO:: : 338it [00:07, 35.89it/s, failures=0, objective=-10.4]
    Parallel BO:: : 339it [00:07, 35.89it/s, failures=0, objective=-10.4]
    Parallel BO:: : 340it [00:07, 35.89it/s, failures=0, objective=-10.4]
    Parallel BO:: : 341it [00:07, 35.89it/s, failures=0, objective=-10.4]
    Parallel BO:: : 342it [00:07, 35.89it/s, failures=0, objective=-10.4]
    Parallel BO:: : 343it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 343it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 344it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 345it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 346it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 347it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 348it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 349it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 350it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 351it [00:08, 36.95it/s, failures=0, objective=-10.4]
    Parallel BO:: : 352it [00:08, 43.71it/s, failures=0, objective=-10.4]
    Parallel BO:: : 352it [00:08, 43.71it/s, failures=0, objective=-10.4]
    Parallel BO:: : 353it [00:08, 43.71it/s, failures=0, objective=-10.4]
    Parallel BO:: : 354it [00:08, 43.71it/s, failures=0, objective=-10.4]
    Parallel BO:: : 355it [00:08, 43.71it/s, failures=0, objective=-10.4]
    Parallel BO:: : 356it [00:08, 43.71it/s, failures=0, objective=-10.4]
    Parallel BO:: : 357it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 357it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 358it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 359it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 360it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 361it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 362it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 363it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 364it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 365it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 366it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 367it [00:08, 39.99it/s, failures=0, objective=-10.4]
    Parallel BO:: : 368it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 368it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 369it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 370it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 371it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 372it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 373it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 374it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 375it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 376it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 377it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 378it [00:08, 48.55it/s, failures=0, objective=-10.4]
    Parallel BO:: : 379it [00:08, 55.53it/s, failures=0, objective=-10.4]
    Parallel BO:: : 379it [00:08, 55.53it/s, failures=0, objective=-10.4]
    Parallel BO:: : 380it [00:08, 55.53it/s, failures=0, objective=-10.4]
    Parallel BO:: : 381it [00:08, 55.53it/s, failures=0, objective=-10.4]
    Parallel BO:: : 382it [00:08, 55.53it/s, failures=0, objective=-10.4]
    Parallel BO:: : 383it [00:08, 55.53it/s, failures=0, objective=-10.4]
    Parallel BO:: : 384it [00:08, 55.53it/s, failures=0, objective=-10.4]
    Parallel BO:: : 385it [00:08, 48.22it/s, failures=0, objective=-10.4]
    Parallel BO:: : 385it [00:08, 48.22it/s, failures=0, objective=-10.4]
    Parallel BO:: : 386it [00:08, 48.22it/s, failures=0, objective=-10.4]
    Parallel BO:: : 387it [00:08, 48.22it/s, failures=0, objective=-10.4]
    Parallel BO:: : 388it [00:08, 48.22it/s, failures=0, objective=-10.4]
    Parallel BO:: : 389it [00:08, 48.22it/s, failures=0, objective=-10.4]
    Parallel BO:: : 390it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 390it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 391it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 392it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 393it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 394it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 395it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 396it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 397it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 398it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 399it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 400it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 401it [00:09, 40.34it/s, failures=0, objective=-10.4]
    Parallel BO:: : 402it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 402it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 403it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 404it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 405it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 406it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 407it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 408it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 409it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 410it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 411it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 412it [00:09, 48.61it/s, failures=0, objective=-10.4]
    Parallel BO:: : 413it [00:09, 52.09it/s, failures=0, objective=-10.4]
    Parallel BO:: : 413it [00:09, 52.09it/s, failures=0, objective=-10.4]
    Parallel BO:: : 414it [00:09, 52.09it/s, failures=0, objective=-10.4]
    Parallel BO:: : 415it [00:09, 52.09it/s, failures=0, objective=-10.4]
    Parallel BO:: : 416it [00:09, 52.09it/s, failures=0, objective=-10.4]
    Parallel BO:: : 417it [00:09, 52.09it/s, failures=0, objective=-10.4]
    Parallel BO:: : 418it [00:09, 52.09it/s, failures=0, objective=-10.4]
    Parallel BO:: : 419it [00:09, 46.27it/s, failures=0, objective=-10.4]
    Parallel BO:: : 419it [00:09, 46.27it/s, failures=0, objective=-10.4]
    Parallel BO:: : 420it [00:09, 46.27it/s, failures=0, objective=-10.4]
    Parallel BO:: : 421it [00:09, 46.27it/s, failures=0, objective=-10.4]
    Parallel BO:: : 422it [00:09, 46.27it/s, failures=0, objective=-9.03]
    Parallel BO:: : 423it [00:09, 46.27it/s, failures=0, objective=-9.03]
    Parallel BO:: : 424it [00:09, 43.82it/s, failures=0, objective=-9.03]
    Parallel BO:: : 424it [00:09, 43.82it/s, failures=0, objective=-9.03]
    Parallel BO:: : 425it [00:09, 43.82it/s, failures=0, objective=-9.03]
    Parallel BO:: : 426it [00:09, 43.82it/s, failures=0, objective=-9.03]
    Parallel BO:: : 427it [00:09, 43.82it/s, failures=0, objective=-9.03]
    Parallel BO:: : 428it [00:09, 43.82it/s, failures=0, objective=-9.03]
    Parallel BO:: : 429it [00:09, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 429it [00:09, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 430it [00:09, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 431it [00:09, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 432it [00:09, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 433it [00:09, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 434it [00:09, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 435it [00:09, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 436it [00:09, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 437it [00:10, 38.53it/s, failures=0, objective=-9.03]
    Parallel BO:: : 437it [00:10, 38.53it/s, failures=0, objective=-9.03]
    Parallel BO:: : 438it [00:10, 38.53it/s, failures=0, objective=-9.03]
    Parallel BO:: : 439it [00:10, 38.53it/s, failures=0, objective=-9.03]
    Parallel BO:: : 440it [00:10, 38.53it/s, failures=0, objective=-9.03]
    Parallel BO:: : 441it [00:10, 38.53it/s, failures=0, objective=-9.03]
    Parallel BO:: : 442it [00:10, 38.53it/s, failures=0, objective=-9.03]
    Parallel BO:: : 443it [00:10, 35.48it/s, failures=0, objective=-9.03]
    Parallel BO:: : 443it [00:10, 35.48it/s, failures=0, objective=-9.03]
    Parallel BO:: : 444it [00:10, 35.48it/s, failures=0, objective=-9.03]
    Parallel BO:: : 445it [00:10, 35.48it/s, failures=0, objective=-9.03]
    Parallel BO:: : 446it [00:10, 35.48it/s, failures=0, objective=-9.03]
    Parallel BO:: : 447it [00:10, 35.48it/s, failures=0, objective=-9.03]
    Parallel BO:: : 448it [00:10, 34.96it/s, failures=0, objective=-9.03]
    Parallel BO:: : 448it [00:10, 34.96it/s, failures=0, objective=-9.03]
    Parallel BO:: : 449it [00:10, 34.96it/s, failures=0, objective=-9.03]
    Parallel BO:: : 450it [00:10, 34.96it/s, failures=0, objective=-9.03]
    Parallel BO:: : 451it [00:10, 34.96it/s, failures=0, objective=-9.03]
    Parallel BO:: : 452it [00:10, 34.96it/s, failures=0, objective=-9.03]
    Parallel BO:: : 453it [00:10, 34.96it/s, failures=0, objective=-9.03]
    Parallel BO:: : 454it [00:10, 34.96it/s, failures=0, objective=-9.03]
    Parallel BO:: : 455it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 455it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 456it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 457it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 458it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 459it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 460it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 461it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 462it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 463it [00:10, 38.25it/s, failures=0, objective=-9.03]
    Parallel BO:: : 464it [00:10, 43.39it/s, failures=0, objective=-9.03]
    Parallel BO:: : 464it [00:10, 43.39it/s, failures=0, objective=-9.03]
    Parallel BO:: : 465it [00:10, 43.39it/s, failures=0, objective=-9.03]
    Parallel BO:: : 466it [00:10, 43.39it/s, failures=0, objective=-9.03]
    Parallel BO:: : 467it [00:10, 43.39it/s, failures=0, objective=-9.03]
    Parallel BO:: : 468it [00:10, 43.39it/s, failures=0, objective=-9.03]
    Parallel BO:: : 469it [00:10, 43.39it/s, failures=0, objective=-9.03]
    Parallel BO:: : 470it [00:10, 43.39it/s, failures=0, objective=-9.03]
    Parallel BO:: : 471it [00:11, 44.93it/s, failures=0, objective=-9.03]
    Parallel BO:: : 471it [00:11, 44.93it/s, failures=0, objective=-9.03]
    Parallel BO:: : 472it [00:11, 44.93it/s, failures=0, objective=-9.03]
    Parallel BO:: : 473it [00:11, 44.93it/s, failures=0, objective=-9.03]
    Parallel BO:: : 474it [00:11, 44.93it/s, failures=0, objective=-9.03]
    Parallel BO:: : 475it [00:11, 44.93it/s, failures=0, objective=-9.03]
    Parallel BO:: : 476it [00:11, 44.93it/s, failures=0, objective=-9.03]
    Parallel BO:: : 477it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 477it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 478it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 479it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 480it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 481it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 482it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 483it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 484it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 485it [00:11, 41.01it/s, failures=0, objective=-9.03]
    Parallel BO:: : 486it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 486it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 487it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 488it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 489it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 490it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 491it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 492it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 493it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 494it [00:11, 46.95it/s, failures=0, objective=-9.03]
    Parallel BO:: : 495it [00:11, 46.59it/s, failures=0, objective=-9.03]
    Parallel BO:: : 495it [00:11, 46.59it/s, failures=0, objective=-9.03]
    Parallel BO:: : 496it [00:11, 46.59it/s, failures=0, objective=-9.03]
    Parallel BO:: : 497it [00:11, 46.59it/s, failures=0, objective=-9.03]
    Parallel BO:: : 498it [00:11, 46.59it/s, failures=0, objective=-9.03]
    Parallel BO:: : 499it [00:11, 46.59it/s, failures=0, objective=-9.03]
    Parallel BO:: : 500it [00:11, 46.59it/s, failures=0, objective=-9.03]
    Parallel BO:: : 501it [00:11, 46.59it/s, failures=0, objective=-9.03]
    Parallel BO:: : 502it [00:11, 46.59it/s, failures=0, objective=-9.03]
    Parallel BO:: : 503it [00:11, 48.79it/s, failures=0, objective=-9.03]
    Parallel BO:: : 503it [00:11, 48.79it/s, failures=0, objective=-9.03]
    Parallel BO:: : 504it [00:11, 48.79it/s, failures=0, objective=-9.03]
    Parallel BO:: : 505it [00:11, 48.79it/s, failures=0, objective=-9.03]
    Parallel BO:: : 506it [00:11, 48.79it/s, failures=0, objective=-9.03]
    Parallel BO:: : 507it [00:11, 48.79it/s, failures=0, objective=-9.03]
    Parallel BO:: : 508it [00:11, 43.55it/s, failures=0, objective=-9.03]
    Parallel BO:: : 508it [00:11, 43.55it/s, failures=0, objective=-9.03]
    Parallel BO:: : 509it [00:11, 43.55it/s, failures=0, objective=-9.03]
    Parallel BO:: : 510it [00:11, 43.55it/s, failures=0, objective=-9.03]
    Parallel BO:: : 511it [00:11, 43.55it/s, failures=0, objective=-9.03]
    Parallel BO:: : 512it [00:11, 43.55it/s, failures=0, objective=-8.82]
    Parallel BO:: : 513it [00:11, 43.55it/s, failures=0, objective=-8.82]
    Parallel BO:: : 514it [00:11, 43.55it/s, failures=0, objective=-8.82]
    Parallel BO:: : 515it [00:11, 43.55it/s, failures=0, objective=-8.82]
    Parallel BO:: : 516it [00:11, 43.55it/s, failures=0, objective=-8.82]
    Parallel BO:: : 517it [00:11, 47.33it/s, failures=0, objective=-8.82]
    Parallel BO:: : 517it [00:11, 47.33it/s, failures=0, objective=-8.82]
    Parallel BO:: : 518it [00:11, 47.33it/s, failures=0, objective=-8.82]
    Parallel BO:: : 519it [00:11, 47.33it/s, failures=0, objective=-8.82]
    Parallel BO:: : 520it [00:11, 47.33it/s, failures=0, objective=-8.82]
    Parallel BO:: : 521it [00:11, 47.33it/s, failures=0, objective=-8.82]
    Parallel BO:: : 522it [00:11, 47.33it/s, failures=0, objective=-8.82]
    Parallel BO:: : 523it [00:11, 47.33it/s, failures=0, objective=-8.82]
    Parallel BO:: : 524it [00:12, 47.19it/s, failures=0, objective=-8.82]
    Parallel BO:: : 524it [00:12, 47.19it/s, failures=0, objective=-8.82]
    Parallel BO:: : 525it [00:12, 47.19it/s, failures=0, objective=-8.82]
    Parallel BO:: : 526it [00:12, 47.19it/s, failures=0, objective=-8.82]
    Parallel BO:: : 527it [00:12, 47.19it/s, failures=0, objective=-8.82]
    Parallel BO:: : 528it [00:12, 47.19it/s, failures=0, objective=-8.82]
    Parallel BO:: : 529it [00:12, 47.19it/s, failures=0, objective=-8.82]
    Parallel BO:: : 530it [00:12, 45.35it/s, failures=0, objective=-8.82]
    Parallel BO:: : 530it [00:12, 45.35it/s, failures=0, objective=-8.82]
    Parallel BO:: : 531it [00:12, 45.35it/s, failures=0, objective=-8.67]
    Parallel BO:: : 532it [00:12, 45.35it/s, failures=0, objective=-8.67]
    Parallel BO:: : 533it [00:12, 45.35it/s, failures=0, objective=-8.67]
    Parallel BO:: : 534it [00:12, 45.35it/s, failures=0, objective=-8.67]
    Parallel BO:: : 535it [00:12, 45.35it/s, failures=0, objective=-7.72]
    Parallel BO:: : 536it [00:12, 45.35it/s, failures=0, objective=-7.72]
    Parallel BO:: : 537it [00:12, 40.96it/s, failures=0, objective=-7.72]
    Parallel BO:: : 537it [00:12, 40.96it/s, failures=0, objective=-7.72]
    Parallel BO:: : 538it [00:12, 40.96it/s, failures=0, objective=-7.18]
    Parallel BO:: : 539it [00:12, 40.96it/s, failures=0, objective=-7.18]
    Parallel BO:: : 540it [00:12, 40.96it/s, failures=0, objective=-7.18]
    Parallel BO:: : 541it [00:12, 40.96it/s, failures=0, objective=-7.18]
    Parallel BO:: : 542it [00:12, 40.96it/s, failures=0, objective=-7.18]
    Parallel BO:: : 543it [00:12, 40.96it/s, failures=0, objective=-7.18]
    Parallel BO:: : 544it [00:12, 40.96it/s, failures=0, objective=-7.18]
    Parallel BO:: : 545it [00:12, 40.96it/s, failures=0, objective=-7.18]
    Parallel BO:: : 546it [00:12, 40.96it/s, failures=0, objective=-7.18]
    Parallel BO:: : 547it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 547it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 548it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 549it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 550it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 551it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 552it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 553it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 554it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 555it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 556it [00:12, 46.60it/s, failures=0, objective=-7.18]
    Parallel BO:: : 557it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 557it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 558it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 559it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 560it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 561it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 562it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 563it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 564it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 565it [00:12, 47.58it/s, failures=0, objective=-7.18]
    Parallel BO:: : 566it [00:13, 47.13it/s, failures=0, objective=-7.18]
    Parallel BO:: : 566it [00:13, 47.13it/s, failures=0, objective=-7.18]
    Parallel BO:: : 567it [00:13, 47.13it/s, failures=0, objective=-7.18]
    Parallel BO:: : 568it [00:13, 47.13it/s, failures=0, objective=-7.18]
    Parallel BO:: : 569it [00:13, 47.13it/s, failures=0, objective=-7.18]
    Parallel BO:: : 570it [00:13, 47.13it/s, failures=0, objective=-7.18]
    Parallel BO:: : 571it [00:13, 47.13it/s, failures=0, objective=-7.18]
    Parallel BO:: : 572it [00:13, 43.86it/s, failures=0, objective=-7.18]
    Parallel BO:: : 572it [00:13, 43.86it/s, failures=0, objective=-7.18]
    Parallel BO:: : 573it [00:13, 43.86it/s, failures=0, objective=-7.18]
    Parallel BO:: : 574it [00:13, 43.86it/s, failures=0, objective=-7.18]
    Parallel BO:: : 575it [00:13, 43.86it/s, failures=0, objective=-7.18]
    Parallel BO:: : 576it [00:13, 43.86it/s, failures=0, objective=-7.18]
    Parallel BO:: : 577it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 577it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 578it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 579it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 580it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 581it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 582it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 583it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 584it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 585it [00:13, 44.33it/s, failures=0, objective=-7.18]
    Parallel BO:: : 585it [00:13, 44.33it/s, failures=0, objective=-7.18]
    Parallel BO:: : 586it [00:13, 44.33it/s, failures=0, objective=-7.18]
    Parallel BO:: : 587it [00:13, 44.33it/s, failures=0, objective=-7.18]
    Parallel BO:: : 588it [00:13, 44.33it/s, failures=0, objective=-7.18]
    Parallel BO:: : 589it [00:13, 44.33it/s, failures=0, objective=-7.18]
    Parallel BO:: : 590it [00:13, 44.33it/s, failures=0, objective=-7.18]
    Parallel BO:: : 591it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 591it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 592it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 593it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 594it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 595it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 596it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 597it [00:13, 40.68it/s, failures=0, objective=-7.18]
    Parallel BO:: : 598it [00:13, 39.53it/s, failures=0, objective=-7.18]
    Parallel BO:: : 598it [00:13, 39.53it/s, failures=0, objective=-7.18]
    Parallel BO:: : 599it [00:13, 39.53it/s, failures=0, objective=-7.18]
    Parallel BO:: : 600it [00:13, 39.53it/s, failures=0, objective=-7.18]
    Parallel BO:: : 601it [00:13, 39.53it/s, failures=0, objective=-7.18]
    Parallel BO:: : 602it [00:13, 39.53it/s, failures=0, objective=-7.18]
    Parallel BO:: : 603it [00:13, 39.53it/s, failures=0, objective=-7.18]
    Parallel BO:: : 604it [00:13, 39.53it/s, failures=0, objective=-7.18]
    Parallel BO:: : 605it [00:14, 37.71it/s, failures=0, objective=-7.18]
    Parallel BO:: : 605it [00:14, 37.71it/s, failures=0, objective=-7.18]
    Parallel BO:: : 606it [00:14, 37.71it/s, failures=0, objective=-7.18]
    Parallel BO:: : 607it [00:14, 37.71it/s, failures=0, objective=-7.18]
    Parallel BO:: : 608it [00:14, 37.71it/s, failures=0, objective=-7.18]
    Parallel BO:: : 609it [00:14, 37.71it/s, failures=0, objective=-7.18]
    Parallel BO:: : 610it [00:14, 37.71it/s, failures=0, objective=-7.18]
    Parallel BO:: : 611it [00:14, 37.71it/s, failures=0, objective=-7.18]
    Parallel BO:: : 612it [00:14, 37.71it/s, failures=0, objective=-7.18]
    Parallel BO:: : 613it [00:14, 37.71it/s, failures=0, objective=-6.85]
    Parallel BO:: : 614it [00:14, 37.71it/s, failures=0, objective=-6.85]
    Parallel BO:: : 615it [00:14, 37.71it/s, failures=0, objective=-6.85]
    Parallel BO:: : 616it [00:14, 37.71it/s, failures=0, objective=-6.85]
    Parallel BO:: : 617it [00:14, 37.71it/s, failures=0, objective=-6.85]
    Parallel BO:: : 618it [00:14, 37.71it/s, failures=0, objective=-6.85]
    Parallel BO:: : 619it [00:14, 37.71it/s, failures=0, objective=-6.85]
    Parallel BO:: : 620it [00:14, 53.51it/s, failures=0, objective=-6.85]
    Parallel BO:: : 620it [00:14, 53.51it/s, failures=0, objective=-6.85]
    Parallel BO:: : 621it [00:14, 53.51it/s, failures=0, objective=-6.85]
    Parallel BO:: : 622it [00:14, 53.51it/s, failures=0, objective=-6.85]
    Parallel BO:: : 623it [00:14, 53.51it/s, failures=0, objective=-6.85]
    Parallel BO:: : 624it [00:14, 53.51it/s, failures=0, objective=-6.85]
    Parallel BO:: : 625it [00:14, 53.51it/s, failures=0, objective=-6.85]
    Parallel BO:: : 626it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 626it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 627it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 628it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 629it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 630it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 631it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 632it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 633it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 634it [00:14, 47.18it/s, failures=0, objective=-6.85]
    Parallel BO:: : 635it [00:14, 47.18it/s, failures=0, objective=-5.76]
    Parallel BO:: : 636it [00:14, 47.18it/s, failures=0, objective=-5.76]
    Parallel BO:: : 637it [00:14, 52.03it/s, failures=0, objective=-5.76]
    Parallel BO:: : 637it [00:14, 52.03it/s, failures=0, objective=-5.76]
    Parallel BO:: : 638it [00:14, 52.03it/s, failures=0, objective=-5.76]
    Parallel BO:: : 639it [00:14, 52.03it/s, failures=0, objective=-5.76]
    Parallel BO:: : 640it [00:14, 52.03it/s, failures=0, objective=-5.76]
    Parallel BO:: : 641it [00:14, 52.03it/s, failures=0, objective=-5.76]
    Parallel BO:: : 642it [00:14, 52.03it/s, failures=0, objective=-5.76]
    Parallel BO:: : 643it [00:14, 45.39it/s, failures=0, objective=-5.76]
    Parallel BO:: : 643it [00:14, 45.39it/s, failures=0, objective=-5.76]
    Parallel BO:: : 644it [00:14, 45.39it/s, failures=0, objective=-5.76]
    Parallel BO:: : 645it [00:14, 45.39it/s, failures=0, objective=-5.76]
    Parallel BO:: : 646it [00:14, 45.39it/s, failures=0, objective=-5.76]
    Parallel BO:: : 647it [00:14, 45.39it/s, failures=0, objective=-5.76]
    Parallel BO:: : 648it [00:14, 45.39it/s, failures=0, objective=-5.76]
    Parallel BO:: : 649it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 649it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 650it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 651it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 652it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 653it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 654it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 655it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 656it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 657it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 658it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 659it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 660it [00:14, 42.02it/s, failures=0, objective=-5.76]
    Parallel BO:: : 661it [00:15, 46.74it/s, failures=0, objective=-5.76]
    Parallel BO:: : 661it [00:15, 46.74it/s, failures=0, objective=-5.76]
    Parallel BO:: : 662it [00:15, 46.74it/s, failures=0, objective=-5.76]
    Parallel BO:: : 663it [00:15, 46.74it/s, failures=0, objective=-5.76]
    Parallel BO:: : 664it [00:15, 46.74it/s, failures=0, objective=-5.76]
    Parallel BO:: : 665it [00:15, 46.74it/s, failures=0, objective=-5.76]
    Parallel BO:: : 666it [00:15, 46.74it/s, failures=0, objective=-5.76]
    Parallel BO:: : 667it [00:15, 46.74it/s, failures=0, objective=-5.76]
    Parallel BO:: : 668it [00:15, 46.74it/s, failures=0, objective=-5.76]
    Parallel BO:: : 669it [00:15, 42.56it/s, failures=0, objective=-5.76]
    Parallel BO:: : 669it [00:15, 42.56it/s, failures=0, objective=-5.76]
    Parallel BO:: : 670it [00:15, 42.56it/s, failures=0, objective=-5.76]
    Parallel BO:: : 671it [00:15, 42.56it/s, failures=0, objective=-5.76]
    Parallel BO:: : 672it [00:15, 42.56it/s, failures=0, objective=-5.76]
    Parallel BO:: : 673it [00:15, 42.56it/s, failures=0, objective=-5.76]
    Parallel BO:: : 674it [00:15, 42.56it/s, failures=0, objective=-5.76]
    Parallel BO:: : 675it [00:15, 42.56it/s, failures=0, objective=-5.76]
    Parallel BO:: : 676it [00:15, 41.41it/s, failures=0, objective=-5.76]
    Parallel BO:: : 676it [00:15, 41.41it/s, failures=0, objective=-5.76]
    Parallel BO:: : 677it [00:15, 41.41it/s, failures=0, objective=-5.76]
    Parallel BO:: : 678it [00:15, 41.41it/s, failures=0, objective=-5.76]
    Parallel BO:: : 679it [00:15, 41.41it/s, failures=0, objective=-5.76]
    Parallel BO:: : 680it [00:15, 41.41it/s, failures=0, objective=-5.76]
    Parallel BO:: : 681it [00:15, 41.41it/s, failures=0, objective=-5.76]
    Parallel BO:: : 682it [00:15, 41.41it/s, failures=0, objective=-5.76]
    Parallel BO:: : 683it [00:15, 41.41it/s, failures=0, objective=-5.76]
    Parallel BO:: : 684it [00:15, 40.15it/s, failures=0, objective=-5.76]
    Parallel BO:: : 684it [00:15, 40.15it/s, failures=0, objective=-5.76]
    Parallel BO:: : 685it [00:15, 40.15it/s, failures=0, objective=-5.76]
    Parallel BO:: : 686it [00:15, 40.15it/s, failures=0, objective=-5.76]
    Parallel BO:: : 687it [00:15, 40.15it/s, failures=0, objective=-5.76]
    Parallel BO:: : 688it [00:15, 40.15it/s, failures=0, objective=-5.76]
    Parallel BO:: : 689it [00:15, 40.15it/s, failures=0, objective=-5.76]
    Parallel BO:: : 690it [00:15, 40.15it/s, failures=0, objective=-5.76]
    Parallel BO:: : 691it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 691it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 692it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 693it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 694it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 695it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 696it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 697it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 698it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 699it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 700it [00:16, 36.43it/s, failures=0, objective=-5.76]
    Parallel BO:: : 701it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 701it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 702it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 703it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 704it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 705it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 706it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 707it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 708it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 709it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 710it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 711it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 712it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 713it [00:16, 39.66it/s, failures=0, objective=-5.76]
    Parallel BO:: : 714it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 714it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 715it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 716it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 717it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 718it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 719it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 720it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 721it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 722it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 723it [00:16, 45.36it/s, failures=0, objective=-5.76]
    Parallel BO:: : 724it [00:16, 47.61it/s, failures=0, objective=-5.76]
    Parallel BO:: : 724it [00:16, 47.61it/s, failures=0, objective=-5.76]
    Parallel BO:: : 725it [00:16, 47.61it/s, failures=0, objective=-5.76]
    Parallel BO:: : 726it [00:16, 47.61it/s, failures=0, objective=-5.76]
    Parallel BO:: : 727it [00:16, 47.61it/s, failures=0, objective=-5.76]
    Parallel BO:: : 728it [00:16, 47.61it/s, failures=0, objective=-5.76]
    Parallel BO:: : 729it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 729it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 730it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 731it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 732it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 733it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 734it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 735it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 736it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 737it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 738it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 739it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 740it [00:16, 39.75it/s, failures=0, objective=-5.76]
    Parallel BO:: : 741it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 741it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 742it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 743it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 744it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 745it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 746it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 747it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 748it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 749it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 750it [00:17, 42.71it/s, failures=0, objective=-5.76]
    Parallel BO:: : 751it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 751it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 752it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 753it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 754it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 755it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 756it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 757it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 758it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 759it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 760it [00:17, 40.54it/s, failures=0, objective=-5.76]
    Parallel BO:: : 761it [00:17, 41.21it/s, failures=0, objective=-5.76]
    Parallel BO:: : 761it [00:17, 41.21it/s, failures=0, objective=-5.76]
    Parallel BO:: : 762it [00:17, 41.21it/s, failures=0, objective=-5.76]
    Parallel BO:: : 763it [00:17, 41.21it/s, failures=0, objective=-5.76]
    Parallel BO:: : 764it [00:17, 41.21it/s, failures=0, objective=-5.76]
    Parallel BO:: : 765it [00:17, 41.21it/s, failures=0, objective=-4.75]
    Parallel BO:: : 766it [00:17, 41.21it/s, failures=0, objective=-4.75]
    Parallel BO:: : 767it [00:17, 41.21it/s, failures=0, objective=-4.75]
    Parallel BO:: : 768it [00:17, 41.21it/s, failures=0, objective=-4.75]
    Parallel BO:: : 769it [00:17, 41.21it/s, failures=0, objective=-4.75]
    Parallel BO:: : 770it [00:17, 41.21it/s, failures=0, objective=-4.75]
    Parallel BO:: : 771it [00:17, 41.21it/s, failures=0, objective=-4.75]
    Parallel BO:: : 772it [00:17, 41.21it/s, failures=0, objective=-4.75]
    Parallel BO:: : 773it [00:17, 41.21it/s, failures=0, objective=-4.75]
    Parallel BO:: : 774it [00:17, 49.17it/s, failures=0, objective=-4.75]
    Parallel BO:: : 774it [00:17, 49.17it/s, failures=0, objective=-4.75]
    Parallel BO:: : 775it [00:17, 49.17it/s, failures=0, objective=-4.75]
    Parallel BO:: : 776it [00:17, 49.17it/s, failures=0, objective=-4.75]
    Parallel BO:: : 777it [00:17, 49.17it/s, failures=0, objective=-4.75]
    Parallel BO:: : 778it [00:17, 49.17it/s, failures=0, objective=-4.75]
    Parallel BO:: : 779it [00:17, 49.17it/s, failures=0, objective=-4.75]
    Parallel BO:: : 780it [00:17, 49.17it/s, failures=0, objective=-4.75]
    Parallel BO:: : 781it [00:17, 49.17it/s, failures=0, objective=-4.75]
    Parallel BO:: : 782it [00:18, 46.87it/s, failures=0, objective=-4.75]
    Parallel BO:: : 782it [00:18, 46.87it/s, failures=0, objective=-4.75]
    Parallel BO:: : 783it [00:18, 46.87it/s, failures=0, objective=-4.75]
    Parallel BO:: : 784it [00:18, 46.87it/s, failures=0, objective=-4.75]
    Parallel BO:: : 785it [00:18, 46.87it/s, failures=0, objective=-4.75]
    Parallel BO:: : 786it [00:18, 46.87it/s, failures=0, objective=-4.75]
    Parallel BO:: : 787it [00:18, 46.87it/s, failures=0, objective=-4.75]
    Parallel BO:: : 788it [00:18, 46.87it/s, failures=0, objective=-4.75]
    Parallel BO:: : 789it [00:18, 46.87it/s, failures=0, objective=-4.75]
    Parallel BO:: : 790it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 790it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 791it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 792it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 793it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 794it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 795it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 796it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 797it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 798it [00:18, 42.68it/s, failures=0, objective=-4.75]
    Parallel BO:: : 799it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 799it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 800it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 801it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 802it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 803it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 804it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 805it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 806it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 807it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 808it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 809it [00:18, 42.60it/s, failures=0, objective=-4.75]
    Parallel BO:: : 810it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 810it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 811it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 812it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 813it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 814it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 815it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 816it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 817it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 818it [00:18, 46.47it/s, failures=0, objective=-4.75]
    Parallel BO:: : 819it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 819it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 820it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 821it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 822it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 823it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 824it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 825it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 826it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 827it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 828it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 829it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 830it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 831it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 832it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 833it [00:18, 42.50it/s, failures=0, objective=-4.75]
    Parallel BO:: : 834it [00:19, 50.90it/s, failures=0, objective=-4.75]
    Parallel BO:: : 834it [00:19, 50.90it/s, failures=0, objective=-4.75]
    Parallel BO:: : 835it [00:19, 50.90it/s, failures=0, objective=-4.75]
    Parallel BO:: : 836it [00:19, 50.90it/s, failures=0, objective=-4.75]
    Parallel BO:: : 837it [00:19, 50.90it/s, failures=0, objective=-4.75]
    Parallel BO:: : 838it [00:19, 50.90it/s, failures=0, objective=-4.75]
    Parallel BO:: : 839it [00:19, 50.90it/s, failures=0, objective=-4.75]
    Parallel BO:: : 840it [00:19, 50.90it/s, failures=0, objective=-4.75]
    Parallel BO:: : 841it [00:19, 42.55it/s, failures=0, objective=-4.75]
    Parallel BO:: : 841it [00:19, 42.55it/s, failures=0, objective=-4.75]
    Parallel BO:: : 842it [00:19, 42.55it/s, failures=0, objective=-4.75]
    Parallel BO:: : 843it [00:19, 42.55it/s, failures=0, objective=-4.75]
    Parallel BO:: : 844it [00:19, 42.55it/s, failures=0, objective=-4.75]
    Parallel BO:: : 845it [00:19, 42.55it/s, failures=0, objective=-4.75]
    Parallel BO:: : 846it [00:19, 42.55it/s, failures=0, objective=-4.75]
    Parallel BO:: : 847it [00:19, 42.55it/s, failures=0, objective=-4.75]
    Parallel BO:: : 848it [00:19, 40.79it/s, failures=0, objective=-4.75]
    Parallel BO:: : 848it [00:19, 40.79it/s, failures=0, objective=-4.75]
    Parallel BO:: : 849it [00:19, 40.79it/s, failures=0, objective=-4.75]
    Parallel BO:: : 850it [00:19, 40.79it/s, failures=0, objective=-4.75]
    Parallel BO:: : 851it [00:19, 40.79it/s, failures=0, objective=-4.75]
    Parallel BO:: : 852it [00:19, 40.79it/s, failures=0, objective=-4.75]
    Parallel BO:: : 853it [00:19, 40.79it/s, failures=0, objective=-4.75]
    Parallel BO:: : 854it [00:19, 40.79it/s, failures=0, objective=-3.93]
    Parallel BO:: : 855it [00:19, 40.79it/s, failures=0, objective=-3.93]
    Parallel BO:: : 856it [00:19, 40.79it/s, failures=0, objective=-3.93]
    Parallel BO:: : 857it [00:19, 40.79it/s, failures=0, objective=-3.93]
    Parallel BO:: : 858it [00:19, 40.79it/s, failures=0, objective=-3.93]
    Parallel BO:: : 859it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 859it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 860it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 861it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 862it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 863it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 864it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 865it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 866it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 867it [00:19, 43.57it/s, failures=0, objective=-3.93]
    Parallel BO:: : 868it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 868it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 869it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 870it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 871it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 872it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 873it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 874it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 875it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 876it [00:20, 42.98it/s, failures=0, objective=-3.93]
    Parallel BO:: : 877it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 877it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 878it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 879it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 880it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 881it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 882it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 883it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 884it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 885it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 886it [00:20, 44.78it/s, failures=0, objective=-3.93]
    Parallel BO:: : 887it [00:20, 47.23it/s, failures=0, objective=-3.93]
    Parallel BO:: : 887it [00:20, 47.23it/s, failures=0, objective=-3.93]
    Parallel BO:: : 888it [00:20, 47.23it/s, failures=0, objective=-3.93]
    Parallel BO:: : 889it [00:20, 47.23it/s, failures=0, objective=-3.93]
    Parallel BO:: : 890it [00:20, 47.23it/s, failures=0, objective=-3.93]
    Parallel BO:: : 891it [00:20, 47.23it/s, failures=0, objective=-3.93]
    Parallel BO:: : 892it [00:20, 47.23it/s, failures=0, objective=-3.93]
    Parallel BO:: : 893it [00:20, 47.23it/s, failures=0, objective=-3.93]
    Parallel BO:: : 894it [00:20, 44.65it/s, failures=0, objective=-3.93]
    Parallel BO:: : 894it [00:20, 44.65it/s, failures=0, objective=-3.93]
    Parallel BO:: : 895it [00:20, 44.65it/s, failures=0, objective=-3.93]
    Parallel BO:: : 896it [00:20, 44.65it/s, failures=0, objective=-3.93]
    Parallel BO:: : 897it [00:20, 44.65it/s, failures=0, objective=-3.93]
    Parallel BO:: : 898it [00:20, 44.65it/s, failures=0, objective=-3.93]
    Parallel BO:: : 899it [00:20, 38.32it/s, failures=0, objective=-3.93]
    Parallel BO:: : 899it [00:20, 38.32it/s, failures=0, objective=-3.93]
    Parallel BO:: : 900it [00:20, 38.32it/s, failures=0, objective=-3.93]
    Parallel BO:: : 901it [00:20, 38.32it/s, failures=0, objective=-3.93]
    Parallel BO:: : 902it [00:20, 38.32it/s, failures=0, objective=-3.93]
    Parallel BO:: : 903it [00:20, 38.32it/s, failures=0, objective=-3.93]
    Parallel BO:: : 904it [00:20, 35.52it/s, failures=0, objective=-3.93]
    Parallel BO:: : 904it [00:20, 35.52it/s, failures=0, objective=-3.93]
    Parallel BO:: : 905it [00:20, 35.52it/s, failures=0, objective=-3.93]
    Parallel BO:: : 906it [00:20, 35.52it/s, failures=0, objective=-3.93]
    Parallel BO:: : 907it [00:20, 35.52it/s, failures=0, objective=-3.93]
    Parallel BO:: : 908it [00:20, 35.52it/s, failures=0, objective=-3.93]
    Parallel BO:: : 909it [00:20, 35.52it/s, failures=0, objective=-3.93]
    Parallel BO:: : 910it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 910it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 911it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 912it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 913it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 914it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 915it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 916it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 917it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 918it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 919it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 920it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 921it [00:21, 30.31it/s, failures=0, objective=-3.93]
    Parallel BO:: : 922it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 922it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 923it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 924it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 925it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 926it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 927it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 928it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 929it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 930it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 931it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 932it [00:21, 36.17it/s, failures=0, objective=-3.93]
    Parallel BO:: : 933it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 933it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 934it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 935it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 936it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 937it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 938it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 939it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 940it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 941it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 942it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 943it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 944it [00:21, 41.07it/s, failures=0, objective=-3.93]
    Parallel BO:: : 945it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 945it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 946it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 947it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 948it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 949it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 950it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 951it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 952it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 953it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 954it [00:21, 43.06it/s, failures=0, objective=-3.93]
    Parallel BO:: : 955it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 955it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 956it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 957it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 958it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 959it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 960it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 961it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 962it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 963it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 964it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 965it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 966it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 967it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 968it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 969it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 970it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 971it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 972it [00:22, 45.63it/s, failures=0, objective=-3.93]
    Parallel BO:: : 973it [00:22, 52.75it/s, failures=0, objective=-3.93]
    Parallel BO:: : 973it [00:22, 52.75it/s, failures=0, objective=-3.93]
    Parallel BO:: : 974it [00:22, 52.75it/s, failures=0, objective=-3.93]
    Parallel BO:: : 975it [00:22, 52.75it/s, failures=0, objective=-3.65]
    Parallel BO:: : 976it [00:22, 52.75it/s, failures=0, objective=-3.65]
    Parallel BO:: : 977it [00:22, 52.75it/s, failures=0, objective=-3.65]
    Parallel BO:: : 978it [00:22, 52.75it/s, failures=0, objective=-3.65]
    Parallel BO:: : 979it [00:22, 39.65it/s, failures=0, objective=-3.65]
    Parallel BO:: : 979it [00:22, 39.65it/s, failures=0, objective=-3.65]
    Parallel BO:: : 980it [00:22, 39.65it/s, failures=0, objective=-3.65]
    Parallel BO:: : 981it [00:22, 39.65it/s, failures=0, objective=-3.65]
    Parallel BO:: : 982it [00:22, 39.65it/s, failures=0, objective=-3.65]
    Parallel BO:: : 983it [00:22, 39.65it/s, failures=0, objective=-3.65]
    Parallel BO:: : 984it [00:22, 39.65it/s, failures=0, objective=-3.05]
    Parallel BO:: : 985it [00:22, 39.65it/s, failures=0, objective=-3.05]
    Parallel BO:: : 986it [00:22, 39.65it/s, failures=0, objective=-3.05]
    Parallel BO:: : 987it [00:22, 39.65it/s, failures=0, objective=-3.05]
    Parallel BO:: : 988it [00:22, 39.65it/s, failures=0, objective=-3.05]
    Parallel BO:: : 989it [00:22, 39.65it/s, failures=0, objective=-3.05]
    Parallel BO:: : 990it [00:22, 39.65it/s, failures=0, objective=-3.05]
    Parallel BO:: : 991it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 991it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 992it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 993it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 994it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 995it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 996it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 997it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 998it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 999it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1000it [00:22, 44.36it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1001it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1001it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1002it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1003it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1004it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1005it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1006it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1007it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1008it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1009it [00:23, 44.04it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1010it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1010it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1011it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1012it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1013it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1014it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1015it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1016it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1017it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1018it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1019it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1020it [00:23, 43.24it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1021it [00:23, 46.79it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1021it [00:23, 46.79it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1022it [00:23, 46.79it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1023it [00:23, 46.79it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1024it [00:23, 46.79it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1025it [00:23, 46.79it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1026it [00:23, 41.97it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1026it [00:23, 41.97it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1027it [00:23, 41.97it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1028it [00:23, 41.97it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1029it [00:23, 41.97it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1030it [00:23, 41.97it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1031it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1031it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1032it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1033it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1034it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1035it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1036it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1037it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1038it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1039it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1040it [00:23, 37.28it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1041it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1041it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1042it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1043it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1044it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1045it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1046it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1047it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1048it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1049it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1050it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1051it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1052it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1053it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1054it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1055it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1056it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1057it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1058it [00:24, 33.80it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1059it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1059it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1060it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1061it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1062it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1063it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1064it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1065it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1066it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1067it [00:24, 48.02it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1068it [00:24, 47.68it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1068it [00:24, 47.68it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1069it [00:24, 47.68it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1070it [00:24, 47.68it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1071it [00:24, 47.68it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1072it [00:24, 47.68it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1073it [00:24, 47.68it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1074it [00:24, 47.68it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1075it [00:24, 43.45it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1075it [00:24, 43.45it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1076it [00:24, 43.45it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1077it [00:24, 43.45it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1078it [00:24, 43.45it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1079it [00:24, 43.45it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1080it [00:24, 43.45it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1081it [00:24, 43.45it/s, failures=0, objective=-3.05]
    Parallel BO:: : 1082it [00:24, 43.45it/s, failures=0, objective=-3]   
    Parallel BO:: : 1083it [00:25, 43.34it/s, failures=0, objective=-3]
    Parallel BO:: : 1083it [00:25, 43.34it/s, failures=0, objective=-3]
    Parallel BO:: : 1084it [00:25, 43.34it/s, failures=0, objective=-3]
    Parallel BO:: : 1085it [00:25, 43.34it/s, failures=0, objective=-3]
    Parallel BO:: : 1086it [00:25, 43.34it/s, failures=0, objective=-3]
    Parallel BO:: : 1087it [00:25, 43.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1088it [00:25, 43.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1089it [00:25, 43.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1090it [00:25, 40.91it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1090it [00:25, 40.91it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1091it [00:25, 40.91it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1092it [00:25, 40.91it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1093it [00:25, 40.91it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1094it [00:25, 40.91it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1095it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1095it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1096it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1097it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1098it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1099it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1100it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1101it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1102it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1103it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1104it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1105it [00:25, 33.44it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1106it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1106it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1107it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1108it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1109it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1110it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1111it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1112it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1113it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1114it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1115it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1116it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1117it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1118it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1119it [00:25, 34.87it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1120it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1120it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1121it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1122it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1123it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1124it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1125it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1126it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1127it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1128it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1129it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1130it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1131it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1132it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1133it [00:26, 40.89it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1134it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1134it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1135it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1136it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1137it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1138it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1139it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1140it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1141it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1142it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1143it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1144it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1145it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1146it [00:26, 41.85it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1147it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1147it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1148it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1149it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1150it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1151it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1152it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1153it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1154it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1155it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1156it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1157it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1158it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1159it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1160it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1161it [00:26, 42.34it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1162it [00:27, 45.25it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1162it [00:27, 45.25it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1163it [00:27, 45.25it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1164it [00:27, 45.25it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1165it [00:27, 45.25it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1166it [00:27, 45.25it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1167it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1167it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1168it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1169it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1170it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1171it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1172it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1173it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1174it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1175it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1176it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1177it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1178it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1179it [00:27, 35.81it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1180it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1180it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1181it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1182it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1183it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1184it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1185it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1186it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1187it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1188it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1189it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1190it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1191it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1192it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1193it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1194it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1195it [00:27, 35.67it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1196it [00:27, 44.45it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1196it [00:27, 44.45it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1197it [00:27, 44.45it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1198it [00:27, 44.45it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1199it [00:27, 44.45it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1200it [00:27, 44.45it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1201it [00:27, 44.45it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1202it [00:27, 44.45it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1203it [00:27, 44.45it/s, failures=0, objective=-2.8]
    Parallel BO:: : 1204it [00:27, 44.45it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1205it [00:27, 44.45it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1206it [00:27, 44.45it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1207it [00:27, 44.45it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1208it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1208it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1209it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1210it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1211it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1212it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1213it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1214it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1215it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1216it [00:28, 44.24it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1217it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1217it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1218it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1219it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1220it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1221it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1222it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1223it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1224it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1225it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1226it [00:28, 38.39it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1227it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1227it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1228it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1229it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1230it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1231it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1232it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1233it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1234it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1235it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1236it [00:28, 37.76it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1237it [00:29, 34.03it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1237it [00:29, 34.03it/s, failures=0, objective=-2.75]
    Parallel BO:: : 1238it [00:29, 34.03it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1239it [00:29, 34.03it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1240it [00:29, 34.03it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1241it [00:29, 34.03it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1242it [00:29, 34.03it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1243it [00:29, 34.03it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1244it [00:29, 34.03it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1245it [00:29, 34.03it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1246it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1246it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1247it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1248it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1249it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1250it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1251it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1252it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1253it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1254it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1255it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1256it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1257it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1258it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1259it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1260it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1261it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1262it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1263it [00:29, 33.15it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1264it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1264it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1265it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1266it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1267it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1268it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1269it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1270it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1271it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1272it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1273it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1274it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1275it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1276it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1277it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1278it [00:29, 43.41it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1279it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1279it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1280it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1281it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1282it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1283it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1284it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1285it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1286it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1287it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1288it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1289it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1290it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1291it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1292it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1293it [00:30, 44.97it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1294it [00:30, 46.78it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1294it [00:30, 46.78it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1295it [00:30, 46.78it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1296it [00:30, 46.78it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1297it [00:30, 46.78it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1298it [00:30, 46.78it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1299it [00:30, 46.78it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1300it [00:30, 46.78it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1301it [00:30, 44.66it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1301it [00:30, 44.66it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1302it [00:30, 44.66it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1303it [00:30, 44.66it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1304it [00:30, 44.66it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1305it [00:30, 44.66it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1306it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1306it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1307it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1308it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1309it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1310it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1311it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1312it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1313it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1314it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1315it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1316it [00:30, 37.30it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1317it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1317it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1318it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1319it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1320it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1321it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1322it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1323it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1324it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1325it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1326it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1327it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1328it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1329it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1330it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1331it [00:31, 37.69it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1332it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1332it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1333it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1334it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1335it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1336it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1337it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1338it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1339it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1340it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1341it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1342it [00:31, 38.12it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1343it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1343it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1344it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1345it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1346it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1347it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1348it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1349it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1350it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1351it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1352it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1353it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1354it [00:31, 39.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1355it [00:31, 44.16it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1355it [00:31, 44.16it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1356it [00:31, 44.16it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1357it [00:31, 44.16it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1358it [00:31, 44.16it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1359it [00:32, 44.16it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1360it [00:32, 39.11it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1360it [00:32, 39.11it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1361it [00:32, 39.11it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1362it [00:32, 39.11it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1363it [00:32, 39.11it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1364it [00:32, 39.11it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1365it [00:32, 39.11it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1366it [00:32, 39.11it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1367it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1367it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1368it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1369it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1370it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1371it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1372it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1373it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1374it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1375it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1376it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1377it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1378it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1379it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1380it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1381it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1382it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1383it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1384it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1385it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1386it [00:32, 33.94it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1387it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1387it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1388it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1389it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1390it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1391it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1392it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1393it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1394it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1395it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1396it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1397it [00:32, 45.18it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1398it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1398it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1399it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1400it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1401it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1402it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1403it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1404it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1405it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1406it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1407it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1408it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1409it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1410it [00:32, 43.31it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1411it [00:33, 47.48it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1411it [00:33, 47.48it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1412it [00:33, 47.48it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1413it [00:33, 47.48it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1414it [00:33, 47.48it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1415it [00:33, 47.48it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1416it [00:33, 47.48it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1417it [00:33, 47.48it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1418it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1418it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1419it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1420it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1421it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1422it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1423it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1424it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1425it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1426it [00:33, 41.88it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1427it [00:33, 34.29it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1427it [00:33, 34.29it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1428it [00:33, 34.29it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1429it [00:33, 34.29it/s, failures=0, objective=-2.29]
    Parallel BO:: : 1430it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1431it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1432it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1433it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1434it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1435it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1436it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1437it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1438it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1439it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1440it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1441it [00:33, 34.29it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1442it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1442it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1443it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1444it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1445it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1446it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1447it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1448it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1449it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1450it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1451it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1452it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1453it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1454it [00:34, 39.21it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1455it [00:34, 34.90it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1455it [00:34, 34.90it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1456it [00:34, 34.90it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1457it [00:34, 34.90it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1458it [00:34, 34.90it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1459it [00:34, 34.90it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1460it [00:34, 34.90it/s, failures=0, objective=-2.19]
    Parallel BO:: : 1461it [00:34, 34.90it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1462it [00:34, 34.90it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1463it [00:34, 34.90it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1464it [00:34, 34.90it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1465it [00:34, 34.90it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1466it [00:34, 34.90it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1467it [00:34, 34.90it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1468it [00:34, 34.90it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1469it [00:34, 34.90it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1470it [00:34, 43.48it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1470it [00:34, 43.48it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1471it [00:34, 43.48it/s, failures=0, objective=-2.12]
    Parallel BO:: : 1472it [00:34, 43.48it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1473it [00:34, 43.48it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1474it [00:34, 43.48it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1475it [00:34, 43.48it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1476it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1476it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1477it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1478it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1479it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1480it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1481it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1482it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1483it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1484it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1485it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1486it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1487it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1488it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1489it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1490it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1491it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1492it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1493it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1494it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1495it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1496it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1497it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1498it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1499it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1500it [00:35, 35.15it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1501it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1501it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1502it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1503it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1504it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1505it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1506it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1507it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1508it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1509it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1510it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1511it [00:35, 50.07it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1512it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1512it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1513it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1514it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1515it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1516it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1517it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1518it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1519it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1520it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1521it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1522it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1523it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1524it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1525it [00:35, 43.09it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1526it [00:36, 43.03it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1526it [00:36, 43.03it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1527it [00:36, 43.03it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1528it [00:36, 43.03it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1529it [00:36, 43.03it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1530it [00:36, 43.03it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1531it [00:36, 43.03it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1532it [00:36, 43.03it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1533it [00:36, 43.03it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1534it [00:36, 37.91it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1534it [00:36, 37.91it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1535it [00:36, 37.91it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1536it [00:36, 37.91it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1537it [00:36, 37.91it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1538it [00:36, 37.91it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1539it [00:36, 37.91it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1540it [00:36, 37.91it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1541it [00:36, 37.91it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1542it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1542it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1543it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1544it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1545it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1546it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1547it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1548it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1549it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1550it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1551it [00:36, 36.22it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1552it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1552it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1553it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1554it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1555it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1556it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1557it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1558it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1559it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1560it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1561it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1562it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1563it [00:36, 33.74it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1564it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1564it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1565it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1566it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1567it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1568it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1569it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1570it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1571it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1572it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1573it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1574it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1575it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1576it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1577it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1578it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1579it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1580it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1581it [00:37, 34.89it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1582it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1582it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1583it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1584it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1585it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1586it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1587it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1588it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1589it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1590it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1591it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1592it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1593it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1594it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1595it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1596it [00:37, 42.49it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1597it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1597it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1598it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1599it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1600it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1601it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1602it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1603it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1604it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1605it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1606it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1607it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1608it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1609it [00:37, 43.44it/s, failures=0, objective=-1.85]
    Parallel BO:: : 1610it [00:37, 43.44it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1611it [00:37, 43.44it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1612it [00:37, 43.44it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1613it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1613it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1614it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1615it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1616it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1617it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1618it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1619it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1620it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1621it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1622it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1623it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1624it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1625it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1626it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1627it [00:38, 45.04it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1628it [00:38, 51.27it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1628it [00:38, 51.27it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1629it [00:38, 51.27it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1630it [00:38, 51.27it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1631it [00:38, 51.27it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1632it [00:38, 51.27it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1633it [00:38, 51.27it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1634it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1634it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1635it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1636it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1637it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1638it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1639it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1640it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1641it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1642it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1643it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1644it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1645it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1646it [00:38, 38.24it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1647it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1647it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1648it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1649it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1650it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1651it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1652it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1653it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1654it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1655it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1656it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1657it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1658it [00:39, 39.58it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1659it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1659it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1660it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1661it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1662it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1663it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1664it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1665it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1666it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1667it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1668it [00:39, 40.75it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1669it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1669it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1670it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1671it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1672it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1673it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1674it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1675it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1676it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1677it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1678it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1679it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1680it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1681it [00:39, 33.93it/s, failures=0, objective=-1.75]
    Parallel BO:: : 1682it [00:39, 33.93it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1683it [00:39, 33.93it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1684it [00:39, 33.93it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1685it [00:39, 33.93it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1686it [00:39, 33.93it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1687it [00:39, 33.93it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1688it [00:39, 33.93it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1689it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1689it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1690it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1691it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1692it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1693it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1694it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1695it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1696it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1697it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1698it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1699it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1700it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1701it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1702it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1703it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1704it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1705it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1706it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1707it [00:40, 40.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1708it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1708it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1709it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1710it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1711it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1712it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1713it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1714it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1715it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1716it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1717it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1718it [00:40, 43.12it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1719it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1719it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1720it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1721it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1722it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1723it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1724it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1725it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1726it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1727it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1728it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1729it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1730it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1731it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1732it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1733it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1734it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1735it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1736it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1737it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1738it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1739it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1740it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1741it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1742it [00:41, 34.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1743it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1743it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1744it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1745it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1746it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1747it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1748it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1749it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1750it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1751it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1752it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1753it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1754it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1755it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1756it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1757it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1758it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1759it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1760it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1761it [00:41, 40.37it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1762it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1762it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1763it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1764it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1765it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1766it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1767it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1768it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1769it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1770it [00:41, 45.27it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1771it [00:42, 41.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1771it [00:42, 41.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1772it [00:42, 41.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1773it [00:42, 41.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1774it [00:42, 41.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1775it [00:42, 41.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1776it [00:42, 41.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1777it [00:42, 41.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1778it [00:42, 41.41it/s, failures=0, objective=-1.71]
    Parallel BO:: : 1779it [00:42, 41.41it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1780it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1780it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1781it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1782it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1783it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1784it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1785it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1786it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1787it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1788it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1789it [00:42, 39.22it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1790it [00:42, 37.51it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1790it [00:42, 37.51it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1791it [00:42, 37.51it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1792it [00:42, 37.51it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1793it [00:42, 37.51it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1794it [00:42, 37.51it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1795it [00:42, 37.51it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1796it [00:42, 37.51it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1797it [00:42, 37.51it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1798it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1798it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1799it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1800it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1801it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1802it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1803it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1804it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1805it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1806it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1807it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1808it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1809it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1810it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1811it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1812it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1813it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1814it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1815it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1816it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1817it [00:43, 31.04it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1818it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1818it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1819it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1820it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1821it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1822it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1823it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1824it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1825it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1826it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1827it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1828it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1829it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1830it [00:43, 42.20it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1831it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1831it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1832it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1833it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1834it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1835it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1836it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1837it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1838it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1839it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1840it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1841it [00:43, 42.35it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1842it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1842it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1843it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1844it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1845it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1846it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1847it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1848it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1849it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1850it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1851it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1852it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1853it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1854it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1855it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1856it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1857it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1858it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1859it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1860it [00:44, 36.81it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1861it [00:44, 40.43it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1861it [00:44, 40.43it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1862it [00:44, 40.43it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1863it [00:44, 40.43it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1864it [00:44, 40.43it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1865it [00:44, 40.43it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1866it [00:44, 40.43it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1867it [00:44, 40.43it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1868it [00:44, 40.43it/s, failures=0, objective=-1.57]
    Parallel BO:: : 1869it [00:44, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1870it [00:44, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1871it [00:44, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1872it [00:44, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1873it [00:44, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1874it [00:44, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1875it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1875it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1876it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1877it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1878it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1879it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1880it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1881it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1882it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1883it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1884it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1885it [00:44, 43.79it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1886it [00:45, 44.13it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1886it [00:45, 44.13it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1887it [00:45, 44.13it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1888it [00:45, 44.13it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1889it [00:45, 44.13it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1890it [00:45, 44.13it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1891it [00:45, 38.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1891it [00:45, 38.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1892it [00:45, 38.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1893it [00:45, 38.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1894it [00:45, 38.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1895it [00:45, 38.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1896it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1896it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1897it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1898it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1899it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1900it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1901it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1902it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1903it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1904it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1905it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1906it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1907it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1908it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1909it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1910it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1911it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1912it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1913it [00:45, 33.02it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1914it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1914it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1915it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1916it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1917it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1918it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1919it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1920it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1921it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1922it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1923it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1924it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1925it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1926it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1927it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1928it [00:45, 40.91it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1929it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1929it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1930it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1931it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1932it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1933it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1934it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1935it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1936it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1937it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1938it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1939it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1940it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1941it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1942it [00:46, 40.76it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1943it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1943it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1944it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1945it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1946it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1947it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1948it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1949it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1950it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1951it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1952it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1953it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1954it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1955it [00:46, 40.43it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1956it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1956it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1957it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1958it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1959it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1960it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1961it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1962it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1963it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1964it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1965it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1966it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1967it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1968it [00:46, 40.35it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1969it [00:47, 38.58it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1969it [00:47, 38.58it/s, failures=0, objective=-1.32]
    Parallel BO:: : 1970it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1971it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1972it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1973it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1974it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1975it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1976it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1977it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1978it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1979it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1980it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1981it [00:47, 38.58it/s, failures=0, objective=-0.968]
    Parallel BO:: : 1982it [00:47, 38.58it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1983it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1983it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1984it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1985it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1986it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1987it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1988it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1989it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1990it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1991it [00:47, 41.87it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1992it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1992it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1993it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1994it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1995it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1996it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1997it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1998it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 1999it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2000it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2001it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2002it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2003it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2004it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2005it [00:47, 40.04it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2006it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2006it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2007it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2008it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2009it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2010it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2011it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2012it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2013it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2014it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2015it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2016it [00:48, 40.79it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2017it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2017it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2018it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2019it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2020it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2021it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2022it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2023it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2024it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2025it [00:48, 44.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2026it [00:48, 43.38it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2026it [00:48, 43.38it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2027it [00:48, 43.38it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2028it [00:48, 43.38it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2029it [00:48, 43.38it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2030it [00:48, 43.38it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2031it [00:48, 43.38it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2032it [00:48, 43.38it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2033it [00:48, 43.38it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2034it [00:48, 40.54it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2034it [00:48, 40.54it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2035it [00:48, 40.54it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2036it [00:48, 40.54it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2037it [00:48, 40.54it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2038it [00:48, 40.54it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2039it [00:48, 40.54it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2040it [00:48, 40.54it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2041it [00:49, 38.50it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2041it [00:49, 38.50it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2042it [00:49, 38.50it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2043it [00:49, 38.50it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2044it [00:49, 38.50it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2045it [00:49, 38.50it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2046it [00:49, 38.50it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2047it [00:49, 38.50it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2048it [00:49, 38.50it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2049it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2049it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2050it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2051it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2052it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2053it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2054it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2055it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2056it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2057it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2058it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2059it [00:49, 35.14it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2060it [00:49, 38.51it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2060it [00:49, 38.51it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2061it [00:49, 38.51it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2062it [00:49, 38.51it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2063it [00:49, 38.51it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2064it [00:49, 38.51it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2065it [00:49, 38.51it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2066it [00:49, 38.51it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2067it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2067it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2068it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2069it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2070it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2071it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2072it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2073it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2074it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2075it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2076it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2077it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2078it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2079it [00:49, 35.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2080it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2080it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2081it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2082it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2083it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2084it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2085it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2086it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2087it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2088it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2089it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2090it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2091it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2092it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2093it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2094it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2095it [00:50, 37.80it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2096it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2096it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2097it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2098it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2099it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2100it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2101it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2102it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2103it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2104it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2105it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2106it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2107it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2108it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2109it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2110it [00:50, 43.56it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2111it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2111it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2112it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2113it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2114it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2115it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2116it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2117it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2118it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2119it [00:50, 48.16it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2120it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2120it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2121it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2122it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2123it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2124it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2125it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2126it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2127it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2128it [00:51, 37.78it/s, failures=0, objective=-0.801]
    Parallel BO:: : 2129it [00:51, 37.78it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2130it [00:51, 37.78it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2131it [00:51, 37.78it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2132it [00:51, 37.78it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2133it [00:51, 37.78it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2134it [00:51, 37.78it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2135it [00:51, 37.78it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2136it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2136it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2137it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2138it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2139it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2140it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2141it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2142it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2143it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2144it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2145it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2146it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2147it [00:51, 42.00it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2148it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2148it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2149it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2150it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2151it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2152it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2153it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2154it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2155it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2156it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2157it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2158it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2159it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2160it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2161it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2162it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2163it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2164it [00:51, 40.64it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2165it [00:51, 47.76it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2165it [00:51, 47.76it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2166it [00:51, 47.76it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2167it [00:51, 47.76it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2168it [00:51, 47.76it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2169it [00:51, 47.76it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2170it [00:51, 47.76it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2171it [00:51, 47.76it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2172it [00:51, 47.76it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2173it [00:52, 40.06it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2173it [00:52, 40.06it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2174it [00:52, 40.06it/s, failures=0, objective=-0.754]
    Parallel BO:: : 2175it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2176it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2177it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2178it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2179it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2180it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2181it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2182it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2183it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2184it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2185it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2186it [00:52, 40.06it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2187it [00:52, 43.83it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2187it [00:52, 43.83it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2188it [00:52, 43.83it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2189it [00:52, 43.83it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2190it [00:52, 43.83it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2191it [00:52, 43.83it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2192it [00:52, 43.83it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2193it [00:52, 43.83it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2194it [00:52, 43.83it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2195it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2195it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2196it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2197it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2198it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2199it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2200it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2201it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2202it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2203it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2204it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2205it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2206it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2207it [00:52, 35.15it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2208it [00:53, 33.86it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2208it [00:53, 33.86it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2209it [00:53, 33.86it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2210it [00:53, 33.86it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2211it [00:53, 33.86it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2212it [00:53, 33.86it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2213it [00:53, 33.86it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2214it [00:53, 33.86it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2215it [00:53, 33.86it/s, failures=0, objective=-0.742]
    Parallel BO:: : 2216it [00:53, 33.86it/s, failures=0, objective=-0.65] 
    Parallel BO:: : 2217it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2218it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2219it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2220it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2221it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2222it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2223it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2224it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2225it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2226it [00:53, 33.86it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2227it [00:53, 43.69it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2227it [00:53, 43.69it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2228it [00:53, 43.69it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2229it [00:53, 43.69it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2230it [00:53, 43.69it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2231it [00:53, 43.69it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2232it [00:53, 43.69it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2233it [00:53, 43.69it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2234it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2234it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2235it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2236it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2237it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2238it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2239it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2240it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2241it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2242it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2243it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2244it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2245it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2246it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2247it [00:53, 38.09it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2248it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2248it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2249it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2250it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2251it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2252it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2253it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2254it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2255it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2256it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2257it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2258it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2259it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2260it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2261it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2262it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2263it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2264it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2265it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2266it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2267it [00:54, 36.01it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2268it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2268it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2269it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2270it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2271it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2272it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2273it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2274it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2275it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2276it [00:54, 42.94it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2277it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2277it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2278it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2279it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2280it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2281it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2282it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2283it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2284it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2285it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2286it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2287it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2288it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2289it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2290it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2291it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2292it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2293it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2294it [00:55, 36.64it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2295it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2295it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2296it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2297it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2298it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2299it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2300it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2301it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2302it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2303it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2304it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2305it [00:55, 42.72it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2306it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2306it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2307it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2308it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2309it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2310it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2311it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2312it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2313it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2314it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2315it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2316it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2317it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2318it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2319it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2320it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2321it [00:55, 38.14it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2322it [00:56, 40.32it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2322it [00:56, 40.32it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2323it [00:56, 40.32it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2324it [00:56, 40.32it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2325it [00:56, 40.32it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2326it [00:56, 40.32it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2327it [00:56, 40.32it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2328it [00:56, 40.32it/s, failures=0, objective=-0.65]
    Parallel BO:: : 2329it [00:56, 40.32it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2330it [00:56, 40.32it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2331it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2331it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2332it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2333it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2334it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2335it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2336it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2337it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2338it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2339it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2340it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2341it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2342it [00:56, 37.84it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2343it [00:56, 39.15it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2343it [00:56, 39.15it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2344it [00:56, 39.15it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2345it [00:56, 39.15it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2346it [00:56, 39.15it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2347it [00:56, 39.15it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2348it [00:56, 39.15it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2349it [00:56, 39.15it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2350it [00:56, 39.15it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2351it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2351it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2352it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2353it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2354it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2355it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2356it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2357it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2358it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2359it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2360it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2361it [00:56, 37.77it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2362it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2362it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2363it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2364it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2365it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2366it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2367it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2368it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2369it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2370it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2371it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2372it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2373it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2374it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2375it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2376it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2377it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2378it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2379it [00:57, 38.58it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2380it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2380it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2381it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2382it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2383it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2384it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2385it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2386it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2387it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2388it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2389it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2390it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2391it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2392it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2393it [00:57, 42.00it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2394it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2394it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2395it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2396it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2397it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2398it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2399it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2400it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2401it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2402it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2403it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2404it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2405it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2406it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2407it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2408it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2409it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2410it [00:57, 42.65it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2411it [00:58, 46.07it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2411it [00:58, 46.07it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2412it [00:58, 46.07it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2413it [00:58, 46.07it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2414it [00:58, 46.07it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2415it [00:58, 46.07it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2416it [00:58, 46.07it/s, failures=0, objective=-0.467]
    Parallel BO:: : 2417it [00:58, 46.07it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2418it [00:58, 46.07it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2419it [00:58, 46.07it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2420it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2420it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2421it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2422it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2423it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2424it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2425it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2426it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2427it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2428it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2429it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2430it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2431it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2432it [00:58, 41.40it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2433it [00:58, 43.76it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2433it [00:58, 43.76it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2434it [00:58, 43.76it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2435it [00:58, 43.76it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2436it [00:58, 43.76it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2437it [00:58, 43.76it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2438it [00:58, 43.76it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2439it [00:58, 43.76it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2440it [00:58, 43.76it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2441it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2441it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2442it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2443it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2444it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2445it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2446it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2447it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2448it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2449it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2450it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2451it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2452it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2453it [00:58, 39.92it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2454it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2454it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2455it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2456it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2457it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2458it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2459it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2460it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2461it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2462it [00:59, 40.54it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2463it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2463it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2464it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2465it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2466it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2467it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2468it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2469it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2470it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2471it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2472it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2473it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2474it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2475it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2476it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2477it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2478it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2479it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2480it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2481it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2482it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2483it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2484it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2485it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2486it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2487it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2488it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2489it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2490it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2491it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2492it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2493it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2494it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2495it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2496it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2497it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2498it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2499it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2500it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2501it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2502it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2503it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2504it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2505it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2506it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2507it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2508it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2509it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2510it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2511it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2512it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2513it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2514it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2515it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2516it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2517it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2518it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2519it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2520it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2521it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2522it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2523it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2524it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2525it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2526it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2527it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2528it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2529it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2530it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2531it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2532it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2533it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2534it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2535it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2536it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2537it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2538it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2539it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2540it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2541it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2542it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2543it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2544it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2545it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2546it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2547it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2548it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2549it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2550it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2551it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2552it [01:02, 10.55it/s, failures=0, objective=-0.388]
    Parallel BO:: : 2553it [01:02, 10.55it/s, failures=0, objective=-0.388]

.. raw:: html

    <div class="output_subarea output_html rendered_html output_result">
    <div>
    <style scoped>
        .dataframe tbody tr th:only-of-type {
            vertical-align: middle;
        }

        .dataframe tbody tr th {
            vertical-align: top;
        }

        .dataframe thead th {
            text-align: right;
        }
    </style>
    <table border="1" class="dataframe">
      <thead>
        <tr style="text-align: right;">
          <th></th>
          <th>p:x0</th>
          <th>p:x1</th>
          <th>p:x2</th>
          <th>p:x3</th>
          <th>p:x4</th>
          <th>objective</th>
          <th>job_id</th>
          <th>job_status</th>
          <th>m:timestamp_submit</th>
          <th>m:timestamp_start</th>
          <th>m:timestamp_end</th>
          <th>m:timestamp_gather</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <th>0</th>
          <td>16.344096</td>
          <td>20.457804</td>
          <td>-27.913095</td>
          <td>-27.692182</td>
          <td>28.103730</td>
          <td>-21.616393</td>
          <td>78</td>
          <td>DONE</td>
          <td>0.006377</td>
          <td>0.006767</td>
          <td>0.601200</td>
          <td>0.608737</td>
        </tr>
        <tr>
          <th>1</th>
          <td>-11.592801</td>
          <td>28.200101</td>
          <td>-16.494237</td>
          <td>-12.729873</td>
          <td>10.603544</td>
          <td>-21.461807</td>
          <td>79</td>
          <td>DONE</td>
          <td>0.006381</td>
          <td>0.006839</td>
          <td>0.648163</td>
          <td>0.655427</td>
        </tr>
        <tr>
          <th>2</th>
          <td>2.099672</td>
          <td>5.557481</td>
          <td>5.335090</td>
          <td>30.914251</td>
          <td>-4.079160</td>
          <td>-20.347804</td>
          <td>29</td>
          <td>DONE</td>
          <td>0.006160</td>
          <td>0.002525</td>
          <td>0.883815</td>
          <td>0.890977</td>
        </tr>
        <tr>
          <th>3</th>
          <td>-20.886258</td>
          <td>-26.932896</td>
          <td>-10.757414</td>
          <td>18.019752</td>
          <td>-15.501835</td>
          <td>-20.881206</td>
          <td>90</td>
          <td>DONE</td>
          <td>0.006435</td>
          <td>0.007985</td>
          <td>0.891972</td>
          <td>0.904913</td>
        </tr>
        <tr>
          <th>4</th>
          <td>17.408161</td>
          <td>8.180770</td>
          <td>12.941298</td>
          <td>29.073786</td>
          <td>4.721364</td>
          <td>-20.739146</td>
          <td>49</td>
          <td>DONE</td>
          <td>0.006258</td>
          <td>0.004018</td>
          <td>0.890506</td>
          <td>0.905376</td>
        </tr>
        <tr>
          <th>...</th>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
        </tr>
        <tr>
          <th>2548</th>
          <td>5.090940</td>
          <td>0.163142</td>
          <td>2.148031</td>
          <td>-1.779100</td>
          <td>1.507050</td>
          <td>-9.767546</td>
          <td>2470</td>
          <td>CANCELLED</td>
          <td>58.123143</td>
          <td>58.116981</td>
          <td>60.635695</td>
          <td>62.713897</td>
        </tr>
        <tr>
          <th>2549</th>
          <td>11.335849</td>
          <td>4.146546</td>
          <td>1.615620</td>
          <td>-1.087647</td>
          <td>-2.380955</td>
          <td>-15.256001</td>
          <td>2499</td>
          <td>CANCELLED</td>
          <td>58.754948</td>
          <td>58.748695</td>
          <td>60.530548</td>
          <td>62.714056</td>
        </tr>
        <tr>
          <th>2550</th>
          <td>5.565312</td>
          <td>-5.888106</td>
          <td>0.235503</td>
          <td>-1.622769</td>
          <td>-2.938645</td>
          <td>-12.563306</td>
          <td>2522</td>
          <td>CANCELLED</td>
          <td>59.313130</td>
          <td>59.306760</td>
          <td>60.822612</td>
          <td>62.714216</td>
        </tr>
        <tr>
          <th>2551</th>
          <td>5.090940</td>
          <td>0.163142</td>
          <td>2.148031</td>
          <td>-1.779100</td>
          <td>1.507050</td>
          <td>-9.767546</td>
          <td>2464</td>
          <td>CANCELLED</td>
          <td>58.123121</td>
          <td>58.116866</td>
          <td>59.962315</td>
          <td>62.714375</td>
        </tr>
        <tr>
          <th>2552</th>
          <td>-2.154933</td>
          <td>2.447673</td>
          <td>2.491713</td>
          <td>-1.362422</td>
          <td>0.407415</td>
          <td>-8.593117</td>
          <td>2535</td>
          <td>CANCELLED</td>
          <td>59.579840</td>
          <td>59.573451</td>
          <td>61.176946</td>
          <td>62.714534</td>
        </tr>
      </tbody>
    </table>
    <p>2553 rows × 12 columns</p>
    </div>
    </div>
    <br />
    <br />

.. GENERATED FROM PYTHON SOURCE LINES 176-185

It can be surprising to see in the results that the last lines have ``"job_status"`` set to "CANCELLED" but
still have an objective value. This is due to the fact that the cancellation of a job is asynchronous and already scheduled Asyncio tasks are therefore executed. When the timeout is reached the jobs created by the "thread" method jobs cannot be directly killed but rather their ``job.status`` is updated to ``"CANCELLING"`` and the user-code is responsible for checking the status of the job and interrupting the execution. This is why the objective value is still present in the results. This behavior is different from the "process" method where the jobs are killed directly.

We can now plot the results of the parallel search. The first plot shows the evolution of the objective.
The second plot shows the utilization of the worker over time.

We can see that the parallel search is able to evaluate a lot more points in the same time budget. This also
allows the algorithm to explore more of the search space and potentially find better solutions.
The utilization plot shows that the workers are used efficiently in the parallel search (above 80%).

.. GENERATED FROM PYTHON SOURCE LINES 185-203

.. dropdown:: Code (Plot search trajectory and worker utilization)

    .. code-block:: Python


        fig, axes = plt.subplots(
                nrows=2,
                ncols=1,
                sharex=True,
                figsize=figure_size(width=600),
                tight_layout=True,
            )

        _ = plot_search_trajectory_single_objective_hpo(
            results["parallel"], mode="min", x_units="seconds", ax=axes[0]
        )

        _ = plot_worker_utilization(
            results["parallel"], num_workers=1, profile_type="start/end", ax=axes[1]
        )




.. image-sg:: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_002.png
   :alt: plot from serial to parallel hpo
   :srcset: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_002.png
   :class: sphx-glr-single-img





.. GENERATED FROM PYTHON SOURCE LINES 204-206

Finally, we compare both search with the execution time is used as the x-axis.
The advantage of parallelism is clearly visible by the difference in the number of evaluations and in objective.

.. GENERATED FROM PYTHON SOURCE LINES 206-231

.. dropdown:: Code (Plot search trajectories)

    .. code-block:: Python


        fig, ax = plt.subplots(figsize=figure_size(width=600), tight_layout=True)

        for i, (strategy, df) in enumerate(results.items()):
            plot_search_trajectory_single_objective_hpo(
                df,
                show_failures=False,
                mode="min",
                x_units="seconds",
                ax=ax,
                label=strategy,
                plot_kwargs={"color": f"C{i}"},
                scatter_success_kwargs={"color": f"C{i}"},
            )

        _ = ax.set_xlabel("Time (sec.)")
        _ = ax.set_ylabel("Objective")
        _ = ax.set_yscale("log")
        _ = ax.grid(visible=True, which="minor", linestyle=":")
        _ = ax.grid(visible=True, which="major", linestyle="-")
        _ = ax.legend()






.. image-sg:: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_003.png
   :alt: plot from serial to parallel hpo
   :srcset: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_003.png
   :class: sphx-glr-single-img





.. GENERATED FROM PYTHON SOURCE LINES 232-234

Finally, one could compare to a random search to see if the overheads of the parallel Bayesian optimization are worth it (i.e., the cost of fitting and optimizing the surrogate model).
The evaluator is defined similarly to the one used for the parallel Bayesian optimization search:

.. GENERATED FROM PYTHON SOURCE LINES 234-248

.. code-block:: Python


    parallel_evaluator = Evaluator.create(
        run_ackley,
        method="thread",
        method_kwargs={
            "num_workers": 100, # For the parallel evaluations
            "callbacks": [TqdmCallback("Random Search:")]
        },
    )
    random_search = RandomSearch(problem, random_state=search_kwargs["random_state"])
    results["random"] = preprocess_results(random_search.search(parallel_evaluator, timeout=timeout))
    results["random"]






.. rst-class:: sphx-glr-script-out

 .. code-block:: none

    Results file already exists, it will be renamed to /Users/rp5/Documents/DeepHyper/deephyper/examples/examples_parallelism/results_20250818-150201.csv


    0it [00:00, ?it/s]

    Random Search:: : 0it [00:00, ?it/s]

    Random Search:: : 1it [00:00, 4809.98it/s, failures=0, objective=-21.3]

    Random Search:: : 2it [00:00,  4.11it/s, failures=0, objective=-21.3]  

    Random Search:: : 2it [00:00,  4.11it/s, failures=0, objective=-20.5]

    Random Search:: : 3it [00:00,  4.81it/s, failures=0, objective=-20.5]

    Random Search:: : 3it [00:00,  4.81it/s, failures=0, objective=-20.5]

    Random Search:: : 4it [00:00,  4.81it/s, failures=0, objective=-20.5]

    Random Search:: : 5it [00:00,  4.81it/s, failures=0, objective=-20.5]

    Random Search:: : 6it [00:00,  4.81it/s, failures=0, objective=-20.3]

    Random Search:: : 7it [00:00,  4.81it/s, failures=0, objective=-20.3]

    Random Search:: : 8it [00:00, 14.38it/s, failures=0, objective=-20.3]

    Random Search:: : 8it [00:00, 14.38it/s, failures=0, objective=-20.3]

    Random Search:: : 9it [00:00, 14.38it/s, failures=0, objective=-20.3]

    Random Search:: : 10it [00:00, 14.38it/s, failures=0, objective=-20.3]

    Random Search:: : 11it [00:00, 16.97it/s, failures=0, objective=-20.3]

    Random Search:: : 11it [00:00, 16.97it/s, failures=0, objective=-20.3]

    Random Search:: : 12it [00:00, 16.97it/s, failures=0, objective=-20.3]

    Random Search:: : 13it [00:00, 16.97it/s, failures=0, objective=-20.3]

    Random Search:: : 14it [00:00, 16.97it/s, failures=0, objective=-19]  

    Random Search:: : 15it [00:00, 16.97it/s, failures=0, objective=-19]

    Random Search:: : 16it [00:00, 16.97it/s, failures=0, objective=-19]

    Random Search:: : 17it [00:00, 16.97it/s, failures=0, objective=-19]

    Random Search:: : 18it [00:00, 16.97it/s, failures=0, objective=-19]

    Random Search:: : 19it [00:00, 16.97it/s, failures=0, objective=-19]

    Random Search:: : 20it [00:00, 16.97it/s, failures=0, objective=-19]

    Random Search:: : 21it [00:00, 36.50it/s, failures=0, objective=-19]

    Random Search:: : 21it [00:00, 36.50it/s, failures=0, objective=-19]

    Random Search:: : 22it [00:01, 36.50it/s, failures=0, objective=-19]

    Random Search:: : 23it [00:01, 36.50it/s, failures=0, objective=-19]

    Random Search:: : 24it [00:01, 36.50it/s, failures=0, objective=-19]

    Random Search:: : 25it [00:01, 36.50it/s, failures=0, objective=-19]

    Random Search:: : 26it [00:01, 35.72it/s, failures=0, objective=-19]

    Random Search:: : 26it [00:01, 35.72it/s, failures=0, objective=-19]

    Random Search:: : 27it [00:01, 35.72it/s, failures=0, objective=-19]

    Random Search:: : 28it [00:01, 35.72it/s, failures=0, objective=-19]

    Random Search:: : 29it [00:01, 35.72it/s, failures=0, objective=-19]

    Random Search:: : 30it [00:01, 35.72it/s, failures=0, objective=-19]

    Random Search:: : 31it [00:01, 38.98it/s, failures=0, objective=-19]

    Random Search:: : 31it [00:01, 38.98it/s, failures=0, objective=-19]

    Random Search:: : 32it [00:01, 38.98it/s, failures=0, objective=-19]

    Random Search:: : 33it [00:01, 38.98it/s, failures=0, objective=-19]

    Random Search:: : 34it [00:01, 38.98it/s, failures=0, objective=-19]

    Random Search:: : 35it [00:01, 38.98it/s, failures=0, objective=-19]

    Random Search:: : 36it [00:01, 38.98it/s, failures=0, objective=-19]

    Random Search:: : 37it [00:01, 38.98it/s, failures=0, objective=-19]

    Random Search:: : 38it [00:01, 44.12it/s, failures=0, objective=-19]

    Random Search:: : 38it [00:01, 44.12it/s, failures=0, objective=-19]

    Random Search:: : 39it [00:01, 44.12it/s, failures=0, objective=-19]

    Random Search:: : 40it [00:01, 44.12it/s, failures=0, objective=-19]

    Random Search:: : 41it [00:01, 44.12it/s, failures=0, objective=-19]

    Random Search:: : 42it [00:01, 44.12it/s, failures=0, objective=-19]

    Random Search:: : 43it [00:01, 44.12it/s, failures=0, objective=-19]

    Random Search:: : 44it [00:01, 44.12it/s, failures=0, objective=-19]

    Random Search:: : 45it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 45it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 46it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 47it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 48it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 49it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 50it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 51it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 52it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 53it [00:01, 49.09it/s, failures=0, objective=-19]

    Random Search:: : 54it [00:01, 57.62it/s, failures=0, objective=-19]

    Random Search:: : 54it [00:01, 57.62it/s, failures=0, objective=-19]

    Random Search:: : 55it [00:01, 57.62it/s, failures=0, objective=-19]

    Random Search:: : 56it [00:01, 57.62it/s, failures=0, objective=-19]

    Random Search:: : 57it [00:01, 57.62it/s, failures=0, objective=-19]

    Random Search:: : 58it [00:01, 57.62it/s, failures=0, objective=-19]

    Random Search:: : 59it [00:01, 57.62it/s, failures=0, objective=-19]

    Random Search:: : 60it [00:01, 57.62it/s, failures=0, objective=-19]

    Random Search:: : 61it [00:01, 57.62it/s, failures=0, objective=-19]

    Random Search:: : 62it [00:01, 63.06it/s, failures=0, objective=-19]

    Random Search:: : 62it [00:01, 63.06it/s, failures=0, objective=-19]

    Random Search:: : 63it [00:01, 63.06it/s, failures=0, objective=-19]

    Random Search:: : 64it [00:01, 63.06it/s, failures=0, objective=-19]

    Random Search:: : 65it [00:01, 63.06it/s, failures=0, objective=-19]

    Random Search:: : 66it [00:01, 63.06it/s, failures=0, objective=-19]

    Random Search:: : 67it [00:01, 63.06it/s, failures=0, objective=-19]

    Random Search:: : 68it [00:01, 63.06it/s, failures=0, objective=-19]

    Random Search:: : 69it [00:01, 63.06it/s, failures=0, objective=-16.7]

    Random Search:: : 70it [00:01, 63.06it/s, failures=0, objective=-16.7]

    Random Search:: : 71it [00:01, 69.69it/s, failures=0, objective=-16.7]

    Random Search:: : 71it [00:01, 69.69it/s, failures=0, objective=-16.7]

    Random Search:: : 72it [00:01, 69.69it/s, failures=0, objective=-16.7]

    Random Search:: : 73it [00:01, 69.69it/s, failures=0, objective=-16.7]

    Random Search:: : 74it [00:01, 69.69it/s, failures=0, objective=-16.7]

    Random Search:: : 75it [00:01, 69.69it/s, failures=0, objective=-16.7]

    Random Search:: : 76it [00:01, 69.69it/s, failures=0, objective=-16.7]

    Random Search:: : 77it [00:01, 69.69it/s, failures=0, objective=-16.7]

    Random Search:: : 78it [00:01, 69.69it/s, failures=0, objective=-16.7]

    Random Search:: : 79it [00:01, 67.43it/s, failures=0, objective=-16.7]

    Random Search:: : 79it [00:01, 67.43it/s, failures=0, objective=-16.7]

    Random Search:: : 80it [00:01, 67.43it/s, failures=0, objective=-16.7]

    Random Search:: : 81it [00:01, 67.43it/s, failures=0, objective=-16.7]

    Random Search:: : 82it [00:01, 67.43it/s, failures=0, objective=-16.7]

    Random Search:: : 83it [00:02, 67.43it/s, failures=0, objective=-16.7]

    Random Search:: : 84it [00:02, 67.43it/s, failures=0, objective=-16.7]

    Random Search:: : 85it [00:02, 67.43it/s, failures=0, objective=-16.7]

    Random Search:: : 86it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 86it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 87it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 88it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 89it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 90it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 91it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 92it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 93it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 94it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 95it [00:02, 62.37it/s, failures=0, objective=-16.7]

    Random Search:: : 96it [00:02, 59.22it/s, failures=0, objective=-16.7]

    Random Search:: : 96it [00:02, 59.22it/s, failures=0, objective=-16.7]

    Random Search:: : 97it [00:02, 59.22it/s, failures=0, objective=-16.7]

    Random Search:: : 98it [00:02, 59.22it/s, failures=0, objective=-16.7]

    Random Search:: : 99it [00:02, 59.22it/s, failures=0, objective=-16.7]

    Random Search:: : 100it [00:02, 59.22it/s, failures=0, objective=-16.7]

    Random Search:: : 101it [00:02, 59.22it/s, failures=0, objective=-16.7]

    Random Search:: : 102it [00:02, 59.22it/s, failures=0, objective=-16.7]

    Random Search:: : 103it [00:02, 51.32it/s, failures=0, objective=-16.7]

    Random Search:: : 103it [00:02, 51.32it/s, failures=0, objective=-16.7]

    Random Search:: : 104it [00:02, 51.32it/s, failures=0, objective=-16.7]

    Random Search:: : 105it [00:02, 51.32it/s, failures=0, objective=-16.7]

    Random Search:: : 106it [00:02, 51.32it/s, failures=0, objective=-16.7]

    Random Search:: : 107it [00:02, 51.32it/s, failures=0, objective=-16.7]

    Random Search:: : 108it [00:02, 51.32it/s, failures=0, objective=-16.7]

    Random Search:: : 109it [00:02, 43.55it/s, failures=0, objective=-16.7]

    Random Search:: : 109it [00:02, 43.55it/s, failures=0, objective=-16.7]

    Random Search:: : 110it [00:02, 43.55it/s, failures=0, objective=-16.7]

    Random Search:: : 111it [00:02, 43.55it/s, failures=0, objective=-16.7]

    Random Search:: : 112it [00:02, 43.55it/s, failures=0, objective=-16.7]

    Random Search:: : 113it [00:02, 43.55it/s, failures=0, objective=-16.7]

    Random Search:: : 114it [00:02, 39.98it/s, failures=0, objective=-16.7]

    Random Search:: : 114it [00:02, 39.98it/s, failures=0, objective=-16.7]

    Random Search:: : 115it [00:02, 39.98it/s, failures=0, objective=-16.7]

    Random Search:: : 116it [00:02, 39.98it/s, failures=0, objective=-16.7]

    Random Search:: : 117it [00:02, 39.98it/s, failures=0, objective=-16.7]

    Random Search:: : 118it [00:02, 39.98it/s, failures=0, objective=-16.7]

    Random Search:: : 119it [00:02, 39.98it/s, failures=0, objective=-16.7]

    Random Search:: : 120it [00:02, 39.98it/s, failures=0, objective=-16.7]

    Random Search:: : 121it [00:02, 44.72it/s, failures=0, objective=-16.7]

    Random Search:: : 121it [00:02, 44.72it/s, failures=0, objective=-16.7]

    Random Search:: : 122it [00:02, 44.72it/s, failures=0, objective=-16.7]

    Random Search:: : 123it [00:02, 44.72it/s, failures=0, objective=-16.7]

    Random Search:: : 124it [00:02, 44.72it/s, failures=0, objective=-16.7]

    Random Search:: : 125it [00:02, 44.72it/s, failures=0, objective=-16.7]

    Random Search:: : 126it [00:02, 44.72it/s, failures=0, objective=-16.7]

    Random Search:: : 127it [00:03, 44.72it/s, failures=0, objective=-16.7]

    Random Search:: : 128it [00:03, 49.30it/s, failures=0, objective=-16.7]

    Random Search:: : 128it [00:03, 49.30it/s, failures=0, objective=-16.7]

    Random Search:: : 129it [00:03, 49.30it/s, failures=0, objective=-16.7]

    Random Search:: : 130it [00:03, 49.30it/s, failures=0, objective=-16.7]

    Random Search:: : 131it [00:03, 49.30it/s, failures=0, objective=-16.7]

    Random Search:: : 132it [00:03, 49.30it/s, failures=0, objective=-16.7]

    Random Search:: : 133it [00:03, 49.30it/s, failures=0, objective=-16.7]

    Random Search:: : 134it [00:03, 51.25it/s, failures=0, objective=-16.7]

    Random Search:: : 134it [00:03, 51.25it/s, failures=0, objective=-16.7]

    Random Search:: : 135it [00:03, 51.25it/s, failures=0, objective=-16.7]

    Random Search:: : 136it [00:03, 51.25it/s, failures=0, objective=-16.7]

    Random Search:: : 137it [00:03, 51.25it/s, failures=0, objective=-16.7]

    Random Search:: : 138it [00:03, 51.25it/s, failures=0, objective=-16.7]

    Random Search:: : 139it [00:03, 51.25it/s, failures=0, objective=-16.7]

    Random Search:: : 140it [00:03, 44.29it/s, failures=0, objective=-16.7]

    Random Search:: : 140it [00:03, 44.29it/s, failures=0, objective=-16.7]

    Random Search:: : 141it [00:03, 44.29it/s, failures=0, objective=-16.7]

    Random Search:: : 142it [00:03, 44.29it/s, failures=0, objective=-16.7]

    Random Search:: : 143it [00:03, 44.29it/s, failures=0, objective=-16.7]

    Random Search:: : 144it [00:03, 44.29it/s, failures=0, objective=-16.7]

    Random Search:: : 145it [00:03, 44.29it/s, failures=0, objective=-16.7]

    Random Search:: : 146it [00:03, 44.29it/s, failures=0, objective=-16.7]

    Random Search:: : 147it [00:03, 48.21it/s, failures=0, objective=-16.7]

    Random Search:: : 147it [00:03, 48.21it/s, failures=0, objective=-16.7]

    Random Search:: : 148it [00:03, 48.21it/s, failures=0, objective=-16.7]

    Random Search:: : 149it [00:03, 48.21it/s, failures=0, objective=-16.7]

    Random Search:: : 150it [00:03, 48.21it/s, failures=0, objective=-16.7]

    Random Search:: : 151it [00:03, 48.21it/s, failures=0, objective=-16.7]

    Random Search:: : 152it [00:03, 48.21it/s, failures=0, objective=-16.7]

    Random Search:: : 153it [00:03, 48.21it/s, failures=0, objective=-16.7]

    Random Search:: : 154it [00:03, 52.09it/s, failures=0, objective=-16.7]

    Random Search:: : 154it [00:03, 52.09it/s, failures=0, objective=-16.7]

    Random Search:: : 155it [00:03, 52.09it/s, failures=0, objective=-16.7]

    Random Search:: : 156it [00:03, 52.09it/s, failures=0, objective=-16.7]

    Random Search:: : 157it [00:03, 52.09it/s, failures=0, objective=-16.7]

    Random Search:: : 158it [00:03, 52.09it/s, failures=0, objective=-16.7]

    Random Search:: : 159it [00:03, 52.09it/s, failures=0, objective=-16.7]

    Random Search:: : 160it [00:03, 52.09it/s, failures=0, objective=-16.7]

    Random Search:: : 161it [00:03, 53.72it/s, failures=0, objective=-16.7]

    Random Search:: : 161it [00:03, 53.72it/s, failures=0, objective=-16.7]

    Random Search:: : 162it [00:03, 53.72it/s, failures=0, objective=-16.7]

    Random Search:: : 163it [00:03, 53.72it/s, failures=0, objective=-16.7]

    Random Search:: : 164it [00:03, 53.72it/s, failures=0, objective=-16.7]

    Random Search:: : 165it [00:03, 53.72it/s, failures=0, objective=-16.7]

    Random Search:: : 166it [00:03, 53.72it/s, failures=0, objective=-16.7]

    Random Search:: : 167it [00:03, 52.10it/s, failures=0, objective=-16.7]

    Random Search:: : 167it [00:03, 52.10it/s, failures=0, objective=-16.7]

    Random Search:: : 168it [00:03, 52.10it/s, failures=0, objective=-16.7]

    Random Search:: : 169it [00:03, 52.10it/s, failures=0, objective=-16.7]

    Random Search:: : 170it [00:03, 52.10it/s, failures=0, objective=-16.7]

    Random Search:: : 171it [00:03, 52.10it/s, failures=0, objective=-16.7]

    Random Search:: : 172it [00:03, 52.10it/s, failures=0, objective=-16.7]

    Random Search:: : 173it [00:03, 51.47it/s, failures=0, objective=-16.7]

    Random Search:: : 173it [00:03, 51.47it/s, failures=0, objective=-16.7]

    Random Search:: : 174it [00:03, 51.47it/s, failures=0, objective=-16.7]

    Random Search:: : 175it [00:03, 51.47it/s, failures=0, objective=-16.7]

    Random Search:: : 176it [00:03, 51.47it/s, failures=0, objective=-16.7]

    Random Search:: : 177it [00:03, 51.47it/s, failures=0, objective=-16.7]

    Random Search:: : 178it [00:03, 51.47it/s, failures=0, objective=-16.7]

    Random Search:: : 179it [00:03, 51.47it/s, failures=0, objective=-16.7]

    Random Search:: : 180it [00:03, 51.47it/s, failures=0, objective=-16.7]

    Random Search:: : 181it [00:04, 56.45it/s, failures=0, objective=-16.7]

    Random Search:: : 181it [00:04, 56.45it/s, failures=0, objective=-16.7]

    Random Search:: : 182it [00:04, 56.45it/s, failures=0, objective=-16.7]

    Random Search:: : 183it [00:04, 56.45it/s, failures=0, objective=-16.7]

    Random Search:: : 184it [00:04, 56.45it/s, failures=0, objective=-16.7]

    Random Search:: : 185it [00:04, 56.45it/s, failures=0, objective=-16.7]

    Random Search:: : 186it [00:04, 56.45it/s, failures=0, objective=-16.7]

    Random Search:: : 187it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 187it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 188it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 189it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 190it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 191it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 192it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 193it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 194it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 195it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 196it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 197it [00:04, 44.87it/s, failures=0, objective=-16.7]

    Random Search:: : 198it [00:04, 56.94it/s, failures=0, objective=-16.7]

    Random Search:: : 198it [00:04, 56.94it/s, failures=0, objective=-16.7]

    Random Search:: : 199it [00:04, 56.94it/s, failures=0, objective=-16.7]

    Random Search:: : 200it [00:04, 56.94it/s, failures=0, objective=-16.7]

    Random Search:: : 201it [00:04, 56.94it/s, failures=0, objective=-16.7]

    Random Search:: : 202it [00:04, 56.94it/s, failures=0, objective=-16.7]

    Random Search:: : 203it [00:04, 56.94it/s, failures=0, objective=-16.7]

    Random Search:: : 204it [00:04, 56.94it/s, failures=0, objective=-16.7]

    Random Search:: : 205it [00:04, 37.96it/s, failures=0, objective=-16.7]

    Random Search:: : 205it [00:04, 37.96it/s, failures=0, objective=-16.7]

    Random Search:: : 206it [00:04, 37.96it/s, failures=0, objective=-16.7]

    Random Search:: : 207it [00:04, 37.96it/s, failures=0, objective=-16.7]

    Random Search:: : 208it [00:04, 37.96it/s, failures=0, objective=-16.7]

    Random Search:: : 209it [00:04, 37.96it/s, failures=0, objective=-16.7]

    Random Search:: : 210it [00:04, 37.96it/s, failures=0, objective=-16.7]

    Random Search:: : 211it [00:04, 37.96it/s, failures=0, objective=-16.7]

    Random Search:: : 212it [00:04, 43.16it/s, failures=0, objective=-16.7]

    Random Search:: : 212it [00:04, 43.16it/s, failures=0, objective=-16.7]

    Random Search:: : 213it [00:04, 43.16it/s, failures=0, objective=-16.7]

    Random Search:: : 214it [00:04, 43.16it/s, failures=0, objective=-16.7]

    Random Search:: : 215it [00:04, 43.16it/s, failures=0, objective=-16.7]

    Random Search:: : 216it [00:04, 43.16it/s, failures=0, objective=-16.7]

    Random Search:: : 217it [00:04, 43.16it/s, failures=0, objective=-16.7]

    Random Search:: : 218it [00:04, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 218it [00:04, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 219it [00:04, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 220it [00:04, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 221it [00:04, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 222it [00:04, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 223it [00:04, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 224it [00:04, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 225it [00:04, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 226it [00:05, 45.19it/s, failures=0, objective=-16.7]

    Random Search:: : 227it [00:05, 52.83it/s, failures=0, objective=-16.7]

    Random Search:: : 227it [00:05, 52.83it/s, failures=0, objective=-16.7]

    Random Search:: : 228it [00:05, 52.83it/s, failures=0, objective=-16.7]

    Random Search:: : 229it [00:05, 52.83it/s, failures=0, objective=-16.7]

    Random Search:: : 230it [00:05, 52.83it/s, failures=0, objective=-16.7]

    Random Search:: : 231it [00:05, 52.83it/s, failures=0, objective=-16.7]

    Random Search:: : 232it [00:05, 52.83it/s, failures=0, objective=-16.7]

    Random Search:: : 233it [00:05, 52.83it/s, failures=0, objective=-16.7]

    Random Search:: : 234it [00:05, 54.21it/s, failures=0, objective=-16.7]

    Random Search:: : 234it [00:05, 54.21it/s, failures=0, objective=-16.7]

    Random Search:: : 235it [00:05, 54.21it/s, failures=0, objective=-16.7]

    Random Search:: : 236it [00:05, 54.21it/s, failures=0, objective=-16.7]

    Random Search:: : 237it [00:05, 54.21it/s, failures=0, objective=-16.7]

    Random Search:: : 238it [00:05, 54.21it/s, failures=0, objective=-16.7]

    Random Search:: : 239it [00:05, 54.21it/s, failures=0, objective=-16.7]

    Random Search:: : 240it [00:05, 50.56it/s, failures=0, objective=-16.7]

    Random Search:: : 240it [00:05, 50.56it/s, failures=0, objective=-16.7]

    Random Search:: : 241it [00:05, 50.56it/s, failures=0, objective=-16.7]

    Random Search:: : 242it [00:05, 50.56it/s, failures=0, objective=-16.7]

    Random Search:: : 243it [00:05, 50.56it/s, failures=0, objective=-16.7]

    Random Search:: : 244it [00:05, 50.56it/s, failures=0, objective=-16.7]

    Random Search:: : 245it [00:05, 50.56it/s, failures=0, objective=-16.7]

    Random Search:: : 246it [00:05, 48.46it/s, failures=0, objective=-16.7]

    Random Search:: : 246it [00:05, 48.46it/s, failures=0, objective=-16.7]

    Random Search:: : 247it [00:05, 48.46it/s, failures=0, objective=-16.7]

    Random Search:: : 248it [00:05, 48.46it/s, failures=0, objective=-16.7]

    Random Search:: : 249it [00:05, 48.46it/s, failures=0, objective=-16.7]

    Random Search:: : 250it [00:05, 48.46it/s, failures=0, objective=-16.7]

    Random Search:: : 251it [00:05, 48.46it/s, failures=0, objective=-16.7]

    Random Search:: : 252it [00:05, 43.04it/s, failures=0, objective=-16.7]

    Random Search:: : 252it [00:05, 43.04it/s, failures=0, objective=-16.7]

    Random Search:: : 253it [00:05, 43.04it/s, failures=0, objective=-16.7]

    Random Search:: : 254it [00:05, 43.04it/s, failures=0, objective=-16.7]

    Random Search:: : 255it [00:05, 43.04it/s, failures=0, objective=-16.7]

    Random Search:: : 256it [00:05, 43.04it/s, failures=0, objective=-16.7]

    Random Search:: : 257it [00:05, 43.04it/s, failures=0, objective=-16.7]

    Random Search:: : 258it [00:05, 43.04it/s, failures=0, objective=-16.7]

    Random Search:: : 259it [00:05, 43.04it/s, failures=0, objective=-16.7]

    Random Search:: : 260it [00:05, 48.26it/s, failures=0, objective=-16.7]

    Random Search:: : 260it [00:05, 48.26it/s, failures=0, objective=-16.7]

    Random Search:: : 261it [00:05, 48.26it/s, failures=0, objective=-16.7]

    Random Search:: : 262it [00:05, 48.26it/s, failures=0, objective=-16.7]

    Random Search:: : 263it [00:05, 48.26it/s, failures=0, objective=-16.7]

    Random Search:: : 264it [00:05, 48.26it/s, failures=0, objective=-16.7]

    Random Search:: : 265it [00:05, 48.26it/s, failures=0, objective=-16.7]

    Random Search:: : 266it [00:05, 48.26it/s, failures=0, objective=-16.7]

    Random Search:: : 267it [00:05, 48.26it/s, failures=0, objective=-16.7]

    Random Search:: : 268it [00:05, 54.62it/s, failures=0, objective=-16.7]

    Random Search:: : 268it [00:05, 54.62it/s, failures=0, objective=-16.7]

    Random Search:: : 269it [00:05, 54.62it/s, failures=0, objective=-16.7]

    Random Search:: : 270it [00:05, 54.62it/s, failures=0, objective=-16.7]

    Random Search:: : 271it [00:05, 54.62it/s, failures=0, objective=-16.7]

    Random Search:: : 272it [00:05, 54.62it/s, failures=0, objective=-16.7]

    Random Search:: : 273it [00:05, 54.62it/s, failures=0, objective=-16.7]

    Random Search:: : 274it [00:05, 52.28it/s, failures=0, objective=-16.7]

    Random Search:: : 274it [00:05, 52.28it/s, failures=0, objective=-16.7]

    Random Search:: : 275it [00:06, 52.28it/s, failures=0, objective=-16.7]

    Random Search:: : 276it [00:06, 52.28it/s, failures=0, objective=-16.7]

    Random Search:: : 277it [00:06, 52.28it/s, failures=0, objective=-16.7]

    Random Search:: : 278it [00:06, 52.28it/s, failures=0, objective=-16.7]

    Random Search:: : 279it [00:06, 52.28it/s, failures=0, objective=-16.7]

    Random Search:: : 280it [00:06, 51.99it/s, failures=0, objective=-16.7]

    Random Search:: : 280it [00:06, 51.99it/s, failures=0, objective=-16.7]

    Random Search:: : 281it [00:06, 51.99it/s, failures=0, objective=-16.7]

    Random Search:: : 282it [00:06, 51.99it/s, failures=0, objective=-16.7]

    Random Search:: : 283it [00:06, 51.99it/s, failures=0, objective=-16.7]

    Random Search:: : 284it [00:06, 51.99it/s, failures=0, objective=-16.7]

    Random Search:: : 285it [00:06, 51.99it/s, failures=0, objective=-16.7]

    Random Search:: : 286it [00:06, 53.53it/s, failures=0, objective=-16.7]

    Random Search:: : 286it [00:06, 53.53it/s, failures=0, objective=-16.7]

    Random Search:: : 287it [00:06, 53.53it/s, failures=0, objective=-16.7]

    Random Search:: : 288it [00:06, 53.53it/s, failures=0, objective=-16.7]

    Random Search:: : 289it [00:06, 53.53it/s, failures=0, objective=-16.7]

    Random Search:: : 290it [00:06, 53.53it/s, failures=0, objective=-16.7]

    Random Search:: : 291it [00:06, 53.53it/s, failures=0, objective=-16.7]

    Random Search:: : 292it [00:06, 43.12it/s, failures=0, objective=-16.7]

    Random Search:: : 292it [00:06, 43.12it/s, failures=0, objective=-16.7]

    Random Search:: : 293it [00:06, 43.12it/s, failures=0, objective=-16.7]

    Random Search:: : 294it [00:06, 43.12it/s, failures=0, objective=-16.7]

    Random Search:: : 295it [00:06, 43.12it/s, failures=0, objective=-16.7]

    Random Search:: : 296it [00:06, 43.12it/s, failures=0, objective=-16.7]

    Random Search:: : 297it [00:06, 43.82it/s, failures=0, objective=-16.7]

    Random Search:: : 297it [00:06, 43.82it/s, failures=0, objective=-16.7]

    Random Search:: : 298it [00:06, 43.82it/s, failures=0, objective=-16.7]

    Random Search:: : 299it [00:06, 43.82it/s, failures=0, objective=-16.7]

    Random Search:: : 300it [00:06, 43.82it/s, failures=0, objective=-16.7]

    Random Search:: : 301it [00:06, 43.82it/s, failures=0, objective=-16.7]

    Random Search:: : 302it [00:06, 43.82it/s, failures=0, objective=-16.7]

    Random Search:: : 303it [00:06, 46.41it/s, failures=0, objective=-16.7]

    Random Search:: : 303it [00:06, 46.41it/s, failures=0, objective=-16.7]

    Random Search:: : 304it [00:06, 46.41it/s, failures=0, objective=-16.7]

    Random Search:: : 305it [00:06, 46.41it/s, failures=0, objective=-16.7]

    Random Search:: : 306it [00:06, 46.41it/s, failures=0, objective=-16.7]

    Random Search:: : 307it [00:06, 46.41it/s, failures=0, objective=-16.7]

    Random Search:: : 308it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 308it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 309it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 310it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 311it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 312it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 313it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 314it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 315it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 316it [00:06, 45.07it/s, failures=0, objective=-16.7]

    Random Search:: : 317it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 317it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 318it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 319it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 320it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 321it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 322it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 323it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 324it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 325it [00:06, 53.06it/s, failures=0, objective=-16.7]

    Random Search:: : 326it [00:06, 59.24it/s, failures=0, objective=-16.7]

    Random Search:: : 326it [00:06, 59.24it/s, failures=0, objective=-16.7]

    Random Search:: : 327it [00:06, 59.24it/s, failures=0, objective=-16.7]

    Random Search:: : 328it [00:07, 59.24it/s, failures=0, objective=-16.7]

    Random Search:: : 329it [00:07, 59.24it/s, failures=0, objective=-16.7]

    Random Search:: : 330it [00:07, 59.24it/s, failures=0, objective=-16.7]

    Random Search:: : 331it [00:07, 59.24it/s, failures=0, objective=-16.7]

    Random Search:: : 332it [00:07, 59.24it/s, failures=0, objective=-16.7]

    Random Search:: : 333it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 333it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 334it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 335it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 336it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 337it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 338it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 339it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 340it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 341it [00:07, 54.55it/s, failures=0, objective=-16.7]

    Random Search:: : 342it [00:07, 61.99it/s, failures=0, objective=-16.7]

    Random Search:: : 342it [00:07, 61.99it/s, failures=0, objective=-16.7]

    Random Search:: : 343it [00:07, 61.99it/s, failures=0, objective=-16.7]

    Random Search:: : 344it [00:07, 61.99it/s, failures=0, objective=-16.7]

    Random Search:: : 345it [00:07, 61.99it/s, failures=0, objective=-16.7]

    Random Search:: : 346it [00:07, 61.99it/s, failures=0, objective=-16.7]

    Random Search:: : 347it [00:07, 61.99it/s, failures=0, objective=-16.7]

    Random Search:: : 348it [00:07, 61.99it/s, failures=0, objective=-16.7]

    Random Search:: : 349it [00:07, 49.55it/s, failures=0, objective=-16.7]

    Random Search:: : 349it [00:07, 49.55it/s, failures=0, objective=-16.7]

    Random Search:: : 350it [00:07, 49.55it/s, failures=0, objective=-16.7]

    Random Search:: : 351it [00:07, 49.55it/s, failures=0, objective=-16.7]

    Random Search:: : 352it [00:07, 49.55it/s, failures=0, objective=-16.7]

    Random Search:: : 353it [00:07, 49.55it/s, failures=0, objective=-16.7]

    Random Search:: : 354it [00:07, 49.55it/s, failures=0, objective=-16.7]

    Random Search:: : 355it [00:07, 49.04it/s, failures=0, objective=-16.7]

    Random Search:: : 355it [00:07, 49.04it/s, failures=0, objective=-16.7]

    Random Search:: : 356it [00:07, 49.04it/s, failures=0, objective=-16.7]

    Random Search:: : 357it [00:07, 49.04it/s, failures=0, objective=-16.7]

    Random Search:: : 358it [00:07, 49.04it/s, failures=0, objective=-16.5]

    Random Search:: : 359it [00:07, 49.04it/s, failures=0, objective=-16.5]

    Random Search:: : 360it [00:07, 49.04it/s, failures=0, objective=-16.5]

    Random Search:: : 361it [00:07, 39.76it/s, failures=0, objective=-16.5]

    Random Search:: : 361it [00:07, 39.76it/s, failures=0, objective=-16.5]

    Random Search:: : 362it [00:07, 39.76it/s, failures=0, objective=-16.5]

    Random Search:: : 363it [00:07, 39.76it/s, failures=0, objective=-16.5]

    Random Search:: : 364it [00:07, 39.76it/s, failures=0, objective=-16.5]

    Random Search:: : 365it [00:07, 39.76it/s, failures=0, objective=-16.5]

    Random Search:: : 366it [00:07, 38.12it/s, failures=0, objective=-16.5]

    Random Search:: : 366it [00:07, 38.12it/s, failures=0, objective=-16.5]

    Random Search:: : 367it [00:07, 38.12it/s, failures=0, objective=-16.5]

    Random Search:: : 368it [00:08, 38.12it/s, failures=0, objective=-16.5]

    Random Search:: : 369it [00:08, 38.12it/s, failures=0, objective=-16.5]

    Random Search:: : 370it [00:08, 38.12it/s, failures=0, objective=-16.5]

    Random Search:: : 371it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 371it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 372it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 373it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 374it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 375it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 376it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 377it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 378it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 379it [00:08, 38.43it/s, failures=0, objective=-16.5]

    Random Search:: : 380it [00:08, 46.77it/s, failures=0, objective=-16.5]

    Random Search:: : 380it [00:08, 46.77it/s, failures=0, objective=-16.5]

    Random Search:: : 381it [00:08, 46.77it/s, failures=0, objective=-16.5]

    Random Search:: : 382it [00:08, 46.77it/s, failures=0, objective=-16.5]

    Random Search:: : 383it [00:08, 46.77it/s, failures=0, objective=-16.5]

    Random Search:: : 384it [00:08, 46.77it/s, failures=0, objective=-16.5]

    Random Search:: : 385it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 385it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 386it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 387it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 388it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 389it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 390it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 391it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 392it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 393it [00:08, 42.88it/s, failures=0, objective=-16.5]

    Random Search:: : 394it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 394it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 395it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 396it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 397it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 398it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 399it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 400it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 401it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 402it [00:08, 51.99it/s, failures=0, objective=-16.5]

    Random Search:: : 403it [00:08, 60.68it/s, failures=0, objective=-16.5]

    Random Search:: : 403it [00:08, 60.68it/s, failures=0, objective=-16.5]

    Random Search:: : 404it [00:08, 60.68it/s, failures=0, objective=-16.5]

    Random Search:: : 405it [00:08, 60.68it/s, failures=0, objective=-16.5]

    Random Search:: : 406it [00:08, 60.68it/s, failures=0, objective=-16.5]

    Random Search:: : 407it [00:08, 60.68it/s, failures=0, objective=-16.5]

    Random Search:: : 408it [00:08, 60.68it/s, failures=0, objective=-16.5]

    Random Search:: : 409it [00:08, 60.68it/s, failures=0, objective=-16.5]

    Random Search:: : 410it [00:08, 62.40it/s, failures=0, objective=-16.5]

    Random Search:: : 410it [00:08, 62.40it/s, failures=0, objective=-16.5]

    Random Search:: : 411it [00:08, 62.40it/s, failures=0, objective=-16.5]

    Random Search:: : 412it [00:08, 62.40it/s, failures=0, objective=-16.5]

    Random Search:: : 413it [00:08, 62.40it/s, failures=0, objective=-16.5]

    Random Search:: : 414it [00:08, 62.40it/s, failures=0, objective=-16.5]

    Random Search:: : 415it [00:08, 62.40it/s, failures=0, objective=-16.5]

    Random Search:: : 416it [00:08, 62.40it/s, failures=0, objective=-13.8]

    Random Search:: : 417it [00:08, 59.82it/s, failures=0, objective=-13.8]

    Random Search:: : 417it [00:08, 59.82it/s, failures=0, objective=-13.8]

    Random Search:: : 418it [00:08, 59.82it/s, failures=0, objective=-13.8]

    Random Search:: : 419it [00:08, 59.82it/s, failures=0, objective=-13.8]

    Random Search:: : 420it [00:08, 59.82it/s, failures=0, objective=-13.8]

    Random Search:: : 421it [00:08, 59.82it/s, failures=0, objective=-13.8]

    Random Search:: : 422it [00:08, 59.82it/s, failures=0, objective=-13.8]

    Random Search:: : 423it [00:08, 59.82it/s, failures=0, objective=-13.8]

    Random Search:: : 424it [00:08, 56.11it/s, failures=0, objective=-13.8]

    Random Search:: : 424it [00:08, 56.11it/s, failures=0, objective=-13.8]

    Random Search:: : 425it [00:09, 56.11it/s, failures=0, objective=-13.8]

    Random Search:: : 426it [00:09, 56.11it/s, failures=0, objective=-13.8]

    Random Search:: : 427it [00:09, 56.11it/s, failures=0, objective=-13.8]

    Random Search:: : 428it [00:09, 56.11it/s, failures=0, objective=-13.8]

    Random Search:: : 429it [00:09, 56.11it/s, failures=0, objective=-13.8]

    Random Search:: : 430it [00:09, 47.50it/s, failures=0, objective=-13.8]

    Random Search:: : 430it [00:09, 47.50it/s, failures=0, objective=-13.8]

    Random Search:: : 431it [00:09, 47.50it/s, failures=0, objective=-13.8]

    Random Search:: : 432it [00:09, 47.50it/s, failures=0, objective=-13.8]

    Random Search:: : 433it [00:09, 47.50it/s, failures=0, objective=-13.8]

    Random Search:: : 434it [00:09, 47.50it/s, failures=0, objective=-13.8]

    Random Search:: : 435it [00:09, 47.50it/s, failures=0, objective=-13.8]

    Random Search:: : 436it [00:09, 43.02it/s, failures=0, objective=-13.8]

    Random Search:: : 436it [00:09, 43.02it/s, failures=0, objective=-13.8]

    Random Search:: : 437it [00:09, 43.02it/s, failures=0, objective=-13.8]

    Random Search:: : 438it [00:09, 43.02it/s, failures=0, objective=-13.8]

    Random Search:: : 439it [00:09, 43.02it/s, failures=0, objective=-13.8]

    Random Search:: : 440it [00:09, 43.02it/s, failures=0, objective=-13.8]

    Random Search:: : 441it [00:09, 43.02it/s, failures=0, objective=-13.8]

    Random Search:: : 442it [00:09, 43.02it/s, failures=0, objective=-13.8]

    Random Search:: : 443it [00:09, 46.30it/s, failures=0, objective=-13.8]

    Random Search:: : 443it [00:09, 46.30it/s, failures=0, objective=-13.8]

    Random Search:: : 444it [00:09, 46.30it/s, failures=0, objective=-13.8]

    Random Search:: : 445it [00:09, 46.30it/s, failures=0, objective=-13.8]

    Random Search:: : 446it [00:09, 46.30it/s, failures=0, objective=-13.8]

    Random Search:: : 447it [00:09, 46.30it/s, failures=0, objective=-13.8]

    Random Search:: : 448it [00:09, 46.30it/s, failures=0, objective=-13.8]

    Random Search:: : 449it [00:09, 48.34it/s, failures=0, objective=-13.8]

    Random Search:: : 449it [00:09, 48.34it/s, failures=0, objective=-13.8]

    Random Search:: : 450it [00:09, 48.34it/s, failures=0, objective=-13.8]

    Random Search:: : 451it [00:09, 48.34it/s, failures=0, objective=-13.8]

    Random Search:: : 452it [00:09, 48.34it/s, failures=0, objective=-13.8]

    Random Search:: : 453it [00:09, 48.34it/s, failures=0, objective=-13.8]

    Random Search:: : 454it [00:09, 48.34it/s, failures=0, objective=-13.8]

    Random Search:: : 455it [00:09, 39.78it/s, failures=0, objective=-13.8]

    Random Search:: : 455it [00:09, 39.78it/s, failures=0, objective=-13.8]

    Random Search:: : 456it [00:09, 39.78it/s, failures=0, objective=-13.8]

    Random Search:: : 457it [00:09, 39.78it/s, failures=0, objective=-13.8]

    Random Search:: : 458it [00:09, 39.78it/s, failures=0, objective=-13.8]

    Random Search:: : 459it [00:09, 39.78it/s, failures=0, objective=-13.8]

    Random Search:: : 460it [00:09, 40.18it/s, failures=0, objective=-13.8]

    Random Search:: : 460it [00:09, 40.18it/s, failures=0, objective=-13.8]

    Random Search:: : 461it [00:09, 40.18it/s, failures=0, objective=-13.8]

    Random Search:: : 462it [00:09, 40.18it/s, failures=0, objective=-13.8]

    Random Search:: : 463it [00:09, 40.18it/s, failures=0, objective=-13.8]

    Random Search:: : 464it [00:09, 40.18it/s, failures=0, objective=-13.8]

    Random Search:: : 465it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 465it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 466it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 467it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 468it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 469it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 470it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 471it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 472it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 473it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 474it [00:10, 40.10it/s, failures=0, objective=-13.8]

    Random Search:: : 475it [00:10, 48.84it/s, failures=0, objective=-13.8]

    Random Search:: : 475it [00:10, 48.84it/s, failures=0, objective=-13.8]

    Random Search:: : 476it [00:10, 48.84it/s, failures=0, objective=-13.8]

    Random Search:: : 477it [00:10, 48.84it/s, failures=0, objective=-13.8]

    Random Search:: : 478it [00:10, 48.84it/s, failures=0, objective=-13.8]

    Random Search:: : 479it [00:10, 48.84it/s, failures=0, objective=-13.8]

    Random Search:: : 480it [00:10, 48.84it/s, failures=0, objective=-13.8]

    Random Search:: : 481it [00:10, 48.84it/s, failures=0, objective=-13.8]

    Random Search:: : 482it [00:10, 52.22it/s, failures=0, objective=-13.8]

    Random Search:: : 482it [00:10, 52.22it/s, failures=0, objective=-13.8]

    Random Search:: : 483it [00:10, 52.22it/s, failures=0, objective=-13.8]

    Random Search:: : 484it [00:10, 52.22it/s, failures=0, objective=-13.8]

    Random Search:: : 485it [00:10, 52.22it/s, failures=0, objective=-13.8]

    Random Search:: : 486it [00:10, 52.22it/s, failures=0, objective=-13.8]

    Random Search:: : 487it [00:10, 52.22it/s, failures=0, objective=-13.8]

    Random Search:: : 488it [00:10, 46.56it/s, failures=0, objective=-13.8]

    Random Search:: : 488it [00:10, 46.56it/s, failures=0, objective=-13.8]

    Random Search:: : 489it [00:10, 46.56it/s, failures=0, objective=-13.8]

    Random Search:: : 490it [00:10, 46.56it/s, failures=0, objective=-13.8]

    Random Search:: : 491it [00:10, 46.56it/s, failures=0, objective=-13.8]

    Random Search:: : 492it [00:10, 46.56it/s, failures=0, objective=-13.8]

    Random Search:: : 493it [00:10, 46.56it/s, failures=0, objective=-13.8]

    Random Search:: : 494it [00:10, 46.56it/s, failures=0, objective=-13.8]

    Random Search:: : 495it [00:10, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 495it [00:10, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 496it [00:10, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 497it [00:10, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 498it [00:10, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 499it [00:10, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 500it [00:10, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 501it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 501it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 502it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 503it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 504it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 505it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 506it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 507it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 508it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 509it [00:10, 52.36it/s, failures=0, objective=-13.8]

    Random Search:: : 510it [00:10, 57.92it/s, failures=0, objective=-13.8]

    Random Search:: : 510it [00:10, 57.92it/s, failures=0, objective=-13.8]

    Random Search:: : 511it [00:10, 57.92it/s, failures=0, objective=-13.8]

    Random Search:: : 512it [00:10, 57.92it/s, failures=0, objective=-13.8]

    Random Search:: : 513it [00:10, 57.92it/s, failures=0, objective=-13.8]

    Random Search:: : 514it [00:10, 57.92it/s, failures=0, objective=-13.8]

    Random Search:: : 515it [00:10, 57.92it/s, failures=0, objective=-13.8]

    Random Search:: : 516it [00:10, 57.25it/s, failures=0, objective=-13.8]

    Random Search:: : 516it [00:10, 57.25it/s, failures=0, objective=-13.8]

    Random Search:: : 517it [00:10, 57.25it/s, failures=0, objective=-13.8]

    Random Search:: : 518it [00:10, 57.25it/s, failures=0, objective=-13.8]

    Random Search:: : 519it [00:10, 57.25it/s, failures=0, objective=-13.8]

    Random Search:: : 520it [00:11, 57.25it/s, failures=0, objective=-13.8]

    Random Search:: : 521it [00:11, 57.25it/s, failures=0, objective=-13.8]

    Random Search:: : 522it [00:11, 51.96it/s, failures=0, objective=-13.8]

    Random Search:: : 522it [00:11, 51.96it/s, failures=0, objective=-13.8]

    Random Search:: : 523it [00:11, 51.96it/s, failures=0, objective=-13.8]

    Random Search:: : 524it [00:11, 51.96it/s, failures=0, objective=-13.8]

    Random Search:: : 525it [00:11, 51.96it/s, failures=0, objective=-13.8]

    Random Search:: : 526it [00:11, 51.96it/s, failures=0, objective=-13.8]

    Random Search:: : 527it [00:11, 51.96it/s, failures=0, objective=-13.8]

    Random Search:: : 528it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 528it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 529it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 530it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 531it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 532it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 533it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 534it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 535it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 536it [00:11, 43.39it/s, failures=0, objective=-13.8]

    Random Search:: : 537it [00:11, 52.28it/s, failures=0, objective=-13.8]

    Random Search:: : 537it [00:11, 52.28it/s, failures=0, objective=-13.8]

    Random Search:: : 538it [00:11, 52.28it/s, failures=0, objective=-13.8]

    Random Search:: : 539it [00:11, 52.28it/s, failures=0, objective=-13.8]

    Random Search:: : 540it [00:11, 52.28it/s, failures=0, objective=-13.8]

    Random Search:: : 541it [00:11, 52.28it/s, failures=0, objective=-13.8]

    Random Search:: : 542it [00:11, 52.28it/s, failures=0, objective=-13.8]

    Random Search:: : 543it [00:11, 49.47it/s, failures=0, objective=-13.8]

    Random Search:: : 543it [00:11, 49.47it/s, failures=0, objective=-13.8]

    Random Search:: : 544it [00:11, 49.47it/s, failures=0, objective=-13.8]

    Random Search:: : 545it [00:11, 49.47it/s, failures=0, objective=-13.8]

    Random Search:: : 546it [00:11, 49.47it/s, failures=0, objective=-13.8]

    Random Search:: : 547it [00:11, 49.47it/s, failures=0, objective=-13.8]

    Random Search:: : 548it [00:11, 49.47it/s, failures=0, objective=-13.8]

    Random Search:: : 549it [00:11, 49.47it/s, failures=0, objective=-13.8]

    Random Search:: : 550it [00:11, 49.47it/s, failures=0, objective=-13.8]

    Random Search:: : 551it [00:11, 56.34it/s, failures=0, objective=-13.8]

    Random Search:: : 551it [00:11, 56.34it/s, failures=0, objective=-13.8]

    Random Search:: : 552it [00:11, 56.34it/s, failures=0, objective=-13.8]

    Random Search:: : 553it [00:11, 56.34it/s, failures=0, objective=-13.8]

    Random Search:: : 554it [00:11, 56.34it/s, failures=0, objective=-13.8]

    Random Search:: : 555it [00:11, 56.34it/s, failures=0, objective=-13.8]

    Random Search:: : 556it [00:11, 56.34it/s, failures=0, objective=-13.8]

    Random Search:: : 557it [00:11, 48.25it/s, failures=0, objective=-13.8]

    Random Search:: : 557it [00:11, 48.25it/s, failures=0, objective=-13.8]

    Random Search:: : 558it [00:11, 48.25it/s, failures=0, objective=-13.8]

    Random Search:: : 559it [00:11, 48.25it/s, failures=0, objective=-13.8]

    Random Search:: : 560it [00:11, 48.25it/s, failures=0, objective=-13.8]

    Random Search:: : 561it [00:11, 48.25it/s, failures=0, objective=-13.8]

    Random Search:: : 562it [00:11, 48.25it/s, failures=0, objective=-13.8]

    Random Search:: : 563it [00:11, 48.25it/s, failures=0, objective=-13.8]

    Random Search:: : 564it [00:11, 48.25it/s, failures=0, objective=-13.8]

    Random Search:: : 565it [00:11, 52.58it/s, failures=0, objective=-13.8]

    Random Search:: : 565it [00:11, 52.58it/s, failures=0, objective=-13.8]

    Random Search:: : 566it [00:11, 52.58it/s, failures=0, objective=-13.8]

    Random Search:: : 567it [00:11, 52.58it/s, failures=0, objective=-13.8]

    Random Search:: : 568it [00:11, 52.58it/s, failures=0, objective=-13.8]

    Random Search:: : 569it [00:11, 52.58it/s, failures=0, objective=-13.8]

    Random Search:: : 570it [00:11, 52.58it/s, failures=0, objective=-13.8]

    Random Search:: : 571it [00:12, 53.09it/s, failures=0, objective=-13.8]

    Random Search:: : 571it [00:12, 53.09it/s, failures=0, objective=-13.8]

    Random Search:: : 572it [00:12, 53.09it/s, failures=0, objective=-13.8]

    Random Search:: : 573it [00:12, 53.09it/s, failures=0, objective=-13.8]

    Random Search:: : 574it [00:12, 53.09it/s, failures=0, objective=-13.8]

    Random Search:: : 575it [00:12, 53.09it/s, failures=0, objective=-13.8]

    Random Search:: : 576it [00:12, 53.09it/s, failures=0, objective=-13.8]

    Random Search:: : 577it [00:12, 54.29it/s, failures=0, objective=-13.8]

    Random Search:: : 577it [00:12, 54.29it/s, failures=0, objective=-13.8]

    Random Search:: : 578it [00:12, 54.29it/s, failures=0, objective=-13.8]

    Random Search:: : 579it [00:12, 54.29it/s, failures=0, objective=-13.8]

    Random Search:: : 580it [00:12, 54.29it/s, failures=0, objective=-13.8]

    Random Search:: : 581it [00:12, 54.29it/s, failures=0, objective=-13.8]

    Random Search:: : 582it [00:12, 54.29it/s, failures=0, objective=-13.8]

    Random Search:: : 583it [00:12, 51.87it/s, failures=0, objective=-13.8]

    Random Search:: : 583it [00:12, 51.87it/s, failures=0, objective=-13.8]

    Random Search:: : 584it [00:12, 51.87it/s, failures=0, objective=-13.8]

    Random Search:: : 585it [00:12, 51.87it/s, failures=0, objective=-13.8]

    Random Search:: : 586it [00:12, 51.87it/s, failures=0, objective=-13.8]

    Random Search:: : 587it [00:12, 51.87it/s, failures=0, objective=-13.8]

    Random Search:: : 588it [00:12, 51.87it/s, failures=0, objective=-13.8]

    Random Search:: : 589it [00:12, 51.87it/s, failures=0, objective=-13.8]

    Random Search:: : 590it [00:12, 55.73it/s, failures=0, objective=-13.8]

    Random Search:: : 590it [00:12, 55.73it/s, failures=0, objective=-13.8]

    Random Search:: : 591it [00:12, 55.73it/s, failures=0, objective=-13.8]

    Random Search:: : 592it [00:12, 55.73it/s, failures=0, objective=-13.8]

    Random Search:: : 593it [00:12, 55.73it/s, failures=0, objective=-13.8]

    Random Search:: : 594it [00:12, 55.73it/s, failures=0, objective=-13.8]

    Random Search:: : 595it [00:12, 55.73it/s, failures=0, objective=-13.8]

    Random Search:: : 596it [00:12, 51.77it/s, failures=0, objective=-13.8]

    Random Search:: : 596it [00:12, 51.77it/s, failures=0, objective=-13.8]

    Random Search:: : 597it [00:12, 51.77it/s, failures=0, objective=-13.8]

    Random Search:: : 598it [00:12, 51.77it/s, failures=0, objective=-13.8]

    Random Search:: : 599it [00:12, 51.77it/s, failures=0, objective=-13.8]

    Random Search:: : 600it [00:12, 51.77it/s, failures=0, objective=-13.8]

    Random Search:: : 601it [00:12, 51.77it/s, failures=0, objective=-13.8]

    Random Search:: : 602it [00:12, 50.60it/s, failures=0, objective=-13.8]

    Random Search:: : 602it [00:12, 50.60it/s, failures=0, objective=-13.8]

    Random Search:: : 603it [00:12, 50.60it/s, failures=0, objective=-13.8]

    Random Search:: : 604it [00:12, 50.60it/s, failures=0, objective=-13.8]

    Random Search:: : 605it [00:12, 50.60it/s, failures=0, objective=-13.8]

    Random Search:: : 606it [00:12, 50.60it/s, failures=0, objective=-13.8]

    Random Search:: : 607it [00:12, 50.60it/s, failures=0, objective=-13.8]

    Random Search:: : 608it [00:12, 48.16it/s, failures=0, objective=-13.8]

    Random Search:: : 608it [00:12, 48.16it/s, failures=0, objective=-13.8]

    Random Search:: : 609it [00:12, 48.16it/s, failures=0, objective=-13.8]

    Random Search:: : 610it [00:12, 48.16it/s, failures=0, objective=-13.8]

    Random Search:: : 611it [00:12, 48.16it/s, failures=0, objective=-13.8]

    Random Search:: : 612it [00:12, 48.16it/s, failures=0, objective=-13.8]

    Random Search:: : 613it [00:12, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 613it [00:12, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 614it [00:12, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 615it [00:12, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 616it [00:12, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 617it [00:13, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 618it [00:13, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 619it [00:13, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 620it [00:13, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 621it [00:13, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 622it [00:13, 35.89it/s, failures=0, objective=-13.8]

    Random Search:: : 623it [00:13, 48.42it/s, failures=0, objective=-13.8]

    Random Search:: : 623it [00:13, 48.42it/s, failures=0, objective=-13.8]

    Random Search:: : 624it [00:13, 48.42it/s, failures=0, objective=-13.8]

    Random Search:: : 625it [00:13, 48.42it/s, failures=0, objective=-13.8]

    Random Search:: : 626it [00:13, 48.42it/s, failures=0, objective=-13.8]

    Random Search:: : 627it [00:13, 48.42it/s, failures=0, objective=-13.8]

    Random Search:: : 628it [00:13, 48.42it/s, failures=0, objective=-13.8]

    Random Search:: : 629it [00:13, 45.73it/s, failures=0, objective=-13.8]

    Random Search:: : 629it [00:13, 45.73it/s, failures=0, objective=-13.8]

    Random Search:: : 630it [00:13, 45.73it/s, failures=0, objective=-13.8]

    Random Search:: : 631it [00:13, 45.73it/s, failures=0, objective=-13.8]

    Random Search:: : 632it [00:13, 45.73it/s, failures=0, objective=-13.8]

    Random Search:: : 633it [00:13, 45.73it/s, failures=0, objective=-13.8]

    Random Search:: : 634it [00:13, 45.73it/s, failures=0, objective=-13.8]

    Random Search:: : 635it [00:13, 40.89it/s, failures=0, objective=-13.8]

    Random Search:: : 635it [00:13, 40.89it/s, failures=0, objective=-13.8]

    Random Search:: : 636it [00:13, 40.89it/s, failures=0, objective=-13.8]

    Random Search:: : 637it [00:13, 40.89it/s, failures=0, objective=-13.8]

    Random Search:: : 638it [00:13, 40.89it/s, failures=0, objective=-13.8]

    Random Search:: : 639it [00:13, 40.89it/s, failures=0, objective=-13.8]

    Random Search:: : 640it [00:13, 40.89it/s, failures=0, objective=-13.8]

    Random Search:: : 641it [00:13, 44.67it/s, failures=0, objective=-13.8]

    Random Search:: : 641it [00:13, 44.67it/s, failures=0, objective=-13.8]

    Random Search:: : 642it [00:13, 44.67it/s, failures=0, objective=-13.8]

    Random Search:: : 643it [00:13, 44.67it/s, failures=0, objective=-13.8]

    Random Search:: : 644it [00:13, 44.67it/s, failures=0, objective=-13.8]

    Random Search:: : 645it [00:13, 44.67it/s, failures=0, objective=-13.8]

    Random Search:: : 646it [00:13, 44.67it/s, failures=0, objective=-13.8]

    Random Search:: : 647it [00:13, 44.67it/s, failures=0, objective=-13.8]

    Random Search:: : 648it [00:13, 44.67it/s, failures=0, objective=-13.8]

    Random Search:: : 649it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 649it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 650it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 651it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 652it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 653it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 654it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 655it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 656it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 657it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 658it [00:13, 49.12it/s, failures=0, objective=-13.8]

    Random Search:: : 659it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 659it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 660it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 661it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 662it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 663it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 664it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 665it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 666it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 667it [00:13, 59.64it/s, failures=0, objective=-13.8]

    Random Search:: : 668it [00:13, 66.18it/s, failures=0, objective=-13.8]

    Random Search:: : 668it [00:13, 66.18it/s, failures=0, objective=-13.8]

    Random Search:: : 669it [00:13, 66.18it/s, failures=0, objective=-13.8]

    Random Search:: : 670it [00:13, 66.18it/s, failures=0, objective=-13.8]

    Random Search:: : 671it [00:13, 66.18it/s, failures=0, objective=-13.8]

    Random Search:: : 672it [00:13, 66.18it/s, failures=0, objective=-13.8]

    Random Search:: : 673it [00:14, 66.18it/s, failures=0, objective=-13.8]

    Random Search:: : 674it [00:14, 66.18it/s, failures=0, objective=-13.8]

    Random Search:: : 675it [00:14, 66.18it/s, failures=0, objective=-13.8]

    Random Search:: : 676it [00:14, 62.54it/s, failures=0, objective=-13.8]

    Random Search:: : 676it [00:14, 62.54it/s, failures=0, objective=-13.8]

    Random Search:: : 677it [00:14, 62.54it/s, failures=0, objective=-13.8]

    Random Search:: : 678it [00:14, 62.54it/s, failures=0, objective=-13.8]

    Random Search:: : 679it [00:14, 62.54it/s, failures=0, objective=-13.8]

    Random Search:: : 680it [00:14, 62.54it/s, failures=0, objective=-13.8]

    Random Search:: : 681it [00:14, 62.54it/s, failures=0, objective=-13.8]

    Random Search:: : 682it [00:14, 62.54it/s, failures=0, objective=-13.8]

    Random Search:: : 683it [00:14, 46.92it/s, failures=0, objective=-13.8]

    Random Search:: : 683it [00:14, 46.92it/s, failures=0, objective=-13.8]

    Random Search:: : 684it [00:14, 46.92it/s, failures=0, objective=-13.8]

    Random Search:: : 685it [00:14, 46.92it/s, failures=0, objective=-13.8]

    Random Search:: : 686it [00:14, 46.92it/s, failures=0, objective=-13.8]

    Random Search:: : 687it [00:14, 46.92it/s, failures=0, objective=-13.8]

    Random Search:: : 688it [00:14, 46.92it/s, failures=0, objective=-13.8]

    Random Search:: : 689it [00:14, 46.92it/s, failures=0, objective=-13.8]

    Random Search:: : 690it [00:14, 49.98it/s, failures=0, objective=-13.8]

    Random Search:: : 690it [00:14, 49.98it/s, failures=0, objective=-13.8]

    Random Search:: : 691it [00:14, 49.98it/s, failures=0, objective=-13.8]

    Random Search:: : 692it [00:14, 49.98it/s, failures=0, objective=-13.8]

    Random Search:: : 693it [00:14, 49.98it/s, failures=0, objective=-13.8]

    Random Search:: : 694it [00:14, 49.98it/s, failures=0, objective=-13.8]

    Random Search:: : 695it [00:14, 49.98it/s, failures=0, objective=-13.8]

    Random Search:: : 696it [00:14, 49.98it/s, failures=0, objective=-13.8]

    Random Search:: : 697it [00:14, 51.94it/s, failures=0, objective=-13.8]

    Random Search:: : 697it [00:14, 51.94it/s, failures=0, objective=-13.8]

    Random Search:: : 698it [00:14, 51.94it/s, failures=0, objective=-13.8]

    Random Search:: : 699it [00:14, 51.94it/s, failures=0, objective=-13.8]

    Random Search:: : 700it [00:14, 51.94it/s, failures=0, objective=-13.8]

    Random Search:: : 701it [00:14, 51.94it/s, failures=0, objective=-13.8]

    Random Search:: : 702it [00:14, 51.94it/s, failures=0, objective=-13.8]

    Random Search:: : 703it [00:14, 37.90it/s, failures=0, objective=-13.8]

    Random Search:: : 703it [00:14, 37.90it/s, failures=0, objective=-13.8]

    Random Search:: : 704it [00:14, 37.90it/s, failures=0, objective=-13.8]

    Random Search:: : 705it [00:14, 37.90it/s, failures=0, objective=-13.8]

    Random Search:: : 706it [00:14, 37.90it/s, failures=0, objective=-13.8]

    Random Search:: : 707it [00:14, 37.90it/s, failures=0, objective=-13.8]

    Random Search:: : 708it [00:14, 37.90it/s, failures=0, objective=-13.8]

    Random Search:: : 709it [00:14, 37.90it/s, failures=0, objective=-13.8]

    Random Search:: : 710it [00:14, 37.90it/s, failures=0, objective=-13.8]

    Random Search:: : 711it [00:14, 43.70it/s, failures=0, objective=-13.8]

    Random Search:: : 711it [00:14, 43.70it/s, failures=0, objective=-13.8]

    Random Search:: : 712it [00:14, 43.70it/s, failures=0, objective=-13.8]

    Random Search:: : 713it [00:14, 43.70it/s, failures=0, objective=-13.8]

    Random Search:: : 714it [00:14, 43.70it/s, failures=0, objective=-13.8]

    Random Search:: : 715it [00:15, 43.70it/s, failures=0, objective=-13.8]

    Random Search:: : 716it [00:15, 43.70it/s, failures=0, objective=-13.8]

    Random Search:: : 717it [00:15, 43.70it/s, failures=0, objective=-13.8]

    Random Search:: : 718it [00:15, 48.93it/s, failures=0, objective=-13.8]

    Random Search:: : 718it [00:15, 48.93it/s, failures=0, objective=-13.8]

    Random Search:: : 719it [00:15, 48.93it/s, failures=0, objective=-13.8]

    Random Search:: : 720it [00:15, 48.93it/s, failures=0, objective=-13.8]

    Random Search:: : 721it [00:15, 48.93it/s, failures=0, objective=-13.8]

    Random Search:: : 722it [00:15, 48.93it/s, failures=0, objective=-13.8]

    Random Search:: : 723it [00:15, 48.93it/s, failures=0, objective=-13.8]

    Random Search:: : 724it [00:15, 48.93it/s, failures=0, objective=-13.8]

    Random Search:: : 725it [00:15, 53.23it/s, failures=0, objective=-13.8]

    Random Search:: : 725it [00:15, 53.23it/s, failures=0, objective=-13.8]

    Random Search:: : 726it [00:15, 53.23it/s, failures=0, objective=-13.8]

    Random Search:: : 727it [00:15, 53.23it/s, failures=0, objective=-13.8]

    Random Search:: : 728it [00:15, 53.23it/s, failures=0, objective=-13.8]

    Random Search:: : 729it [00:15, 53.23it/s, failures=0, objective=-13.8]

    Random Search:: : 730it [00:15, 53.23it/s, failures=0, objective=-13.8]

    Random Search:: : 731it [00:15, 54.76it/s, failures=0, objective=-13.8]

    Random Search:: : 731it [00:15, 54.76it/s, failures=0, objective=-13.8]

    Random Search:: : 732it [00:15, 54.76it/s, failures=0, objective=-13.8]

    Random Search:: : 733it [00:15, 54.76it/s, failures=0, objective=-13.8]

    Random Search:: : 734it [00:15, 54.76it/s, failures=0, objective=-13.8]

    Random Search:: : 735it [00:15, 54.76it/s, failures=0, objective=-13.8]

    Random Search:: : 736it [00:15, 54.76it/s, failures=0, objective=-13.8]

    Random Search:: : 737it [00:15, 54.64it/s, failures=0, objective=-13.8]

    Random Search:: : 737it [00:15, 54.64it/s, failures=0, objective=-13.8]

    Random Search:: : 738it [00:15, 54.64it/s, failures=0, objective=-13.8]

    Random Search:: : 739it [00:15, 54.64it/s, failures=0, objective=-13.8]

    Random Search:: : 740it [00:15, 54.64it/s, failures=0, objective=-13.8]

    Random Search:: : 741it [00:15, 54.64it/s, failures=0, objective=-13.8]

    Random Search:: : 742it [00:15, 54.64it/s, failures=0, objective=-13.8]

    Random Search:: : 743it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 743it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 744it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 745it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 746it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 747it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 748it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 749it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 750it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 751it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 752it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 753it [00:15, 52.21it/s, failures=0, objective=-13.8]

    Random Search:: : 754it [00:15, 66.73it/s, failures=0, objective=-13.8]

    Random Search:: : 754it [00:15, 66.73it/s, failures=0, objective=-13.8]

    Random Search:: : 755it [00:15, 66.73it/s, failures=0, objective=-13.8]

    Random Search:: : 756it [00:15, 66.73it/s, failures=0, objective=-13.8]

    Random Search:: : 757it [00:15, 66.73it/s, failures=0, objective=-13.8]

    Random Search:: : 758it [00:15, 66.73it/s, failures=0, objective=-13.8]

    Random Search:: : 759it [00:15, 66.73it/s, failures=0, objective=-13.8]

    Random Search:: : 760it [00:15, 66.73it/s, failures=0, objective=-13.8]

    Random Search:: : 761it [00:15, 66.73it/s, failures=0, objective=-13.8]

    Random Search:: : 762it [00:15, 61.26it/s, failures=0, objective=-13.8]

    Random Search:: : 762it [00:15, 61.26it/s, failures=0, objective=-13.8]

    Random Search:: : 763it [00:15, 61.26it/s, failures=0, objective=-13.8]

    Random Search:: : 764it [00:15, 61.26it/s, failures=0, objective=-13.8]

    Random Search:: : 765it [00:15, 61.26it/s, failures=0, objective=-13.8]

    Random Search:: : 766it [00:15, 61.26it/s, failures=0, objective=-13.8]

    Random Search:: : 767it [00:15, 61.26it/s, failures=0, objective=-13.8]

    Random Search:: : 768it [00:15, 61.26it/s, failures=0, objective=-13.8]

    Random Search:: : 769it [00:15, 53.51it/s, failures=0, objective=-13.8]

    Random Search:: : 769it [00:15, 53.51it/s, failures=0, objective=-13.8]

    Random Search:: : 770it [00:15, 53.51it/s, failures=0, objective=-13.8]

    Random Search:: : 771it [00:15, 53.51it/s, failures=0, objective=-13.8]

    Random Search:: : 772it [00:15, 53.51it/s, failures=0, objective=-13.8]

    Random Search:: : 773it [00:15, 53.51it/s, failures=0, objective=-13.8]

    Random Search:: : 774it [00:16, 53.51it/s, failures=0, objective=-13.8]

    Random Search:: : 775it [00:16, 52.09it/s, failures=0, objective=-13.8]

    Random Search:: : 775it [00:16, 52.09it/s, failures=0, objective=-13.8]

    Random Search:: : 776it [00:16, 52.09it/s, failures=0, objective=-13.8]

    Random Search:: : 777it [00:16, 52.09it/s, failures=0, objective=-13.8]

    Random Search:: : 778it [00:16, 52.09it/s, failures=0, objective=-13.8]

    Random Search:: : 779it [00:16, 52.09it/s, failures=0, objective=-13.8]

    Random Search:: : 780it [00:16, 52.09it/s, failures=0, objective=-13.8]

    Random Search:: : 781it [00:16, 47.18it/s, failures=0, objective=-13.8]

    Random Search:: : 781it [00:16, 47.18it/s, failures=0, objective=-13.8]

    Random Search:: : 782it [00:16, 47.18it/s, failures=0, objective=-13.8]

    Random Search:: : 783it [00:16, 47.18it/s, failures=0, objective=-13.8]

    Random Search:: : 784it [00:16, 47.18it/s, failures=0, objective=-13.8]

    Random Search:: : 785it [00:16, 47.18it/s, failures=0, objective=-13.8]

    Random Search:: : 786it [00:16, 34.02it/s, failures=0, objective=-13.8]

    Random Search:: : 786it [00:16, 34.02it/s, failures=0, objective=-13.8]

    Random Search:: : 787it [00:16, 34.02it/s, failures=0, objective=-13.8]

    Random Search:: : 788it [00:16, 34.02it/s, failures=0, objective=-13.8]

    Random Search:: : 789it [00:16, 34.02it/s, failures=0, objective=-13.8]

    Random Search:: : 790it [00:16, 34.02it/s, failures=0, objective=-13.8]

    Random Search:: : 791it [00:16, 34.02it/s, failures=0, objective=-13.8]

    Random Search:: : 792it [00:16, 38.78it/s, failures=0, objective=-13.8]

    Random Search:: : 792it [00:16, 38.78it/s, failures=0, objective=-13.8]

    Random Search:: : 793it [00:16, 38.78it/s, failures=0, objective=-13.8]

    Random Search:: : 794it [00:16, 38.78it/s, failures=0, objective=-13.8]

    Random Search:: : 795it [00:16, 38.78it/s, failures=0, objective=-13.8]

    Random Search:: : 796it [00:16, 38.78it/s, failures=0, objective=-13.8]

    Random Search:: : 797it [00:16, 38.78it/s, failures=0, objective=-13.8]

    Random Search:: : 798it [00:16, 38.78it/s, failures=0, objective=-13.8]

    Random Search:: : 799it [00:16, 45.22it/s, failures=0, objective=-13.8]

    Random Search:: : 799it [00:16, 45.22it/s, failures=0, objective=-13.8]

    Random Search:: : 800it [00:16, 45.22it/s, failures=0, objective=-13.8]

    Random Search:: : 801it [00:16, 45.22it/s, failures=0, objective=-13.8]
    Parallel BO:: : 2553it [01:19, 10.55it/s, failures=0, objective=-0.388]

    Random Search:: : 802it [00:16, 45.22it/s, failures=0, objective=-13.8]

    Random Search:: : 803it [00:16, 45.22it/s, failures=0, objective=-13.8]

    Random Search:: : 804it [00:16, 45.22it/s, failures=0, objective=-13.8]

    Random Search:: : 805it [00:16, 45.86it/s, failures=0, objective=-13.8]

    Random Search:: : 805it [00:16, 45.86it/s, failures=0, objective=-13.8]

    Random Search:: : 806it [00:16, 45.86it/s, failures=0, objective=-13.8]

    Random Search:: : 807it [00:16, 45.86it/s, failures=0, objective=-13.8]

    Random Search:: : 808it [00:16, 45.86it/s, failures=0, objective=-13.8]

    Random Search:: : 809it [00:16, 45.86it/s, failures=0, objective=-13.8]

    Random Search:: : 810it [00:16, 45.86it/s, failures=0, objective=-13.8]

    Random Search:: : 811it [00:16, 45.86it/s, failures=0, objective=-13.8]

    Random Search:: : 812it [00:16, 51.58it/s, failures=0, objective=-13.8]

    Random Search:: : 812it [00:16, 51.58it/s, failures=0, objective=-13.8]

    Random Search:: : 813it [00:16, 51.58it/s, failures=0, objective=-13.8]

    Random Search:: : 814it [00:16, 51.58it/s, failures=0, objective=-13.8]

    Random Search:: : 815it [00:16, 51.58it/s, failures=0, objective=-13.8]

    Random Search:: : 816it [00:16, 51.58it/s, failures=0, objective=-13.8]

    Random Search:: : 817it [00:16, 51.58it/s, failures=0, objective=-13.8]

    Random Search:: : 818it [00:17, 51.14it/s, failures=0, objective=-13.8]

    Random Search:: : 818it [00:17, 51.14it/s, failures=0, objective=-13.8]

    Random Search:: : 819it [00:17, 51.14it/s, failures=0, objective=-13.8]

    Random Search:: : 820it [00:17, 51.14it/s, failures=0, objective=-13.8]

    Random Search:: : 821it [00:17, 51.14it/s, failures=0, objective=-13.8]

    Random Search:: : 822it [00:17, 51.14it/s, failures=0, objective=-13.8]

    Random Search:: : 823it [00:17, 51.14it/s, failures=0, objective=-13.8]

    Random Search:: : 824it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 824it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 825it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 826it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 827it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 828it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 829it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 830it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 831it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 832it [00:17, 38.75it/s, failures=0, objective=-13.8]

    Random Search:: : 833it [00:17, 47.95it/s, failures=0, objective=-13.8]

    Random Search:: : 833it [00:17, 47.95it/s, failures=0, objective=-13.8]

    Random Search:: : 834it [00:17, 47.95it/s, failures=0, objective=-13.8]

    Random Search:: : 835it [00:17, 47.95it/s, failures=0, objective=-13.8]

    Random Search:: : 836it [00:17, 47.95it/s, failures=0, objective=-13.8]

    Random Search:: : 837it [00:17, 47.95it/s, failures=0, objective=-13.8]

    Random Search:: : 838it [00:17, 47.95it/s, failures=0, objective=-13.8]

    Random Search:: : 839it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 839it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 840it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 841it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 842it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 843it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 844it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 845it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 846it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 847it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 848it [00:17, 50.35it/s, failures=0, objective=-13.8]

    Random Search:: : 849it [00:17, 60.04it/s, failures=0, objective=-13.8]

    Random Search:: : 849it [00:17, 60.04it/s, failures=0, objective=-13.8]

    Random Search:: : 850it [00:17, 60.04it/s, failures=0, objective=-13.8]

    Random Search:: : 851it [00:17, 60.04it/s, failures=0, objective=-13.8]

    Random Search:: : 852it [00:17, 60.04it/s, failures=0, objective=-13.8]

    Random Search:: : 853it [00:17, 60.04it/s, failures=0, objective=-13.8]

    Random Search:: : 854it [00:17, 60.04it/s, failures=0, objective=-13.8]

    Random Search:: : 855it [00:17, 60.04it/s, failures=0, objective=-13.8]

    Random Search:: : 856it [00:17, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 856it [00:17, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 857it [00:17, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 858it [00:17, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 859it [00:17, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 860it [00:17, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 861it [00:17, 50.30it/s, failures=0, objective=-13.8]

    Random Search:: : 862it [00:17, 52.43it/s, failures=0, objective=-13.8]

    Random Search:: : 862it [00:17, 52.43it/s, failures=0, objective=-13.8]

    Random Search:: : 863it [00:17, 52.43it/s, failures=0, objective=-13.8]

    Random Search:: : 864it [00:17, 52.43it/s, failures=0, objective=-13.8]

    Random Search:: : 865it [00:17, 52.43it/s, failures=0, objective=-13.8]

    Random Search:: : 866it [00:17, 52.43it/s, failures=0, objective=-13.8]

    Random Search:: : 867it [00:17, 52.43it/s, failures=0, objective=-13.8]

    Random Search:: : 868it [00:18, 51.19it/s, failures=0, objective=-13.8]

    Random Search:: : 868it [00:18, 51.19it/s, failures=0, objective=-13.8]

    Random Search:: : 869it [00:18, 51.19it/s, failures=0, objective=-13.8]

    Random Search:: : 870it [00:18, 51.19it/s, failures=0, objective=-13.8]

    Random Search:: : 871it [00:18, 51.19it/s, failures=0, objective=-13.8]

    Random Search:: : 872it [00:18, 51.19it/s, failures=0, objective=-13.8]

    Random Search:: : 873it [00:18, 51.19it/s, failures=0, objective=-13.8]

    Random Search:: : 874it [00:18, 52.05it/s, failures=0, objective=-13.8]

    Random Search:: : 874it [00:18, 52.05it/s, failures=0, objective=-13.8]

    Random Search:: : 875it [00:18, 52.05it/s, failures=0, objective=-13.8]

    Random Search:: : 876it [00:18, 52.05it/s, failures=0, objective=-13.8]

    Random Search:: : 877it [00:18, 52.05it/s, failures=0, objective=-13.8]

    Random Search:: : 878it [00:18, 52.05it/s, failures=0, objective=-13.8]

    Random Search:: : 879it [00:18, 52.05it/s, failures=0, objective=-12.7]

    Random Search:: : 880it [00:18, 52.05it/s, failures=0, objective=-12.7]

    Random Search:: : 881it [00:18, 54.66it/s, failures=0, objective=-12.7]

    Random Search:: : 881it [00:18, 54.66it/s, failures=0, objective=-12.7]

    Random Search:: : 882it [00:18, 54.66it/s, failures=0, objective=-11.4]

    Random Search:: : 883it [00:18, 54.66it/s, failures=0, objective=-11.4]

    Random Search:: : 884it [00:18, 54.66it/s, failures=0, objective=-11.4]

    Random Search:: : 885it [00:18, 54.66it/s, failures=0, objective=-11.4]

    Random Search:: : 886it [00:18, 54.66it/s, failures=0, objective=-11.4]

    Random Search:: : 887it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 887it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 888it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 889it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 890it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 891it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 892it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 893it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 894it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 895it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 896it [00:18, 52.10it/s, failures=0, objective=-11.4]

    Random Search:: : 897it [00:18, 60.91it/s, failures=0, objective=-11.4]

    Random Search:: : 897it [00:18, 60.91it/s, failures=0, objective=-11.4]

    Random Search:: : 898it [00:18, 60.91it/s, failures=0, objective=-11.4]

    Random Search:: : 899it [00:18, 60.91it/s, failures=0, objective=-11.4]

    Random Search:: : 900it [00:18, 60.91it/s, failures=0, objective=-11.4]

    Random Search:: : 901it [00:18, 60.91it/s, failures=0, objective=-11.4]

    Random Search:: : 902it [00:18, 60.91it/s, failures=0, objective=-11.4]

    Random Search:: : 903it [00:18, 60.91it/s, failures=0, objective=-11.4]

    Random Search:: : 904it [00:18, 47.72it/s, failures=0, objective=-11.4]

    Random Search:: : 904it [00:18, 47.72it/s, failures=0, objective=-11.4]

    Random Search:: : 905it [00:18, 47.72it/s, failures=0, objective=-11.4]

    Random Search:: : 906it [00:18, 47.72it/s, failures=0, objective=-11.4]

    Random Search:: : 907it [00:18, 47.72it/s, failures=0, objective=-11.4]

    Random Search:: : 908it [00:18, 47.72it/s, failures=0, objective=-11.4]

    Random Search:: : 909it [00:18, 47.72it/s, failures=0, objective=-11.4]

    Random Search:: : 910it [00:18, 47.49it/s, failures=0, objective=-11.4]

    Random Search:: : 910it [00:18, 47.49it/s, failures=0, objective=-11.4]

    Random Search:: : 911it [00:18, 47.49it/s, failures=0, objective=-11.4]

    Random Search:: : 912it [00:18, 47.49it/s, failures=0, objective=-11.4]

    Random Search:: : 913it [00:18, 47.49it/s, failures=0, objective=-11.4]

    Random Search:: : 914it [00:18, 47.49it/s, failures=0, objective=-11.4]

    Random Search:: : 915it [00:18, 47.49it/s, failures=0, objective=-11.4]

    Random Search:: : 916it [00:18, 49.49it/s, failures=0, objective=-11.4]

    Random Search:: : 916it [00:18, 49.49it/s, failures=0, objective=-11.4]

    Random Search:: : 917it [00:18, 49.49it/s, failures=0, objective=-11.4]

    Random Search:: : 918it [00:19, 49.49it/s, failures=0, objective=-11.4]

    Random Search:: : 919it [00:19, 49.49it/s, failures=0, objective=-11.4]

    Random Search:: : 920it [00:19, 49.49it/s, failures=0, objective=-11.4]

    Random Search:: : 921it [00:19, 49.49it/s, failures=0, objective=-11.4]

    Random Search:: : 922it [00:19, 41.14it/s, failures=0, objective=-11.4]

    Random Search:: : 922it [00:19, 41.14it/s, failures=0, objective=-11.4]

    Random Search:: : 923it [00:19, 41.14it/s, failures=0, objective=-11.4]

    Random Search:: : 924it [00:19, 41.14it/s, failures=0, objective=-11.4]

    Random Search:: : 925it [00:19, 41.14it/s, failures=0, objective=-11.4]

    Random Search:: : 926it [00:19, 41.14it/s, failures=0, objective=-11.4]

    Random Search:: : 927it [00:19, 41.14it/s, failures=0, objective=-11.4]

    Random Search:: : 928it [00:19, 41.59it/s, failures=0, objective=-11.4]

    Random Search:: : 928it [00:19, 41.59it/s, failures=0, objective=-11.4]

    Random Search:: : 929it [00:19, 41.59it/s, failures=0, objective=-11.4]

    Random Search:: : 930it [00:19, 41.59it/s, failures=0, objective=-11.4]

    Random Search:: : 931it [00:19, 41.59it/s, failures=0, objective=-11.4]

    Random Search:: : 932it [00:19, 41.59it/s, failures=0, objective=-11.4]

    Random Search:: : 933it [00:19, 41.59it/s, failures=0, objective=-11.4]

    Random Search:: : 934it [00:19, 41.59it/s, failures=0, objective=-11.4]

    Random Search:: : 935it [00:19, 46.47it/s, failures=0, objective=-11.4]

    Random Search:: : 935it [00:19, 46.47it/s, failures=0, objective=-11.4]

    Random Search:: : 936it [00:19, 46.47it/s, failures=0, objective=-11.4]

    Random Search:: : 937it [00:19, 46.47it/s, failures=0, objective=-11.4]

    Random Search:: : 938it [00:19, 46.47it/s, failures=0, objective=-11.4]

    Random Search:: : 939it [00:19, 46.47it/s, failures=0, objective=-11.4]

    Random Search:: : 940it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 940it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 941it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 942it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 943it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 944it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 945it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 946it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 947it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 948it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 949it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 950it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 951it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 952it [00:19, 39.39it/s, failures=0, objective=-11.4]

    Random Search:: : 953it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 953it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 954it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 955it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 956it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 957it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 958it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 959it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 960it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 961it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 962it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 963it [00:19, 56.76it/s, failures=0, objective=-11.4]

    Random Search:: : 964it [00:19, 68.57it/s, failures=0, objective=-11.4]

    Random Search:: : 964it [00:19, 68.57it/s, failures=0, objective=-11.4]

    Random Search:: : 965it [00:19, 68.57it/s, failures=0, objective=-11.4]

    Random Search:: : 966it [00:19, 68.57it/s, failures=0, objective=-11.4]

    Random Search:: : 967it [00:19, 68.57it/s, failures=0, objective=-11.4]

    Random Search:: : 968it [00:19, 68.57it/s, failures=0, objective=-11.4]

    Random Search:: : 969it [00:20, 68.57it/s, failures=0, objective=-11.4]

    Random Search:: : 970it [00:20, 68.57it/s, failures=0, objective=-11.4]

    Random Search:: : 971it [00:20, 68.57it/s, failures=0, objective=-11.4]

    Random Search:: : 972it [00:20, 46.61it/s, failures=0, objective=-11.4]

    Random Search:: : 972it [00:20, 46.61it/s, failures=0, objective=-11.4]

    Random Search:: : 973it [00:20, 46.61it/s, failures=0, objective=-11.4]

    Random Search:: : 974it [00:20, 46.61it/s, failures=0, objective=-11.4]

    Random Search:: : 975it [00:20, 46.61it/s, failures=0, objective=-11.4]

    Random Search:: : 976it [00:20, 46.61it/s, failures=0, objective=-11.4]

    Random Search:: : 977it [00:20, 46.61it/s, failures=0, objective=-11.4]

    Random Search:: : 978it [00:20, 46.61it/s, failures=0, objective=-11.4]

    Random Search:: : 979it [00:20, 46.61it/s, failures=0, objective=-11.4]

    Random Search:: : 980it [00:20, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 980it [00:20, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 981it [00:20, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 982it [00:20, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 983it [00:20, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 984it [00:20, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 985it [00:20, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 986it [00:20, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 987it [00:20, 49.26it/s, failures=0, objective=-11.4]

    Random Search:: : 987it [00:20, 49.26it/s, failures=0, objective=-11.4]

    Random Search:: : 988it [00:20, 49.26it/s, failures=0, objective=-11.4]

    Random Search:: : 989it [00:20, 49.26it/s, failures=0, objective=-11.4]

    Random Search:: : 990it [00:20, 49.26it/s, failures=0, objective=-11.4]

    Random Search:: : 991it [00:20, 49.26it/s, failures=0, objective=-11.4]

    Random Search:: : 992it [00:20, 49.26it/s, failures=0, objective=-11.4]

    Random Search:: : 993it [00:20, 49.26it/s, failures=0, objective=-11.4]

    Random Search:: : 994it [00:20, 49.26it/s, failures=0, objective=-11.4]

    Random Search:: : 995it [00:20, 53.02it/s, failures=0, objective=-11.4]

    Random Search:: : 995it [00:20, 53.02it/s, failures=0, objective=-11.4]

    Random Search:: : 996it [00:20, 53.02it/s, failures=0, objective=-11.4]

    Random Search:: : 997it [00:20, 53.02it/s, failures=0, objective=-11.4]

    Random Search:: : 998it [00:20, 53.02it/s, failures=0, objective=-11.4]

    Random Search:: : 999it [00:20, 53.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1000it [00:20, 53.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1001it [00:20, 50.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1001it [00:20, 50.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1002it [00:20, 50.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1003it [00:20, 50.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1004it [00:20, 50.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1005it [00:20, 50.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1006it [00:20, 50.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1007it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1007it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1008it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1009it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1010it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1011it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1012it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1013it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1014it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1015it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1016it [00:20, 46.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1017it [00:20, 56.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1017it [00:20, 56.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1018it [00:20, 56.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1019it [00:20, 56.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1020it [00:21, 56.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1021it [00:21, 56.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1022it [00:21, 56.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1023it [00:21, 56.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1024it [00:21, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1024it [00:21, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1025it [00:21, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1026it [00:21, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1027it [00:21, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1028it [00:21, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1029it [00:21, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1030it [00:21, 44.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1030it [00:21, 44.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1031it [00:21, 44.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1032it [00:21, 44.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1033it [00:21, 44.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1034it [00:21, 44.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1035it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1035it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1036it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1037it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1038it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1039it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1040it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1041it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1042it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1043it [00:21, 41.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1044it [00:21, 48.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1044it [00:21, 48.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1045it [00:21, 48.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1046it [00:21, 48.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1047it [00:21, 48.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1048it [00:21, 48.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1049it [00:21, 48.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1050it [00:21, 45.30it/s, failures=0, objective=-11.4]

    Random Search:: : 1050it [00:21, 45.30it/s, failures=0, objective=-11.4]

    Random Search:: : 1051it [00:21, 45.30it/s, failures=0, objective=-11.4]

    Random Search:: : 1052it [00:21, 45.30it/s, failures=0, objective=-11.4]

    Random Search:: : 1053it [00:21, 45.30it/s, failures=0, objective=-11.4]

    Random Search:: : 1054it [00:21, 45.30it/s, failures=0, objective=-11.4]

    Random Search:: : 1055it [00:21, 45.30it/s, failures=0, objective=-11.4]

    Random Search:: : 1056it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1056it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1057it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1058it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1059it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1060it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1061it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1062it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1063it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1064it [00:21, 46.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1065it [00:21, 55.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1065it [00:21, 55.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1066it [00:21, 55.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1067it [00:22, 55.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1068it [00:22, 55.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1069it [00:22, 55.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1070it [00:22, 55.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1071it [00:22, 52.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1071it [00:22, 52.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1072it [00:22, 52.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1073it [00:22, 52.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1074it [00:22, 52.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1075it [00:22, 52.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1076it [00:22, 52.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1077it [00:22, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1077it [00:22, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1078it [00:22, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1079it [00:22, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1080it [00:22, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1081it [00:22, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1082it [00:22, 48.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1083it [00:22, 50.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1083it [00:22, 50.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1084it [00:22, 50.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1085it [00:22, 50.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1086it [00:22, 50.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1087it [00:22, 50.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1088it [00:22, 50.48it/s, failures=0, objective=-11.4]

    Random Search:: : 1089it [00:22, 46.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1089it [00:22, 46.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1090it [00:22, 46.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1091it [00:22, 46.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1092it [00:22, 46.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1093it [00:22, 46.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1094it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1094it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1095it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1096it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1097it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1098it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1099it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1100it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1101it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1102it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1103it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1104it [00:22, 42.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1105it [00:22, 57.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1105it [00:22, 57.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1106it [00:22, 57.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1107it [00:22, 57.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1108it [00:22, 57.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1109it [00:22, 57.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1110it [00:22, 57.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1111it [00:22, 57.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1112it [00:22, 54.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1112it [00:22, 54.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1113it [00:22, 54.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1114it [00:22, 54.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1115it [00:22, 54.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1116it [00:22, 54.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1117it [00:23, 54.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1118it [00:23, 54.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1119it [00:23, 54.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1120it [00:23, 57.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1120it [00:23, 57.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1121it [00:23, 57.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1122it [00:23, 57.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1123it [00:23, 57.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1124it [00:23, 57.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1125it [00:23, 57.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1126it [00:23, 57.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1127it [00:23, 56.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1127it [00:23, 56.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1128it [00:23, 56.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1129it [00:23, 56.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1130it [00:23, 56.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1131it [00:23, 56.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1132it [00:23, 56.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1133it [00:23, 53.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1133it [00:23, 53.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1134it [00:23, 53.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1135it [00:23, 53.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1136it [00:23, 53.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1137it [00:23, 53.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1138it [00:23, 53.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1139it [00:23, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1139it [00:23, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1140it [00:23, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1141it [00:23, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1142it [00:23, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1143it [00:23, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1144it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1144it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1145it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1146it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1147it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1148it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1149it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1150it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1151it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1152it [00:23, 44.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1153it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1153it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1154it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1155it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1156it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1157it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1158it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1159it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1160it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1161it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1162it [00:23, 52.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1163it [00:23, 59.71it/s, failures=0, objective=-11.4]

    Random Search:: : 1163it [00:23, 59.71it/s, failures=0, objective=-11.4]

    Random Search:: : 1164it [00:23, 59.71it/s, failures=0, objective=-11.4]

    Random Search:: : 1165it [00:23, 59.71it/s, failures=0, objective=-11.4]

    Random Search:: : 1166it [00:23, 59.71it/s, failures=0, objective=-11.4]

    Random Search:: : 1167it [00:23, 59.71it/s, failures=0, objective=-11.4]

    Random Search:: : 1168it [00:23, 59.71it/s, failures=0, objective=-11.4]

    Random Search:: : 1169it [00:24, 59.71it/s, failures=0, objective=-11.4]

    Random Search:: : 1170it [00:24, 50.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1170it [00:24, 50.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1171it [00:24, 50.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1172it [00:24, 50.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1173it [00:24, 50.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1174it [00:24, 50.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1175it [00:24, 50.32it/s, failures=0, objective=-11.4]

    Random Search:: : 1176it [00:24, 50.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1176it [00:24, 50.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1177it [00:24, 50.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1178it [00:24, 50.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1179it [00:24, 50.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1180it [00:24, 50.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1181it [00:24, 50.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1182it [00:24, 46.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1182it [00:24, 46.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1183it [00:24, 46.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1184it [00:24, 46.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1185it [00:24, 46.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1186it [00:24, 46.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1187it [00:24, 46.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1188it [00:24, 47.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1188it [00:24, 47.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1189it [00:24, 47.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1190it [00:24, 47.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1191it [00:24, 47.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1192it [00:24, 47.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1193it [00:24, 47.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1194it [00:24, 47.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1195it [00:24, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 1195it [00:24, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 1196it [00:24, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 1197it [00:24, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 1198it [00:24, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 1199it [00:24, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 1200it [00:24, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 1201it [00:24, 42.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1201it [00:24, 42.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1202it [00:24, 42.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1203it [00:24, 42.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1204it [00:24, 42.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1205it [00:24, 42.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1206it [00:24, 42.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1207it [00:24, 44.15it/s, failures=0, objective=-11.4]

    Random Search:: : 1207it [00:24, 44.15it/s, failures=0, objective=-11.4]

    Random Search:: : 1208it [00:24, 44.15it/s, failures=0, objective=-11.4]

    Random Search:: : 1209it [00:24, 44.15it/s, failures=0, objective=-11.4]

    Random Search:: : 1210it [00:24, 44.15it/s, failures=0, objective=-11.4]

    Random Search:: : 1211it [00:24, 44.15it/s, failures=0, objective=-11.4]

    Random Search:: : 1212it [00:24, 44.15it/s, failures=0, objective=-11.4]

    Random Search:: : 1213it [00:24, 47.74it/s, failures=0, objective=-11.4]

    Random Search:: : 1213it [00:24, 47.74it/s, failures=0, objective=-11.4]

    Random Search:: : 1214it [00:25, 47.74it/s, failures=0, objective=-11.4]

    Random Search:: : 1215it [00:25, 47.74it/s, failures=0, objective=-11.4]

    Random Search:: : 1216it [00:25, 47.74it/s, failures=0, objective=-11.4]

    Random Search:: : 1217it [00:25, 47.74it/s, failures=0, objective=-11.4]

    Random Search:: : 1218it [00:25, 47.74it/s, failures=0, objective=-11.4]

    Random Search:: : 1219it [00:25, 48.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1219it [00:25, 48.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1220it [00:25, 48.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1221it [00:25, 48.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1222it [00:25, 48.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1223it [00:25, 48.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1224it [00:25, 48.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1225it [00:25, 48.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1226it [00:25, 50.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1226it [00:25, 50.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1227it [00:25, 50.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1228it [00:25, 50.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1229it [00:25, 50.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1230it [00:25, 50.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1231it [00:25, 50.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1232it [00:25, 50.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1233it [00:25, 50.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1234it [00:25, 49.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1234it [00:25, 49.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1235it [00:25, 49.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1236it [00:25, 49.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1237it [00:25, 49.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1238it [00:25, 49.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1239it [00:25, 49.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1240it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1240it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1241it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1242it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1243it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1244it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1245it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1246it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1247it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1248it [00:25, 51.84it/s, failures=0, objective=-11.4]

    Random Search:: : 1249it [00:25, 60.19it/s, failures=0, objective=-11.4]

    Random Search:: : 1249it [00:25, 60.19it/s, failures=0, objective=-11.4]

    Random Search:: : 1250it [00:25, 60.19it/s, failures=0, objective=-11.4]

    Random Search:: : 1251it [00:25, 60.19it/s, failures=0, objective=-11.4]

    Random Search:: : 1252it [00:25, 60.19it/s, failures=0, objective=-11.4]

    Random Search:: : 1253it [00:25, 60.19it/s, failures=0, objective=-11.4]

    Random Search:: : 1254it [00:25, 60.19it/s, failures=0, objective=-11.4]

    Random Search:: : 1255it [00:25, 60.19it/s, failures=0, objective=-11.4]

    Random Search:: : 1256it [00:25, 45.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1256it [00:25, 45.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1257it [00:25, 45.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1258it [00:25, 45.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1259it [00:25, 45.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1260it [00:25, 45.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1261it [00:25, 45.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1262it [00:25, 47.95it/s, failures=0, objective=-11.4]

    Random Search:: : 1262it [00:25, 47.95it/s, failures=0, objective=-11.4]

    Random Search:: : 1263it [00:26, 47.95it/s, failures=0, objective=-11.4]

    Random Search:: : 1264it [00:26, 47.95it/s, failures=0, objective=-11.4]

    Random Search:: : 1265it [00:26, 47.95it/s, failures=0, objective=-11.4]

    Random Search:: : 1266it [00:26, 47.95it/s, failures=0, objective=-11.4]

    Random Search:: : 1267it [00:26, 47.95it/s, failures=0, objective=-11.4]

    Random Search:: : 1268it [00:26, 43.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1268it [00:26, 43.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1269it [00:26, 43.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1270it [00:26, 43.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1271it [00:26, 43.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1272it [00:26, 43.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1273it [00:26, 43.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1273it [00:26, 43.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1274it [00:26, 43.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1275it [00:26, 43.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1276it [00:26, 43.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1277it [00:26, 43.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1278it [00:26, 43.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1279it [00:26, 43.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1280it [00:26, 43.42it/s, failures=0, objective=-11.4]

    Random Search:: : 1281it [00:26, 49.29it/s, failures=0, objective=-11.4]

    Random Search:: : 1281it [00:26, 49.29it/s, failures=0, objective=-11.4]

    Random Search:: : 1282it [00:26, 49.29it/s, failures=0, objective=-11.4]

    Random Search:: : 1283it [00:26, 49.29it/s, failures=0, objective=-11.4]

    Random Search:: : 1284it [00:26, 49.29it/s, failures=0, objective=-11.4]

    Random Search:: : 1285it [00:26, 49.29it/s, failures=0, objective=-11.4]

    Random Search:: : 1286it [00:26, 49.29it/s, failures=0, objective=-11.4]

    Random Search:: : 1287it [00:26, 49.29it/s, failures=0, objective=-11.4]

    Random Search:: : 1288it [00:26, 53.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1288it [00:26, 53.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1289it [00:26, 53.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1290it [00:26, 53.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1291it [00:26, 53.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1292it [00:26, 53.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1293it [00:26, 53.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1294it [00:26, 53.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1295it [00:26, 53.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1296it [00:26, 51.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1296it [00:26, 51.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1297it [00:26, 51.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1298it [00:26, 51.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1299it [00:26, 51.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1300it [00:26, 51.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1301it [00:26, 51.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1302it [00:26, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1302it [00:26, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1303it [00:26, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1304it [00:26, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1305it [00:26, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1306it [00:26, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1307it [00:26, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1308it [00:26, 49.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1308it [00:26, 49.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1309it [00:26, 49.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1310it [00:26, 49.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1311it [00:27, 49.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1312it [00:27, 49.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1313it [00:27, 49.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1314it [00:27, 46.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1314it [00:27, 46.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1315it [00:27, 46.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1316it [00:27, 46.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1317it [00:27, 46.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1318it [00:27, 46.12it/s, failures=0, objective=-11.4]

    Random Search:: : 1319it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1319it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1320it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1321it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1322it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1323it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1324it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1325it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1326it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1327it [00:27, 46.10it/s, failures=0, objective=-11.4]

    Random Search:: : 1328it [00:27, 52.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1328it [00:27, 52.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1329it [00:27, 52.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1330it [00:27, 52.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1331it [00:27, 52.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1332it [00:27, 52.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1333it [00:27, 52.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1334it [00:27, 49.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1334it [00:27, 49.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1335it [00:27, 49.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1336it [00:27, 49.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1337it [00:27, 49.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1338it [00:27, 49.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1339it [00:27, 42.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1339it [00:27, 42.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1340it [00:27, 42.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1341it [00:27, 42.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1342it [00:27, 42.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1343it [00:27, 42.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1344it [00:27, 42.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1345it [00:27, 46.38it/s, failures=0, objective=-11.4]

    Random Search:: : 1345it [00:27, 46.38it/s, failures=0, objective=-11.4]

    Random Search:: : 1346it [00:27, 46.38it/s, failures=0, objective=-11.4]

    Random Search:: : 1347it [00:27, 46.38it/s, failures=0, objective=-11.4]

    Random Search:: : 1348it [00:27, 46.38it/s, failures=0, objective=-11.4]

    Random Search:: : 1349it [00:27, 46.38it/s, failures=0, objective=-11.4]

    Random Search:: : 1350it [00:27, 46.38it/s, failures=0, objective=-11.4]

    Random Search:: : 1351it [00:27, 46.38it/s, failures=0, objective=-11.4]

    Random Search:: : 1352it [00:27, 50.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1352it [00:27, 50.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1353it [00:27, 50.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1354it [00:27, 50.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1355it [00:27, 50.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1356it [00:27, 50.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1357it [00:27, 50.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1358it [00:27, 50.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1359it [00:27, 52.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1359it [00:27, 52.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1360it [00:27, 52.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1361it [00:28, 52.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1362it [00:28, 52.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1363it [00:28, 52.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1364it [00:28, 52.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1365it [00:28, 51.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1365it [00:28, 51.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1366it [00:28, 51.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1367it [00:28, 51.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1368it [00:28, 51.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1369it [00:28, 51.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1370it [00:28, 51.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1371it [00:28, 53.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1371it [00:28, 53.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1372it [00:28, 53.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1373it [00:28, 53.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1374it [00:28, 53.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1375it [00:28, 53.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1376it [00:28, 53.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1377it [00:28, 53.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1378it [00:28, 53.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1379it [00:28, 58.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1379it [00:28, 58.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1380it [00:28, 58.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1381it [00:28, 58.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1382it [00:28, 58.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1383it [00:28, 58.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1384it [00:28, 58.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1385it [00:28, 56.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1385it [00:28, 56.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1386it [00:28, 56.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1387it [00:28, 56.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1388it [00:28, 56.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1389it [00:28, 56.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1390it [00:28, 56.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1391it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1391it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1392it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1393it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1394it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1395it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1396it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1397it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1398it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1399it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1400it [00:28, 51.31it/s, failures=0, objective=-11.4]

    Random Search:: : 1401it [00:28, 63.03it/s, failures=0, objective=-11.4]

    Random Search:: : 1401it [00:28, 63.03it/s, failures=0, objective=-11.4]

    Random Search:: : 1402it [00:28, 63.03it/s, failures=0, objective=-11.4]

    Random Search:: : 1403it [00:28, 63.03it/s, failures=0, objective=-11.4]

    Random Search:: : 1404it [00:28, 63.03it/s, failures=0, objective=-11.4]

    Random Search:: : 1405it [00:28, 63.03it/s, failures=0, objective=-11.4]

    Random Search:: : 1406it [00:28, 63.03it/s, failures=0, objective=-11.4]

    Random Search:: : 1407it [00:28, 63.03it/s, failures=0, objective=-11.4]

    Random Search:: : 1408it [00:28, 52.72it/s, failures=0, objective=-11.4]

    Random Search:: : 1408it [00:28, 52.72it/s, failures=0, objective=-11.4]

    Random Search:: : 1409it [00:28, 52.72it/s, failures=0, objective=-11.4]

    Random Search:: : 1410it [00:28, 52.72it/s, failures=0, objective=-11.4]

    Random Search:: : 1411it [00:28, 52.72it/s, failures=0, objective=-11.4]

    Random Search:: : 1412it [00:28, 52.72it/s, failures=0, objective=-11.4]

    Random Search:: : 1413it [00:28, 52.72it/s, failures=0, objective=-11.4]

    Random Search:: : 1414it [00:28, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1414it [00:28, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1415it [00:28, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1416it [00:29, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1417it [00:29, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1418it [00:29, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1419it [00:29, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1420it [00:29, 41.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1420it [00:29, 41.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1421it [00:29, 41.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1422it [00:29, 41.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1423it [00:29, 41.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1424it [00:29, 41.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1425it [00:29, 40.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1425it [00:29, 40.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1426it [00:29, 40.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1427it [00:29, 40.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1428it [00:29, 40.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1429it [00:29, 40.05it/s, failures=0, objective=-11.4]

    Random Search:: : 1430it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1430it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1431it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1432it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1433it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1434it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1435it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1436it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1437it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1438it [00:29, 40.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1439it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1439it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1440it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1441it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1442it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1443it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1444it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1445it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1446it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1447it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1448it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1449it [00:29, 49.20it/s, failures=0, objective=-11.4]

    Random Search:: : 1450it [00:29, 61.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1450it [00:29, 61.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1451it [00:29, 61.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1452it [00:29, 61.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1453it [00:29, 61.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1454it [00:29, 61.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1455it [00:29, 61.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1456it [00:29, 61.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1457it [00:29, 56.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1457it [00:29, 56.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1458it [00:29, 56.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1459it [00:29, 56.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1460it [00:29, 56.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1461it [00:29, 56.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1462it [00:29, 56.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1463it [00:29, 56.16it/s, failures=0, objective=-11.4]

    Random Search:: : 1464it [00:29, 56.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1464it [00:29, 56.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1465it [00:29, 56.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1466it [00:29, 56.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1467it [00:29, 56.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1468it [00:30, 56.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1469it [00:30, 56.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1470it [00:30, 56.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1471it [00:30, 56.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1472it [00:30, 57.87it/s, failures=0, objective=-11.4]

    Random Search:: : 1472it [00:30, 57.87it/s, failures=0, objective=-11.4]

    Random Search:: : 1473it [00:30, 57.87it/s, failures=0, objective=-11.4]

    Random Search:: : 1474it [00:30, 57.87it/s, failures=0, objective=-11.4]

    Random Search:: : 1475it [00:30, 57.87it/s, failures=0, objective=-11.4]

    Random Search:: : 1476it [00:30, 57.87it/s, failures=0, objective=-11.4]

    Random Search:: : 1477it [00:30, 57.87it/s, failures=0, objective=-11.4]

    Random Search:: : 1478it [00:30, 57.87it/s, failures=0, objective=-11.4]

    Random Search:: : 1479it [00:30, 60.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1479it [00:30, 60.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1480it [00:30, 60.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1481it [00:30, 60.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1482it [00:30, 60.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1483it [00:30, 60.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1484it [00:30, 60.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1485it [00:30, 60.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1486it [00:30, 47.35it/s, failures=0, objective=-11.4]

    Random Search:: : 1486it [00:30, 47.35it/s, failures=0, objective=-11.4]

    Random Search:: : 1487it [00:30, 47.35it/s, failures=0, objective=-11.4]

    Random Search:: : 1488it [00:30, 47.35it/s, failures=0, objective=-11.4]

    Random Search:: : 1489it [00:30, 47.35it/s, failures=0, objective=-11.4]

    Random Search:: : 1490it [00:30, 47.35it/s, failures=0, objective=-11.4]

    Random Search:: : 1491it [00:30, 47.35it/s, failures=0, objective=-11.4]

    Random Search:: : 1492it [00:30, 47.35it/s, failures=0, objective=-11.4]

    Random Search:: : 1493it [00:30, 45.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1493it [00:30, 45.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1494it [00:30, 45.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1495it [00:30, 45.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1496it [00:30, 45.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1497it [00:30, 45.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1498it [00:30, 45.43it/s, failures=0, objective=-11.4]

    Random Search:: : 1498it [00:30, 45.43it/s, failures=0, objective=-11.4]

    Random Search:: : 1499it [00:30, 45.43it/s, failures=0, objective=-11.4]

    Random Search:: : 1500it [00:30, 45.43it/s, failures=0, objective=-11.4]

    Random Search:: : 1501it [00:30, 45.43it/s, failures=0, objective=-11.4]

    Random Search:: : 1502it [00:30, 45.43it/s, failures=0, objective=-11.4]

    Random Search:: : 1503it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1503it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1504it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1505it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1506it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1507it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1508it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1509it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1510it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1511it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1512it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1513it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1514it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1515it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1516it [00:30, 41.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1517it [00:30, 63.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1517it [00:30, 63.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1518it [00:30, 63.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1519it [00:31, 63.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1520it [00:31, 63.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1521it [00:31, 63.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1522it [00:31, 63.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1523it [00:31, 63.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1524it [00:31, 63.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1525it [00:31, 56.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1525it [00:31, 56.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1526it [00:31, 56.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1527it [00:31, 56.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1528it [00:31, 56.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1529it [00:31, 56.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1530it [00:31, 56.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1531it [00:31, 56.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1532it [00:31, 57.33it/s, failures=0, objective=-11.4]

    Random Search:: : 1532it [00:31, 57.33it/s, failures=0, objective=-11.4]

    Random Search:: : 1533it [00:31, 57.33it/s, failures=0, objective=-11.4]

    Random Search:: : 1534it [00:31, 57.33it/s, failures=0, objective=-11.4]

    Random Search:: : 1535it [00:31, 57.33it/s, failures=0, objective=-11.4]

    Random Search:: : 1536it [00:31, 57.33it/s, failures=0, objective=-11.4]

    Random Search:: : 1537it [00:31, 57.33it/s, failures=0, objective=-11.4]

    Random Search:: : 1538it [00:31, 57.33it/s, failures=0, objective=-11.4]

    Random Search:: : 1539it [00:31, 49.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1539it [00:31, 49.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1540it [00:31, 49.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1541it [00:31, 49.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1542it [00:31, 49.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1543it [00:31, 49.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1544it [00:31, 49.40it/s, failures=0, objective=-11.4]

    Random Search:: : 1545it [00:31, 48.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1545it [00:31, 48.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1546it [00:31, 48.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1547it [00:31, 48.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1548it [00:31, 48.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1549it [00:31, 48.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1550it [00:31, 48.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1551it [00:31, 48.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1552it [00:31, 48.61it/s, failures=0, objective=-11.4]

    Random Search:: : 1553it [00:31, 51.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1553it [00:31, 51.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1554it [00:31, 51.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1555it [00:31, 51.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1556it [00:31, 51.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1557it [00:31, 51.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1558it [00:31, 51.06it/s, failures=0, objective=-11.4]

    Random Search:: : 1559it [00:31, 52.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1559it [00:31, 52.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1560it [00:31, 52.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1561it [00:31, 52.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1562it [00:31, 52.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1563it [00:31, 52.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1564it [00:31, 52.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1565it [00:31, 52.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1566it [00:31, 54.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1566it [00:31, 54.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1567it [00:31, 54.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1568it [00:31, 54.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1569it [00:31, 54.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1570it [00:31, 54.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1571it [00:32, 54.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1572it [00:32, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1572it [00:32, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1573it [00:32, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1574it [00:32, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1575it [00:32, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1576it [00:32, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1577it [00:32, 49.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1578it [00:32, 49.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1578it [00:32, 49.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1579it [00:32, 49.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1580it [00:32, 49.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1581it [00:32, 49.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1582it [00:32, 49.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1583it [00:32, 49.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1584it [00:32, 48.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1584it [00:32, 48.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1585it [00:32, 48.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1586it [00:32, 48.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1587it [00:32, 48.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1588it [00:32, 48.21it/s, failures=0, objective=-11.4]

    Random Search:: : 1589it [00:32, 43.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1589it [00:32, 43.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1590it [00:32, 43.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1591it [00:32, 43.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1592it [00:32, 43.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1593it [00:32, 43.70it/s, failures=0, objective=-11.4]

    Random Search:: : 1594it [00:32, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1594it [00:32, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1595it [00:32, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1596it [00:32, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1597it [00:32, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1598it [00:32, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1599it [00:32, 43.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1599it [00:32, 43.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1600it [00:32, 43.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1601it [00:32, 43.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1602it [00:32, 43.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1603it [00:32, 43.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1604it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1604it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1605it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1606it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1607it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1608it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1609it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1610it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1611it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1612it [00:32, 40.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1613it [00:32, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1613it [00:32, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1614it [00:32, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1615it [00:32, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1616it [00:33, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1617it [00:33, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1618it [00:33, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1619it [00:33, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1620it [00:33, 51.08it/s, failures=0, objective=-11.4]

    Random Search:: : 1621it [00:33, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1621it [00:33, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1622it [00:33, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1623it [00:33, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1624it [00:33, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1625it [00:33, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1626it [00:33, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 1627it [00:33, 52.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1627it [00:33, 52.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1628it [00:33, 52.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1629it [00:33, 52.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1630it [00:33, 52.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1631it [00:33, 52.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1632it [00:33, 52.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1633it [00:33, 51.92it/s, failures=0, objective=-11.4]

    Random Search:: : 1633it [00:33, 51.92it/s, failures=0, objective=-11.4]

    Random Search:: : 1634it [00:33, 51.92it/s, failures=0, objective=-11.4]

    Random Search:: : 1635it [00:33, 51.92it/s, failures=0, objective=-11.4]

    Random Search:: : 1636it [00:33, 51.92it/s, failures=0, objective=-11.4]

    Random Search:: : 1637it [00:33, 51.92it/s, failures=0, objective=-11.4]

    Random Search:: : 1638it [00:33, 51.92it/s, failures=0, objective=-11.4]

    Random Search:: : 1639it [00:33, 51.92it/s, failures=0, objective=-11.4]

    Random Search:: : 1640it [00:33, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1640it [00:33, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1641it [00:33, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1642it [00:33, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1643it [00:33, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1644it [00:33, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1645it [00:33, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 1646it [00:33, 53.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1646it [00:33, 53.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1647it [00:33, 53.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1648it [00:33, 53.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1649it [00:33, 53.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1650it [00:33, 53.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1651it [00:33, 53.24it/s, failures=0, objective=-11.4]

    Random Search:: : 1652it [00:33, 46.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1652it [00:33, 46.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1653it [00:33, 46.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1654it [00:33, 46.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1655it [00:33, 46.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1656it [00:33, 46.85it/s, failures=0, objective=-11.4]

    Random Search:: : 1657it [00:33, 42.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1657it [00:33, 42.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1658it [00:33, 42.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1659it [00:33, 42.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1660it [00:33, 42.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1661it [00:33, 42.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1662it [00:33, 42.69it/s, failures=0, objective=-11.4]

    Random Search:: : 1663it [00:34, 45.11it/s, failures=0, objective=-11.4]

    Random Search:: : 1663it [00:34, 45.11it/s, failures=0, objective=-11.4]

    Random Search:: : 1664it [00:34, 45.11it/s, failures=0, objective=-11.4]

    Random Search:: : 1665it [00:34, 45.11it/s, failures=0, objective=-11.4]

    Random Search:: : 1666it [00:34, 45.11it/s, failures=0, objective=-11.4]

    Random Search:: : 1667it [00:34, 45.11it/s, failures=0, objective=-11.4]

    Random Search:: : 1668it [00:34, 44.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1668it [00:34, 44.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1669it [00:34, 44.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1670it [00:34, 44.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1671it [00:34, 44.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1672it [00:34, 44.36it/s, failures=0, objective=-11.4]

    Random Search:: : 1673it [00:34, 44.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1673it [00:34, 44.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1674it [00:34, 44.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1675it [00:34, 44.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1676it [00:34, 44.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1677it [00:34, 44.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1678it [00:34, 44.73it/s, failures=0, objective=-11.4]

    Random Search:: : 1679it [00:34, 45.89it/s, failures=0, objective=-11.4]

    Random Search:: : 1679it [00:34, 45.89it/s, failures=0, objective=-11.4]

    Random Search:: : 1680it [00:34, 45.89it/s, failures=0, objective=-11.4]

    Random Search:: : 1681it [00:34, 45.89it/s, failures=0, objective=-11.4]

    Random Search:: : 1682it [00:34, 45.89it/s, failures=0, objective=-11.4]

    Random Search:: : 1683it [00:34, 45.89it/s, failures=0, objective=-11.4]

    Random Search:: : 1684it [00:34, 45.14it/s, failures=0, objective=-11.4]

    Random Search:: : 1684it [00:34, 45.14it/s, failures=0, objective=-11.4]

    Random Search:: : 1685it [00:34, 45.14it/s, failures=0, objective=-11.4]

    Random Search:: : 1686it [00:34, 45.14it/s, failures=0, objective=-11.4]

    Random Search:: : 1687it [00:34, 45.14it/s, failures=0, objective=-11.4]

    Random Search:: : 1688it [00:34, 45.14it/s, failures=0, objective=-11.4]

    Random Search:: : 1689it [00:34, 41.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1689it [00:34, 41.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1690it [00:34, 41.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1691it [00:34, 41.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1692it [00:34, 41.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1693it [00:34, 41.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1694it [00:34, 41.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1695it [00:34, 44.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1695it [00:34, 44.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1696it [00:34, 44.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1697it [00:34, 44.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1698it [00:34, 44.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1699it [00:34, 44.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1700it [00:34, 44.82it/s, failures=0, objective=-11.4]

    Random Search:: : 1701it [00:34, 47.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1701it [00:34, 47.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1702it [00:34, 47.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1703it [00:34, 47.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1704it [00:34, 47.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1705it [00:34, 47.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1706it [00:34, 47.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1707it [00:34, 47.64it/s, failures=0, objective=-11.4]

    Random Search:: : 1708it [00:34, 52.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1708it [00:34, 52.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1709it [00:34, 52.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1710it [00:34, 52.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1711it [00:35, 52.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1712it [00:35, 52.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1713it [00:35, 52.37it/s, failures=0, objective=-11.4]

    Random Search:: : 1714it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1714it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1715it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1716it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1717it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1718it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1719it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1720it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1721it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1722it [00:35, 51.07it/s, failures=0, objective=-11.4]

    Random Search:: : 1723it [00:35, 57.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1723it [00:35, 57.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1724it [00:35, 57.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1725it [00:35, 57.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1726it [00:35, 57.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1727it [00:35, 57.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1728it [00:35, 57.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1729it [00:35, 57.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1730it [00:35, 57.44it/s, failures=0, objective=-11.4]

    Random Search:: : 1731it [00:35, 61.04it/s, failures=0, objective=-11.4]

    Random Search:: : 1731it [00:35, 61.04it/s, failures=0, objective=-11.4]

    Random Search:: : 1732it [00:35, 61.04it/s, failures=0, objective=-11.4]

    Random Search:: : 1733it [00:35, 61.04it/s, failures=0, objective=-11.4]

    Random Search:: : 1734it [00:35, 61.04it/s, failures=0, objective=-11.4]

    Random Search:: : 1735it [00:35, 61.04it/s, failures=0, objective=-11.4]

    Random Search:: : 1736it [00:35, 61.04it/s, failures=0, objective=-11.4]

    Random Search:: : 1737it [00:35, 61.04it/s, failures=0, objective=-11.4]

    Random Search:: : 1738it [00:35, 56.51it/s, failures=0, objective=-11.4]

    Random Search:: : 1738it [00:35, 56.51it/s, failures=0, objective=-11.4]

    Random Search:: : 1739it [00:35, 56.51it/s, failures=0, objective=-11.4]

    Random Search:: : 1740it [00:35, 56.51it/s, failures=0, objective=-11.4]

    Random Search:: : 1741it [00:35, 56.51it/s, failures=0, objective=-11.4]

    Random Search:: : 1742it [00:35, 56.51it/s, failures=0, objective=-11.4]

    Random Search:: : 1743it [00:35, 56.51it/s, failures=0, objective=-11.4]

    Random Search:: : 1744it [00:35, 56.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1744it [00:35, 56.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1745it [00:35, 56.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1746it [00:35, 56.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1747it [00:35, 56.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1748it [00:35, 56.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1749it [00:35, 56.91it/s, failures=0, objective=-11.4]

    Random Search:: : 1750it [00:35, 40.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1750it [00:35, 40.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1751it [00:35, 40.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1752it [00:35, 40.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1753it [00:35, 40.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1754it [00:35, 40.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1755it [00:35, 40.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1756it [00:35, 40.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1757it [00:35, 40.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1758it [00:35, 42.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1758it [00:35, 42.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1759it [00:36, 42.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1760it [00:36, 42.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1761it [00:36, 42.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1762it [00:36, 42.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1763it [00:36, 42.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1764it [00:36, 42.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1765it [00:36, 47.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1765it [00:36, 47.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1766it [00:36, 47.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1767it [00:36, 47.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1768it [00:36, 47.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1769it [00:36, 47.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1770it [00:36, 47.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1771it [00:36, 47.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1772it [00:36, 47.41it/s, failures=0, objective=-11.4]

    Random Search:: : 1773it [00:36, 54.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1773it [00:36, 54.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1774it [00:36, 54.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1775it [00:36, 54.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1776it [00:36, 54.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1777it [00:36, 54.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1778it [00:36, 54.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1779it [00:36, 54.60it/s, failures=0, objective=-11.4]

    Random Search:: : 1780it [00:36, 51.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1780it [00:36, 51.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1781it [00:36, 51.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1782it [00:36, 51.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1783it [00:36, 51.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1784it [00:36, 51.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1785it [00:36, 51.90it/s, failures=0, objective=-11.4]

    Random Search:: : 1786it [00:36, 47.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1786it [00:36, 47.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1787it [00:36, 47.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1788it [00:36, 47.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1789it [00:36, 47.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1790it [00:36, 47.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1791it [00:36, 47.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1792it [00:36, 50.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1792it [00:36, 50.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1793it [00:36, 50.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1794it [00:36, 50.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1795it [00:36, 50.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1796it [00:36, 50.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1797it [00:36, 50.54it/s, failures=0, objective=-11.4]

    Random Search:: : 1798it [00:36, 45.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1798it [00:36, 45.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1799it [00:36, 45.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1800it [00:36, 45.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1801it [00:36, 45.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1802it [00:36, 45.86it/s, failures=0, objective=-11.4]

    Random Search:: : 1803it [00:36, 42.75it/s, failures=0, objective=-11.4]

    Random Search:: : 1803it [00:36, 42.75it/s, failures=0, objective=-11.4]

    Random Search:: : 1804it [00:36, 42.75it/s, failures=0, objective=-11.4]

    Random Search:: : 1805it [00:36, 42.75it/s, failures=0, objective=-11.4]

    Random Search:: : 1806it [00:36, 42.75it/s, failures=0, objective=-11.4]

    Random Search:: : 1807it [00:36, 42.75it/s, failures=0, objective=-11.4]

    Random Search:: : 1808it [00:36, 42.75it/s, failures=0, objective=-11.4]

    Random Search:: : 1809it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1809it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1810it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1811it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1812it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1813it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1814it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1815it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1816it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1817it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1818it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1819it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1820it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1821it [00:37, 46.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1822it [00:37, 62.59it/s, failures=0, objective=-11.4]

    Random Search:: : 1822it [00:37, 62.59it/s, failures=0, objective=-11.4]

    Random Search:: : 1823it [00:37, 62.59it/s, failures=0, objective=-11.4]

    Random Search:: : 1824it [00:37, 62.59it/s, failures=0, objective=-11.4]

    Random Search:: : 1825it [00:37, 62.59it/s, failures=0, objective=-11.4]

    Random Search:: : 1826it [00:37, 62.59it/s, failures=0, objective=-11.4]

    Random Search:: : 1827it [00:37, 62.59it/s, failures=0, objective=-11.4]

    Random Search:: : 1828it [00:37, 62.59it/s, failures=0, objective=-11.4]

    Random Search:: : 1829it [00:37, 55.80it/s, failures=0, objective=-11.4]

    Random Search:: : 1829it [00:37, 55.80it/s, failures=0, objective=-11.4]

    Random Search:: : 1830it [00:37, 55.80it/s, failures=0, objective=-11.4]

    Random Search:: : 1831it [00:37, 55.80it/s, failures=0, objective=-11.4]

    Random Search:: : 1832it [00:37, 55.80it/s, failures=0, objective=-11.4]

    Random Search:: : 1833it [00:37, 55.80it/s, failures=0, objective=-11.4]

    Random Search:: : 1834it [00:37, 55.80it/s, failures=0, objective=-11.4]

    Random Search:: : 1835it [00:37, 55.80it/s, failures=0, objective=-11.4]

    Random Search:: : 1836it [00:37, 56.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1836it [00:37, 56.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1837it [00:37, 56.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1838it [00:37, 56.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1839it [00:37, 56.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1840it [00:37, 56.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1841it [00:37, 56.50it/s, failures=0, objective=-11.4]

    Random Search:: : 1842it [00:37, 43.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1842it [00:37, 43.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1843it [00:37, 43.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1844it [00:37, 43.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1845it [00:37, 43.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1846it [00:37, 43.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1847it [00:37, 41.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1847it [00:37, 41.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1848it [00:37, 41.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1849it [00:37, 41.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1850it [00:37, 41.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1851it [00:37, 41.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1852it [00:37, 41.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1853it [00:37, 41.27it/s, failures=0, objective=-11.4]

    Random Search:: : 1854it [00:37, 45.55it/s, failures=0, objective=-11.4]

    Random Search:: : 1854it [00:37, 45.55it/s, failures=0, objective=-11.4]

    Random Search:: : 1855it [00:37, 45.55it/s, failures=0, objective=-11.4]

    Random Search:: : 1856it [00:37, 45.55it/s, failures=0, objective=-11.4]

    Random Search:: : 1857it [00:37, 45.55it/s, failures=0, objective=-11.4]

    Random Search:: : 1858it [00:38, 45.55it/s, failures=0, objective=-11.4]

    Random Search:: : 1859it [00:38, 45.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1859it [00:38, 45.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1860it [00:38, 45.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1861it [00:38, 45.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1862it [00:38, 45.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1863it [00:38, 45.17it/s, failures=0, objective=-11.4]

    Random Search:: : 1864it [00:38, 41.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1864it [00:38, 41.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1865it [00:38, 41.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1866it [00:38, 41.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1867it [00:38, 41.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1868it [00:38, 41.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1869it [00:38, 41.25it/s, failures=0, objective=-11.4]

    Random Search:: : 1870it [00:38, 43.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1870it [00:38, 43.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1871it [00:38, 43.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1872it [00:38, 43.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1873it [00:38, 43.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1874it [00:38, 43.26it/s, failures=0, objective=-11.4]

    Random Search:: : 1875it [00:38, 43.68it/s, failures=0, objective=-11.4]

    Random Search:: : 1875it [00:38, 43.68it/s, failures=0, objective=-11.4]

    Random Search:: : 1876it [00:38, 43.68it/s, failures=0, objective=-11.4]

    Random Search:: : 1877it [00:38, 43.68it/s, failures=0, objective=-11.4]

    Random Search:: : 1878it [00:38, 43.68it/s, failures=0, objective=-11.4]

    Random Search:: : 1879it [00:38, 43.68it/s, failures=0, objective=-11.4]

    Random Search:: : 1880it [00:38, 43.68it/s, failures=0, objective=-11.4]

    Random Search:: : 1881it [00:38, 43.68it/s, failures=0, objective=-11.4]

    Random Search:: : 1882it [00:38, 43.68it/s, failures=0, objective=-11.4]

    Random Search:: : 1883it [00:38, 49.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1883it [00:38, 49.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1884it [00:38, 49.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1885it [00:38, 49.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1886it [00:38, 49.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1887it [00:38, 49.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1888it [00:38, 49.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1889it [00:38, 49.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1890it [00:38, 49.46it/s, failures=0, objective=-11.4]

    Random Search:: : 1891it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1891it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1892it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1893it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1894it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1895it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1896it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1897it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1898it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1899it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1900it [00:38, 54.45it/s, failures=0, objective=-11.4]

    Random Search:: : 1901it [00:38, 64.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1901it [00:38, 64.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1902it [00:38, 64.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1903it [00:38, 64.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1904it [00:38, 64.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1905it [00:38, 64.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1906it [00:38, 64.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1907it [00:38, 64.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1908it [00:38, 64.93it/s, failures=0, objective=-11.4]

    Random Search:: : 1909it [00:38, 68.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1909it [00:38, 68.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1910it [00:38, 68.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1911it [00:38, 68.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1912it [00:38, 68.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1913it [00:38, 68.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1914it [00:38, 68.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1915it [00:38, 68.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1916it [00:38, 68.49it/s, failures=0, objective=-11.4]

    Random Search:: : 1917it [00:38, 71.09it/s, failures=0, objective=-11.4]

    Random Search:: : 1917it [00:38, 71.09it/s, failures=0, objective=-11.4]

    Random Search:: : 1918it [00:38, 71.09it/s, failures=0, objective=-11.4]

    Random Search:: : 1919it [00:38, 71.09it/s, failures=0, objective=-11.4]

    Random Search:: : 1920it [00:38, 71.09it/s, failures=0, objective=-11.4]

    Random Search:: : 1921it [00:39, 71.09it/s, failures=0, objective=-11.4]

    Random Search:: : 1922it [00:39, 71.09it/s, failures=0, objective=-11.4]

    Random Search:: : 1923it [00:39, 71.09it/s, failures=0, objective=-11.4]

    Random Search:: : 1924it [00:39, 71.09it/s, failures=0, objective=-11.4]

    Random Search:: : 1925it [00:39, 60.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1925it [00:39, 60.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1926it [00:39, 60.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1927it [00:39, 60.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1928it [00:39, 60.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1929it [00:39, 60.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1930it [00:39, 60.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1931it [00:39, 60.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1932it [00:39, 57.47it/s, failures=0, objective=-11.4]

    Random Search:: : 1932it [00:39, 57.47it/s, failures=0, objective=-11.4]

    Random Search:: : 1933it [00:39, 57.47it/s, failures=0, objective=-11.4]

    Random Search:: : 1934it [00:39, 57.47it/s, failures=0, objective=-11.4]

    Random Search:: : 1935it [00:39, 57.47it/s, failures=0, objective=-11.4]

    Random Search:: : 1936it [00:39, 57.47it/s, failures=0, objective=-11.4]

    Random Search:: : 1937it [00:39, 57.47it/s, failures=0, objective=-11.4]

    Random Search:: : 1938it [00:39, 57.47it/s, failures=0, objective=-11.4]

    Random Search:: : 1939it [00:39, 48.56it/s, failures=0, objective=-11.4]

    Random Search:: : 1939it [00:39, 48.56it/s, failures=0, objective=-11.4]

    Random Search:: : 1940it [00:39, 48.56it/s, failures=0, objective=-11.4]

    Random Search:: : 1941it [00:39, 48.56it/s, failures=0, objective=-11.4]

    Random Search:: : 1942it [00:39, 48.56it/s, failures=0, objective=-11.4]

    Random Search:: : 1943it [00:39, 48.56it/s, failures=0, objective=-11.4]

    Random Search:: : 1944it [00:39, 48.56it/s, failures=0, objective=-11.4]

    Random Search:: : 1945it [00:39, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1945it [00:39, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1946it [00:39, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1947it [00:39, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1948it [00:39, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1949it [00:39, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1950it [00:39, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 1951it [00:39, 40.52it/s, failures=0, objective=-11.4]

    Random Search:: : 1951it [00:39, 40.52it/s, failures=0, objective=-11.4]

    Random Search:: : 1952it [00:39, 40.52it/s, failures=0, objective=-11.4]

    Random Search:: : 1953it [00:39, 40.52it/s, failures=0, objective=-11.4]

    Random Search:: : 1954it [00:39, 40.52it/s, failures=0, objective=-11.4]

    Random Search:: : 1955it [00:39, 40.52it/s, failures=0, objective=-11.4]

    Random Search:: : 1956it [00:39, 41.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1956it [00:39, 41.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1957it [00:39, 41.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1958it [00:39, 41.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1959it [00:40, 41.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1960it [00:40, 41.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1961it [00:40, 41.02it/s, failures=0, objective=-11.4]

    Random Search:: : 1962it [00:40, 44.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1962it [00:40, 44.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1963it [00:40, 44.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1964it [00:40, 44.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1965it [00:40, 44.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1966it [00:40, 44.65it/s, failures=0, objective=-11.4]

    Random Search:: : 1967it [00:40, 45.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1967it [00:40, 45.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1968it [00:40, 45.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1969it [00:40, 45.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1970it [00:40, 45.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1971it [00:40, 45.79it/s, failures=0, objective=-11.4]

    Random Search:: : 1972it [00:40, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1972it [00:40, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1973it [00:40, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1974it [00:40, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1975it [00:40, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1976it [00:40, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1977it [00:40, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 1978it [00:40, 46.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1978it [00:40, 46.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1979it [00:40, 46.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1980it [00:40, 46.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1981it [00:40, 46.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1982it [00:40, 46.18it/s, failures=0, objective=-11.4]

    Random Search:: : 1983it [00:40, 45.01it/s, failures=0, objective=-11.4]

    Random Search:: : 1983it [00:40, 45.01it/s, failures=0, objective=-11.4]

    Random Search:: : 1984it [00:40, 45.01it/s, failures=0, objective=-11.4]

    Random Search:: : 1985it [00:40, 45.01it/s, failures=0, objective=-11.4]

    Random Search:: : 1986it [00:40, 45.01it/s, failures=0, objective=-11.4]

    Random Search:: : 1987it [00:40, 45.01it/s, failures=0, objective=-11.4]

    Random Search:: : 1988it [00:40, 42.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1988it [00:40, 42.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1989it [00:40, 42.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1990it [00:40, 42.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1991it [00:40, 42.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1992it [00:40, 42.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1993it [00:40, 42.77it/s, failures=0, objective=-11.4]

    Random Search:: : 1994it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 1994it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 1995it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 1996it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 1997it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 1998it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 1999it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2000it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2001it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2002it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2003it [00:40, 46.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2004it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2004it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2005it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2006it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2007it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2008it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2009it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2010it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2011it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2012it [00:40, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2013it [00:40, 65.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2013it [00:40, 65.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2014it [00:40, 65.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2015it [00:41, 65.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2016it [00:41, 65.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2017it [00:41, 65.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2018it [00:41, 65.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2019it [00:41, 65.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2020it [00:41, 66.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2020it [00:41, 66.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2021it [00:41, 66.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2022it [00:41, 66.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2023it [00:41, 66.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2024it [00:41, 66.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2025it [00:41, 66.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2026it [00:41, 66.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2027it [00:41, 65.10it/s, failures=0, objective=-11.4]

    Random Search:: : 2027it [00:41, 65.10it/s, failures=0, objective=-11.4]

    Random Search:: : 2028it [00:41, 65.10it/s, failures=0, objective=-11.4]

    Random Search:: : 2029it [00:41, 65.10it/s, failures=0, objective=-11.4]

    Random Search:: : 2030it [00:41, 65.10it/s, failures=0, objective=-11.4]

    Random Search:: : 2031it [00:41, 65.10it/s, failures=0, objective=-11.4]

    Random Search:: : 2032it [00:41, 65.10it/s, failures=0, objective=-11.4]

    Random Search:: : 2033it [00:41, 65.10it/s, failures=0, objective=-11.4]

    Random Search:: : 2034it [00:41, 57.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2034it [00:41, 57.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2035it [00:41, 57.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2036it [00:41, 57.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2037it [00:41, 57.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2038it [00:41, 57.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2039it [00:41, 57.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2040it [00:41, 53.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2040it [00:41, 53.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2041it [00:41, 53.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2042it [00:41, 53.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2043it [00:41, 53.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2044it [00:41, 53.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2045it [00:41, 53.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2046it [00:41, 54.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2046it [00:41, 54.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2047it [00:41, 54.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2048it [00:41, 54.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2049it [00:41, 54.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2050it [00:41, 54.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2051it [00:41, 54.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2052it [00:41, 43.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2052it [00:41, 43.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2053it [00:41, 43.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2054it [00:41, 43.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2055it [00:41, 43.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2056it [00:41, 43.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2057it [00:41, 43.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2058it [00:41, 43.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2058it [00:41, 43.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2059it [00:41, 43.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2060it [00:41, 43.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2061it [00:41, 43.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2062it [00:42, 43.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2063it [00:42, 39.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2063it [00:42, 39.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2064it [00:42, 39.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2065it [00:42, 39.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2066it [00:42, 39.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2067it [00:42, 39.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2068it [00:42, 36.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2068it [00:42, 36.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2069it [00:42, 36.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2070it [00:42, 36.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2071it [00:42, 36.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2072it [00:42, 35.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2072it [00:42, 35.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2073it [00:42, 35.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2074it [00:42, 35.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2075it [00:42, 35.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2076it [00:42, 35.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2077it [00:42, 35.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2078it [00:42, 35.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2079it [00:42, 35.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2080it [00:42, 45.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2080it [00:42, 45.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2081it [00:42, 45.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2082it [00:42, 45.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2083it [00:42, 45.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2084it [00:42, 45.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2085it [00:42, 42.65it/s, failures=0, objective=-11.4]

    Random Search:: : 2085it [00:42, 42.65it/s, failures=0, objective=-11.4]

    Random Search:: : 2086it [00:42, 42.65it/s, failures=0, objective=-11.4]

    Random Search:: : 2087it [00:42, 42.65it/s, failures=0, objective=-11.4]

    Random Search:: : 2088it [00:42, 42.65it/s, failures=0, objective=-11.4]

    Random Search:: : 2089it [00:42, 42.65it/s, failures=0, objective=-11.4]

    Random Search:: : 2090it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2090it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2091it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2092it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2093it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2094it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2095it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2096it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2097it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2098it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2099it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2100it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2101it [00:42, 37.37it/s, failures=0, objective=-11.4]

    Random Search:: : 2102it [00:42, 54.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2102it [00:42, 54.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2103it [00:42, 54.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2104it [00:42, 54.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2105it [00:42, 54.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2106it [00:42, 54.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2107it [00:42, 54.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2108it [00:42, 54.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2109it [00:42, 54.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2110it [00:43, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2110it [00:43, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2111it [00:43, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2112it [00:43, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2113it [00:43, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2114it [00:43, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2115it [00:43, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2116it [00:43, 59.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2117it [00:43, 58.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2117it [00:43, 58.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2118it [00:43, 58.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2119it [00:43, 58.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2120it [00:43, 58.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2121it [00:43, 58.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2122it [00:43, 58.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2123it [00:43, 58.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2124it [00:43, 51.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2124it [00:43, 51.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2125it [00:43, 51.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2126it [00:43, 51.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2127it [00:43, 51.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2128it [00:43, 51.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2129it [00:43, 51.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2130it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2130it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2131it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2132it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2133it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2134it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2135it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2136it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2137it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2138it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2139it [00:43, 49.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2140it [00:43, 61.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2140it [00:43, 61.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2141it [00:43, 61.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2142it [00:43, 61.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2143it [00:43, 61.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2144it [00:43, 61.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2145it [00:43, 61.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2146it [00:43, 61.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2147it [00:43, 60.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2147it [00:43, 60.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2148it [00:43, 60.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2149it [00:43, 60.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2150it [00:43, 60.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2151it [00:43, 60.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2152it [00:43, 60.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2153it [00:43, 60.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2154it [00:43, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2154it [00:43, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2155it [00:43, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2156it [00:43, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2157it [00:43, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2158it [00:43, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2159it [00:44, 48.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2160it [00:44, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2160it [00:44, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2161it [00:44, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2162it [00:44, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2163it [00:44, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2164it [00:44, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2165it [00:44, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2166it [00:44, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2167it [00:44, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2167it [00:44, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2168it [00:44, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2169it [00:44, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2170it [00:44, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2171it [00:44, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2172it [00:44, 50.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2173it [00:44, 47.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2173it [00:44, 47.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2174it [00:44, 47.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2175it [00:44, 47.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2176it [00:44, 47.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2177it [00:44, 47.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2178it [00:44, 47.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2179it [00:44, 41.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2179it [00:44, 41.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2180it [00:44, 41.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2181it [00:44, 41.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2182it [00:44, 41.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2183it [00:44, 41.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2184it [00:44, 39.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2184it [00:44, 39.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2185it [00:44, 39.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2186it [00:44, 39.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2187it [00:44, 39.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2188it [00:44, 39.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2189it [00:44, 39.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2190it [00:44, 39.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2191it [00:44, 45.81it/s, failures=0, objective=-11.4]

    Random Search:: : 2191it [00:44, 45.81it/s, failures=0, objective=-11.4]

    Random Search:: : 2192it [00:44, 45.81it/s, failures=0, objective=-11.4]

    Random Search:: : 2193it [00:44, 45.81it/s, failures=0, objective=-11.4]

    Random Search:: : 2194it [00:44, 45.81it/s, failures=0, objective=-11.4]

    Random Search:: : 2195it [00:44, 45.81it/s, failures=0, objective=-11.4]

    Random Search:: : 2196it [00:44, 44.86it/s, failures=0, objective=-11.4]

    Random Search:: : 2196it [00:44, 44.86it/s, failures=0, objective=-11.4]

    Random Search:: : 2197it [00:44, 44.86it/s, failures=0, objective=-11.4]

    Random Search:: : 2198it [00:44, 44.86it/s, failures=0, objective=-11.4]

    Random Search:: : 2199it [00:44, 44.86it/s, failures=0, objective=-11.4]

    Random Search:: : 2200it [00:44, 44.86it/s, failures=0, objective=-11.4]

    Random Search:: : 2201it [00:44, 44.86it/s, failures=0, objective=-11.4]

    Random Search:: : 2202it [00:44, 44.86it/s, failures=0, objective=-11.4]

    Random Search:: : 2203it [00:44, 44.86it/s, failures=0, objective=-11.4]

    Random Search:: : 2204it [00:45, 47.55it/s, failures=0, objective=-11.4]

    Random Search:: : 2204it [00:45, 47.55it/s, failures=0, objective=-11.4]

    Random Search:: : 2205it [00:45, 47.55it/s, failures=0, objective=-11.4]

    Random Search:: : 2206it [00:45, 47.55it/s, failures=0, objective=-11.4]

    Random Search:: : 2207it [00:45, 47.55it/s, failures=0, objective=-11.4]

    Random Search:: : 2208it [00:45, 47.55it/s, failures=0, objective=-11.4]

    Random Search:: : 2209it [00:45, 44.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2209it [00:45, 44.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2210it [00:45, 44.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2211it [00:45, 44.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2212it [00:45, 44.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2213it [00:45, 44.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2214it [00:45, 44.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2215it [00:45, 44.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2216it [00:45, 44.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2217it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2217it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2218it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2219it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2220it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2221it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2222it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2223it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2224it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2225it [00:45, 49.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2226it [00:45, 55.67it/s, failures=0, objective=-11.4]

    Random Search:: : 2226it [00:45, 55.67it/s, failures=0, objective=-11.4]

    Random Search:: : 2227it [00:45, 55.67it/s, failures=0, objective=-11.4]

    Random Search:: : 2228it [00:45, 55.67it/s, failures=0, objective=-11.4]

    Random Search:: : 2229it [00:45, 55.67it/s, failures=0, objective=-11.4]

    Random Search:: : 2230it [00:45, 55.67it/s, failures=0, objective=-11.4]

    Random Search:: : 2231it [00:45, 55.67it/s, failures=0, objective=-11.4]

    Random Search:: : 2232it [00:45, 48.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2232it [00:45, 48.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2233it [00:45, 48.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2234it [00:45, 48.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2235it [00:45, 48.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2236it [00:45, 48.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2237it [00:45, 48.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2238it [00:45, 50.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2238it [00:45, 50.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2239it [00:45, 50.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2240it [00:45, 50.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2241it [00:45, 50.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2242it [00:45, 50.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2243it [00:45, 50.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2244it [00:45, 50.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2245it [00:45, 54.44it/s, failures=0, objective=-11.4]

    Random Search:: : 2245it [00:45, 54.44it/s, failures=0, objective=-11.4]

    Random Search:: : 2246it [00:45, 54.44it/s, failures=0, objective=-11.4]

    Random Search:: : 2247it [00:45, 54.44it/s, failures=0, objective=-11.4]

    Random Search:: : 2248it [00:45, 54.44it/s, failures=0, objective=-11.4]

    Random Search:: : 2249it [00:45, 54.44it/s, failures=0, objective=-11.4]

    Random Search:: : 2250it [00:45, 54.44it/s, failures=0, objective=-11.4]

    Random Search:: : 2251it [00:45, 53.83it/s, failures=0, objective=-11.4]

    Random Search:: : 2251it [00:45, 53.83it/s, failures=0, objective=-11.4]

    Random Search:: : 2252it [00:45, 53.83it/s, failures=0, objective=-11.4]

    Random Search:: : 2253it [00:45, 53.83it/s, failures=0, objective=-11.4]

    Random Search:: : 2254it [00:45, 53.83it/s, failures=0, objective=-11.4]

    Random Search:: : 2255it [00:45, 53.83it/s, failures=0, objective=-11.4]

    Random Search:: : 2256it [00:45, 53.83it/s, failures=0, objective=-11.4]

    Random Search:: : 2257it [00:45, 53.83it/s, failures=0, objective=-11.4]

    Random Search:: : 2258it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2258it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2259it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2260it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2261it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2262it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2263it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2264it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2265it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2266it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2267it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2268it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2269it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2270it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2271it [00:46, 49.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2272it [00:46, 69.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2272it [00:46, 69.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2273it [00:46, 69.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2274it [00:46, 69.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2275it [00:46, 69.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2276it [00:46, 69.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2277it [00:46, 69.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2278it [00:46, 69.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2279it [00:46, 69.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2280it [00:46, 60.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2280it [00:46, 60.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2281it [00:46, 60.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2282it [00:46, 60.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2283it [00:46, 60.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2284it [00:46, 60.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2285it [00:46, 60.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2286it [00:46, 60.34it/s, failures=0, objective=-11.4]

    Random Search:: : 2287it [00:46, 57.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2287it [00:46, 57.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2288it [00:46, 57.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2289it [00:46, 57.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2290it [00:46, 57.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2291it [00:46, 57.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2292it [00:46, 57.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2293it [00:46, 57.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2294it [00:46, 47.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2294it [00:46, 47.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2295it [00:46, 47.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2296it [00:46, 47.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2297it [00:46, 47.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2298it [00:46, 47.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2299it [00:46, 47.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2300it [00:46, 45.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2300it [00:46, 45.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2301it [00:46, 45.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2302it [00:46, 45.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2303it [00:46, 45.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2304it [00:46, 45.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2305it [00:46, 45.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2306it [00:46, 45.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2307it [00:46, 46.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2307it [00:46, 46.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2308it [00:47, 46.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2309it [00:47, 46.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2310it [00:47, 46.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2311it [00:47, 46.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2312it [00:47, 46.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2313it [00:47, 46.05it/s, failures=0, objective=-11.4]

    Random Search:: : 2314it [00:47, 50.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2314it [00:47, 50.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2315it [00:47, 50.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2316it [00:47, 50.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2317it [00:47, 50.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2318it [00:47, 50.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2319it [00:47, 50.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2320it [00:47, 46.96it/s, failures=0, objective=-11.4]

    Random Search:: : 2320it [00:47, 46.96it/s, failures=0, objective=-11.4]

    Random Search:: : 2321it [00:47, 46.96it/s, failures=0, objective=-11.4]

    Random Search:: : 2322it [00:47, 46.96it/s, failures=0, objective=-11.4]

    Random Search:: : 2323it [00:47, 46.96it/s, failures=0, objective=-11.4]

    Random Search:: : 2324it [00:47, 46.96it/s, failures=0, objective=-11.4]

    Random Search:: : 2325it [00:47, 46.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2325it [00:47, 46.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2326it [00:47, 46.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2327it [00:47, 46.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2328it [00:47, 46.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2329it [00:47, 46.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2330it [00:47, 45.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2330it [00:47, 45.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2331it [00:47, 45.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2332it [00:47, 45.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2333it [00:47, 45.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2334it [00:47, 45.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2335it [00:47, 45.57it/s, failures=0, objective=-11.4]

    Random Search:: : 2336it [00:47, 45.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2336it [00:47, 45.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2337it [00:47, 45.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2338it [00:47, 45.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2339it [00:47, 45.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2340it [00:47, 45.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2341it [00:47, 44.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2341it [00:47, 44.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2342it [00:47, 44.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2343it [00:47, 44.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2344it [00:47, 44.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2345it [00:47, 44.84it/s, failures=0, objective=-11.4]

    Random Search:: : 2346it [00:47, 46.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2346it [00:47, 46.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2347it [00:47, 46.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2348it [00:47, 46.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2349it [00:47, 46.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2350it [00:47, 46.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2351it [00:47, 46.01it/s, failures=0, objective=-11.4]

    Random Search:: : 2352it [00:47, 49.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2352it [00:47, 49.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2353it [00:47, 49.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2354it [00:47, 49.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2355it [00:47, 49.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2356it [00:47, 49.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2357it [00:47, 49.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2358it [00:48, 49.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2359it [00:48, 49.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2360it [00:48, 54.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2360it [00:48, 54.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2361it [00:48, 54.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2362it [00:48, 54.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2363it [00:48, 54.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2364it [00:48, 54.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2365it [00:48, 54.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2366it [00:48, 54.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2367it [00:48, 55.30it/s, failures=0, objective=-11.4]

    Random Search:: : 2367it [00:48, 55.30it/s, failures=0, objective=-11.4]

    Random Search:: : 2368it [00:48, 55.30it/s, failures=0, objective=-11.4]

    Random Search:: : 2369it [00:48, 55.30it/s, failures=0, objective=-11.4]

    Random Search:: : 2370it [00:48, 55.30it/s, failures=0, objective=-11.4]

    Random Search:: : 2371it [00:48, 55.30it/s, failures=0, objective=-11.4]

    Random Search:: : 2372it [00:48, 55.30it/s, failures=0, objective=-11.4]

    Random Search:: : 2373it [00:48, 48.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2373it [00:48, 48.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2374it [00:48, 48.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2375it [00:48, 48.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2376it [00:48, 48.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2377it [00:48, 48.42it/s, failures=0, objective=-11.4]

    Random Search:: : 2378it [00:48, 48.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2378it [00:48, 48.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2379it [00:48, 48.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2380it [00:48, 48.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2381it [00:48, 48.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2382it [00:48, 48.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2383it [00:48, 48.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2384it [00:48, 48.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2384it [00:48, 48.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2385it [00:48, 48.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2386it [00:48, 48.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2387it [00:48, 48.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2388it [00:48, 48.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2389it [00:48, 47.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2389it [00:48, 47.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2390it [00:48, 47.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2391it [00:48, 47.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2392it [00:48, 47.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2393it [00:48, 47.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2394it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2394it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2395it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2396it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2397it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2398it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2399it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2400it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2401it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2402it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2403it [00:48, 45.77it/s, failures=0, objective=-11.4]

    Random Search:: : 2404it [00:48, 58.23it/s, failures=0, objective=-11.4]

    Random Search:: : 2404it [00:48, 58.23it/s, failures=0, objective=-11.4]

    Random Search:: : 2405it [00:48, 58.23it/s, failures=0, objective=-11.4]

    Random Search:: : 2406it [00:48, 58.23it/s, failures=0, objective=-11.4]

    Random Search:: : 2407it [00:48, 58.23it/s, failures=0, objective=-11.4]

    Random Search:: : 2408it [00:48, 58.23it/s, failures=0, objective=-11.4]

    Random Search:: : 2409it [00:49, 58.23it/s, failures=0, objective=-11.4]

    Random Search:: : 2410it [00:49, 56.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2410it [00:49, 56.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2411it [00:49, 56.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2412it [00:49, 56.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2413it [00:49, 56.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2414it [00:49, 56.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2415it [00:49, 56.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2416it [00:49, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2416it [00:49, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2417it [00:49, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2418it [00:49, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2419it [00:49, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2420it [00:49, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2421it [00:49, 56.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2422it [00:49, 50.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2422it [00:49, 50.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2423it [00:49, 50.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2424it [00:49, 50.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2425it [00:49, 50.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2426it [00:49, 50.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2427it [00:49, 50.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2428it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2428it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2429it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2430it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2431it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2432it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2433it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2434it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2435it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2436it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2437it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2438it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2439it [00:49, 36.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2440it [00:49, 50.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2440it [00:49, 50.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2441it [00:49, 50.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2442it [00:49, 50.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2443it [00:49, 50.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2444it [00:49, 50.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2445it [00:49, 50.72it/s, failures=0, objective=-11.4]

    Random Search:: : 2446it [00:49, 51.79it/s, failures=0, objective=-11.4]

    Random Search:: : 2446it [00:49, 51.79it/s, failures=0, objective=-11.4]

    Random Search:: : 2447it [00:49, 51.79it/s, failures=0, objective=-11.4]

    Random Search:: : 2448it [00:49, 51.79it/s, failures=0, objective=-11.4]

    Random Search:: : 2449it [00:49, 51.79it/s, failures=0, objective=-11.4]

    Random Search:: : 2450it [00:49, 51.79it/s, failures=0, objective=-11.4]

    Random Search:: : 2451it [00:49, 51.79it/s, failures=0, objective=-11.4]

    Random Search:: : 2452it [00:49, 51.79it/s, failures=0, objective=-11.4]

    Random Search:: : 2453it [00:49, 51.79it/s, failures=0, objective=-11.4]

    Random Search:: : 2454it [00:49, 55.19it/s, failures=0, objective=-11.4]

    Random Search:: : 2454it [00:49, 55.19it/s, failures=0, objective=-11.4]

    Random Search:: : 2455it [00:49, 55.19it/s, failures=0, objective=-11.4]

    Random Search:: : 2456it [00:49, 55.19it/s, failures=0, objective=-11.4]

    Random Search:: : 2457it [00:49, 55.19it/s, failures=0, objective=-11.4]

    Random Search:: : 2458it [00:50, 55.19it/s, failures=0, objective=-11.4]

    Random Search:: : 2459it [00:50, 55.19it/s, failures=0, objective=-11.4]

    Random Search:: : 2460it [00:50, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 2460it [00:50, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 2461it [00:50, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 2462it [00:50, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 2463it [00:50, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 2464it [00:50, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 2465it [00:50, 48.60it/s, failures=0, objective=-11.4]

    Random Search:: : 2466it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2466it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2467it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2468it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2469it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2470it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2471it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2472it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2473it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2474it [00:50, 45.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2475it [00:50, 50.91it/s, failures=0, objective=-11.4]

    Random Search:: : 2475it [00:50, 50.91it/s, failures=0, objective=-11.4]

    Random Search:: : 2476it [00:50, 50.91it/s, failures=0, objective=-11.4]

    Random Search:: : 2477it [00:50, 50.91it/s, failures=0, objective=-11.4]

    Random Search:: : 2478it [00:50, 50.91it/s, failures=0, objective=-11.4]

    Random Search:: : 2479it [00:50, 50.91it/s, failures=0, objective=-11.4]

    Random Search:: : 2480it [00:50, 50.91it/s, failures=0, objective=-11.4]

    Random Search:: : 2481it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2481it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2482it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2483it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2484it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2485it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2486it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2487it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2488it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2489it [00:50, 37.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2490it [00:50, 47.00it/s, failures=0, objective=-11.4]

    Random Search:: : 2490it [00:50, 47.00it/s, failures=0, objective=-11.4]

    Random Search:: : 2491it [00:50, 47.00it/s, failures=0, objective=-11.4]

    Random Search:: : 2492it [00:50, 47.00it/s, failures=0, objective=-11.4]

    Random Search:: : 2493it [00:50, 47.00it/s, failures=0, objective=-11.4]

    Random Search:: : 2494it [00:50, 47.00it/s, failures=0, objective=-11.4]

    Random Search:: : 2495it [00:50, 47.00it/s, failures=0, objective=-11.4]

    Random Search:: : 2496it [00:50, 47.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2496it [00:50, 47.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2497it [00:50, 47.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2498it [00:50, 47.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2499it [00:50, 47.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2500it [00:50, 47.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2501it [00:51, 47.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2502it [00:51, 47.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2502it [00:51, 47.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2503it [00:51, 47.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2504it [00:51, 47.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2505it [00:51, 47.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2506it [00:51, 47.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2507it [00:51, 47.24it/s, failures=0, objective=-11.4]

    Random Search:: : 2508it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2508it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2509it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2510it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2511it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2512it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2513it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2514it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2515it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2516it [00:51, 45.54it/s, failures=0, objective=-11.4]

    Random Search:: : 2517it [00:51, 48.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2517it [00:51, 48.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2518it [00:51, 48.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2519it [00:51, 48.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2520it [00:51, 48.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2521it [00:51, 48.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2522it [00:51, 48.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2523it [00:51, 45.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2523it [00:51, 45.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2524it [00:51, 45.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2525it [00:51, 45.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2526it [00:51, 45.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2527it [00:51, 45.38it/s, failures=0, objective=-11.4]

    Random Search:: : 2528it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2528it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2529it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2530it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2531it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2532it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2533it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2534it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2535it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2536it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2537it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2538it [00:51, 39.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2539it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2539it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2540it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2541it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2542it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2543it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2544it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2545it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2546it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2547it [00:51, 52.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2548it [00:51, 58.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2548it [00:51, 58.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2549it [00:51, 58.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2550it [00:51, 58.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2551it [00:51, 58.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2552it [00:51, 58.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2553it [00:51, 58.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2554it [00:51, 58.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2555it [00:51, 60.68it/s, failures=0, objective=-11.4]

    Random Search:: : 2555it [00:51, 60.68it/s, failures=0, objective=-11.4]

    Random Search:: : 2556it [00:52, 60.68it/s, failures=0, objective=-11.4]

    Random Search:: : 2557it [00:52, 60.68it/s, failures=0, objective=-11.4]

    Random Search:: : 2558it [00:52, 60.68it/s, failures=0, objective=-11.4]

    Random Search:: : 2559it [00:52, 60.68it/s, failures=0, objective=-11.4]

    Random Search:: : 2560it [00:52, 60.68it/s, failures=0, objective=-11.4]

    Random Search:: : 2561it [00:52, 60.68it/s, failures=0, objective=-11.4]

    Random Search:: : 2562it [00:52, 57.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2562it [00:52, 57.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2563it [00:52, 57.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2564it [00:52, 57.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2565it [00:52, 57.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2566it [00:52, 57.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2567it [00:52, 57.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2568it [00:52, 57.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2569it [00:52, 53.14it/s, failures=0, objective=-11.4]

    Random Search:: : 2569it [00:52, 53.14it/s, failures=0, objective=-11.4]

    Random Search:: : 2570it [00:52, 53.14it/s, failures=0, objective=-11.4]

    Random Search:: : 2571it [00:52, 53.14it/s, failures=0, objective=-11.4]

    Random Search:: : 2572it [00:52, 53.14it/s, failures=0, objective=-11.4]

    Random Search:: : 2573it [00:52, 53.14it/s, failures=0, objective=-11.4]

    Random Search:: : 2574it [00:52, 53.14it/s, failures=0, objective=-11.4]

    Random Search:: : 2575it [00:52, 51.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2575it [00:52, 51.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2576it [00:52, 51.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2577it [00:52, 51.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2578it [00:52, 51.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2579it [00:52, 51.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2580it [00:52, 51.13it/s, failures=0, objective=-11.4]

    Random Search:: : 2581it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2581it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2582it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2583it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2584it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2585it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2586it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2587it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2588it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2589it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2590it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2591it [00:52, 46.28it/s, failures=0, objective=-11.4]

    Random Search:: : 2592it [00:52, 56.97it/s, failures=0, objective=-11.4]

    Random Search:: : 2592it [00:52, 56.97it/s, failures=0, objective=-11.4]

    Random Search:: : 2593it [00:52, 56.97it/s, failures=0, objective=-11.4]

    Random Search:: : 2594it [00:52, 56.97it/s, failures=0, objective=-11.4]

    Random Search:: : 2595it [00:52, 56.97it/s, failures=0, objective=-11.4]

    Random Search:: : 2596it [00:52, 56.97it/s, failures=0, objective=-11.4]

    Random Search:: : 2597it [00:52, 56.97it/s, failures=0, objective=-11.4]

    Random Search:: : 2598it [00:52, 46.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2598it [00:52, 46.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2599it [00:52, 46.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2600it [00:52, 46.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2601it [00:52, 46.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2602it [00:52, 46.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2603it [00:52, 46.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2604it [00:53, 46.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2605it [00:53, 48.49it/s, failures=0, objective=-11.4]

    Random Search:: : 2605it [00:53, 48.49it/s, failures=0, objective=-11.4]

    Random Search:: : 2606it [00:53, 48.49it/s, failures=0, objective=-11.4]

    Random Search:: : 2607it [00:53, 48.49it/s, failures=0, objective=-11.4]

    Random Search:: : 2608it [00:53, 48.49it/s, failures=0, objective=-11.4]

    Random Search:: : 2609it [00:53, 48.49it/s, failures=0, objective=-11.4]

    Random Search:: : 2610it [00:53, 48.49it/s, failures=0, objective=-11.4]

    Random Search:: : 2611it [00:53, 48.22it/s, failures=0, objective=-11.4]

    Random Search:: : 2611it [00:53, 48.22it/s, failures=0, objective=-11.4]

    Random Search:: : 2612it [00:53, 48.22it/s, failures=0, objective=-11.4]

    Random Search:: : 2613it [00:53, 48.22it/s, failures=0, objective=-11.4]

    Random Search:: : 2614it [00:53, 48.22it/s, failures=0, objective=-11.4]

    Random Search:: : 2615it [00:53, 48.22it/s, failures=0, objective=-11.4]

    Random Search:: : 2616it [00:53, 48.22it/s, failures=0, objective=-11.4]

    Random Search:: : 2617it [00:53, 49.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2617it [00:53, 49.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2618it [00:53, 49.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2619it [00:53, 49.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2620it [00:53, 49.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2621it [00:53, 49.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2622it [00:53, 49.80it/s, failures=0, objective=-11.4]

    Random Search:: : 2623it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2623it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2624it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2625it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2626it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2627it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2628it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2629it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2630it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2631it [00:53, 49.47it/s, failures=0, objective=-11.4]

    Random Search:: : 2632it [00:53, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2632it [00:53, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2633it [00:53, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2634it [00:53, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2635it [00:53, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2636it [00:53, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2637it [00:53, 56.62it/s, failures=0, objective=-11.4]

    Random Search:: : 2638it [00:53, 51.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2638it [00:53, 51.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2639it [00:53, 51.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2640it [00:53, 51.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2641it [00:53, 51.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2642it [00:53, 51.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2643it [00:53, 51.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2644it [00:53, 51.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2645it [00:53, 51.88it/s, failures=0, objective=-11.4]

    Random Search:: : 2646it [00:53, 53.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2646it [00:53, 53.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2647it [00:53, 53.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2648it [00:53, 53.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2649it [00:53, 53.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2650it [00:53, 53.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2651it [00:53, 53.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2652it [00:53, 54.02it/s, failures=0, objective=-11.4]

    Random Search:: : 2652it [00:53, 54.02it/s, failures=0, objective=-11.4]

    Random Search:: : 2653it [00:53, 54.02it/s, failures=0, objective=-11.4]

    Random Search:: : 2654it [00:53, 54.02it/s, failures=0, objective=-11.4]

    Random Search:: : 2655it [00:53, 54.02it/s, failures=0, objective=-11.4]

    Random Search:: : 2656it [00:53, 54.02it/s, failures=0, objective=-11.4]

    Random Search:: : 2657it [00:53, 54.02it/s, failures=0, objective=-11.4]

    Random Search:: : 2658it [00:54, 54.02it/s, failures=0, objective=-11.4]

    Random Search:: : 2659it [00:54, 53.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2659it [00:54, 53.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2660it [00:54, 53.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2661it [00:54, 53.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2662it [00:54, 53.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2663it [00:54, 53.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2664it [00:54, 53.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2665it [00:54, 53.26it/s, failures=0, objective=-11.4]

    Random Search:: : 2666it [00:54, 49.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2666it [00:54, 49.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2667it [00:54, 49.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2668it [00:54, 49.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2669it [00:54, 49.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2670it [00:54, 49.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2671it [00:54, 49.03it/s, failures=0, objective=-11.4]

    Random Search:: : 2672it [00:54, 46.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2672it [00:54, 46.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2673it [00:54, 46.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2674it [00:54, 46.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2675it [00:54, 46.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2676it [00:54, 46.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2677it [00:54, 46.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2678it [00:54, 46.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2679it [00:54, 46.33it/s, failures=0, objective=-11.4]

    Random Search:: : 2680it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2680it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2681it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2682it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2683it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2684it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2685it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2686it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2687it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2688it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2689it [00:54, 50.85it/s, failures=0, objective=-11.4]

    Random Search:: : 2690it [00:54, 60.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2690it [00:54, 60.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2691it [00:54, 60.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2692it [00:54, 60.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2693it [00:54, 60.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2694it [00:54, 60.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2695it [00:54, 60.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2696it [00:54, 60.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2697it [00:54, 53.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2697it [00:54, 53.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2698it [00:54, 53.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2699it [00:54, 53.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2700it [00:54, 53.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2701it [00:54, 53.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2702it [00:54, 53.32it/s, failures=0, objective=-11.4]

    Random Search:: : 2703it [00:54, 48.25it/s, failures=0, objective=-11.4]

    Random Search:: : 2703it [00:54, 48.25it/s, failures=0, objective=-11.4]

    Random Search:: : 2704it [00:54, 48.25it/s, failures=0, objective=-11.4]

    Random Search:: : 2705it [00:54, 48.25it/s, failures=0, objective=-11.4]

    Random Search:: : 2706it [00:54, 48.25it/s, failures=0, objective=-11.4]

    Random Search:: : 2707it [00:54, 48.25it/s, failures=0, objective=-11.4]

    Random Search:: : 2708it [00:54, 48.25it/s, failures=0, objective=-11.4]

    Random Search:: : 2709it [00:55, 48.25it/s, failures=0, objective=-11.4]

    Random Search:: : 2710it [00:55, 52.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2710it [00:55, 52.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2711it [00:55, 52.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2712it [00:55, 52.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2713it [00:55, 52.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2714it [00:55, 52.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2715it [00:55, 52.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2716it [00:55, 49.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2716it [00:55, 49.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2717it [00:55, 49.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2718it [00:55, 49.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2719it [00:55, 49.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2720it [00:55, 49.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2721it [00:55, 49.90it/s, failures=0, objective=-11.4]

    Random Search:: : 2722it [00:55, 48.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2722it [00:55, 48.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2723it [00:55, 48.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2724it [00:55, 48.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2725it [00:55, 48.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2726it [00:55, 48.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2727it [00:55, 48.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2728it [00:55, 48.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2729it [00:55, 48.63it/s, failures=0, objective=-11.4]

    Random Search:: : 2730it [00:55, 54.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2730it [00:55, 54.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2731it [00:55, 54.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2732it [00:55, 54.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2733it [00:55, 54.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2734it [00:55, 54.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2735it [00:55, 54.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2736it [00:55, 54.56it/s, failures=0, objective=-11.4]

    Random Search:: : 2737it [00:55, 50.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2737it [00:55, 50.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2738it [00:55, 50.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2739it [00:55, 50.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2740it [00:55, 50.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2741it [00:55, 50.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2742it [00:55, 50.40it/s, failures=0, objective=-11.4]

    Random Search:: : 2743it [00:55, 48.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2743it [00:55, 48.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2744it [00:55, 48.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2745it [00:55, 48.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2746it [00:55, 48.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2747it [00:55, 48.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2748it [00:55, 46.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2748it [00:55, 46.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2749it [00:55, 46.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2750it [00:55, 46.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2751it [00:55, 46.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2752it [00:55, 46.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2753it [00:55, 46.58it/s, failures=0, objective=-11.4]

    Random Search:: : 2754it [00:55, 48.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2754it [00:55, 48.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2755it [00:55, 48.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2756it [00:55, 48.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2757it [00:55, 48.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2758it [00:56, 48.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2759it [00:56, 48.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2760it [00:56, 48.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2761it [00:56, 48.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2762it [00:56, 54.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2762it [00:56, 54.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2763it [00:56, 54.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2764it [00:56, 54.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2765it [00:56, 54.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2766it [00:56, 54.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2767it [00:56, 54.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2768it [00:56, 54.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2769it [00:56, 54.36it/s, failures=0, objective=-11.4]

    Random Search:: : 2770it [00:56, 54.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2770it [00:56, 54.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2771it [00:56, 54.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2772it [00:56, 54.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2773it [00:56, 54.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2774it [00:56, 54.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2775it [00:56, 54.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2776it [00:56, 53.92it/s, failures=0, objective=-11.4]

    Random Search:: : 2776it [00:56, 53.92it/s, failures=0, objective=-11.4]

    Random Search:: : 2777it [00:56, 53.92it/s, failures=0, objective=-11.4]

    Random Search:: : 2778it [00:56, 53.92it/s, failures=0, objective=-11.4]

    Random Search:: : 2779it [00:56, 53.92it/s, failures=0, objective=-11.4]

    Random Search:: : 2780it [00:56, 53.92it/s, failures=0, objective=-11.4]

    Random Search:: : 2781it [00:56, 53.92it/s, failures=0, objective=-11.4]

    Random Search:: : 2782it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2782it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2783it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2784it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2785it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2786it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2787it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2788it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2789it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2790it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2791it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2792it [00:56, 51.51it/s, failures=0, objective=-11.4]

    Random Search:: : 2793it [00:56, 52.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2793it [00:56, 52.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2794it [00:56, 52.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2795it [00:56, 52.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2796it [00:56, 52.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2797it [00:56, 52.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2798it [00:56, 52.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2799it [00:56, 52.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2800it [00:56, 52.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2801it [00:56, 57.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2801it [00:56, 57.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2802it [00:56, 57.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2803it [00:56, 57.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2804it [00:56, 57.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2805it [00:56, 57.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2806it [00:56, 57.98it/s, failures=0, objective=-11.4]

    Random Search:: : 2807it [00:57, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2807it [00:57, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2808it [00:57, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2809it [00:57, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2810it [00:57, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2811it [00:57, 41.99it/s, failures=0, objective=-11.4]

    Random Search:: : 2812it [00:57, 40.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2812it [00:57, 40.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2813it [00:57, 40.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2814it [00:57, 40.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2815it [00:57, 40.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2816it [00:57, 40.94it/s, failures=0, objective=-11.4]

    Random Search:: : 2817it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2817it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2818it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2819it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2820it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2821it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2822it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2823it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2824it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2825it [00:57, 37.27it/s, failures=0, objective=-11.4]

    Random Search:: : 2826it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2826it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2827it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2828it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2829it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2830it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2831it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2832it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2833it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2834it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2835it [00:57, 47.93it/s, failures=0, objective=-11.4]

    Random Search:: : 2836it [00:57, 55.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2836it [00:57, 55.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2837it [00:57, 55.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2838it [00:57, 55.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2839it [00:57, 55.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2840it [00:57, 55.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2841it [00:57, 55.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2842it [00:57, 55.18it/s, failures=0, objective=-11.4]

    Random Search:: : 2843it [00:57, 50.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2843it [00:57, 50.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2844it [00:57, 50.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2845it [00:57, 50.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2846it [00:57, 50.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2847it [00:57, 50.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2848it [00:57, 50.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2849it [00:57, 50.66it/s, failures=0, objective=-11.4]

    Random Search:: : 2850it [00:57, 54.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2850it [00:57, 54.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2851it [00:57, 54.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2852it [00:57, 54.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2853it [00:57, 54.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2854it [00:57, 54.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2855it [00:57, 54.53it/s, failures=0, objective=-11.4]

    Random Search:: : 2856it [00:57, 51.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2856it [00:57, 51.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2857it [00:58, 51.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2858it [00:58, 51.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2859it [00:58, 51.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2860it [00:58, 51.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2861it [00:58, 51.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2862it [00:58, 51.43it/s, failures=0, objective=-11.4]

    Random Search:: : 2863it [00:58, 54.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2863it [00:58, 54.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2864it [00:58, 54.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2865it [00:58, 54.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2866it [00:58, 54.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2867it [00:58, 54.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2868it [00:58, 54.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2869it [00:58, 53.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2869it [00:58, 53.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2870it [00:58, 53.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2871it [00:58, 53.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2872it [00:58, 53.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2873it [00:58, 53.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2874it [00:58, 53.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2875it [00:58, 53.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2876it [00:58, 53.35it/s, failures=0, objective=-11.4]

    Random Search:: : 2877it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2877it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2878it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2879it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2880it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2881it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2882it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2883it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2884it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2885it [00:58, 52.76it/s, failures=0, objective=-11.4]

    Random Search:: : 2886it [00:58, 55.06it/s, failures=0, objective=-11.4]

    Random Search:: : 2886it [00:58, 55.06it/s, failures=0, objective=-11.4]

    Random Search:: : 2887it [00:58, 55.06it/s, failures=0, objective=-11.4]

    Random Search:: : 2888it [00:58, 55.06it/s, failures=0, objective=-11.4]

    Random Search:: : 2889it [00:58, 55.06it/s, failures=0, objective=-11.4]

    Random Search:: : 2890it [00:58, 55.06it/s, failures=0, objective=-11.4]

    Random Search:: : 2891it [00:58, 55.06it/s, failures=0, objective=-11.4]

    Random Search:: : 2892it [00:58, 45.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2892it [00:58, 45.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2893it [00:58, 45.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2894it [00:58, 45.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2895it [00:58, 45.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2896it [00:58, 45.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2897it [00:58, 45.20it/s, failures=0, objective=-11.4]

    Random Search:: : 2898it [00:58, 48.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2898it [00:58, 48.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2899it [00:58, 48.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2900it [00:58, 48.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2901it [00:58, 48.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2902it [00:58, 48.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2903it [00:58, 48.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2904it [00:58, 48.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2905it [00:58, 48.69it/s, failures=0, objective=-11.4]

    Random Search:: : 2905it [00:58, 48.69it/s, failures=0, objective=-11.4]

    Random Search:: : 2906it [00:59, 48.69it/s, failures=0, objective=-11.4]

    Random Search:: : 2907it [00:59, 48.69it/s, failures=0, objective=-11.4]

    Random Search:: : 2908it [00:59, 48.69it/s, failures=0, objective=-11.4]

    Random Search:: : 2909it [00:59, 48.69it/s, failures=0, objective=-11.4]

    Random Search:: : 2910it [00:59, 48.69it/s, failures=0, objective=-11.4]

    Random Search:: : 2911it [00:59, 43.07it/s, failures=0, objective=-11.4]

    Random Search:: : 2911it [00:59, 43.07it/s, failures=0, objective=-11.4]

    Random Search:: : 2912it [00:59, 43.07it/s, failures=0, objective=-11.4]

    Random Search:: : 2913it [00:59, 43.07it/s, failures=0, objective=-11.4]

    Random Search:: : 2914it [00:59, 43.07it/s, failures=0, objective=-11.4]

    Random Search:: : 2915it [00:59, 43.07it/s, failures=0, objective=-11.4]

    Random Search:: : 2916it [00:59, 40.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2916it [00:59, 40.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2917it [00:59, 40.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2918it [00:59, 40.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2919it [00:59, 40.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2920it [00:59, 40.31it/s, failures=0, objective=-11.4]

    Random Search:: : 2921it [00:59, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2921it [00:59, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2922it [00:59, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2923it [00:59, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2924it [00:59, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2925it [00:59, 41.17it/s, failures=0, objective=-11.4]

    Random Search:: : 2926it [00:59, 41.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2926it [00:59, 41.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2927it [00:59, 41.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2928it [00:59, 41.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2929it [00:59, 41.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2930it [00:59, 41.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2931it [00:59, 41.48it/s, failures=0, objective=-11.4]

    Random Search:: : 2932it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2932it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2933it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2934it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2935it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2936it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2937it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2938it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2939it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2940it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2941it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2942it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2943it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2944it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2945it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2946it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2947it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2948it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2949it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2950it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2951it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2952it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2953it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2954it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2955it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2956it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2957it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2958it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2959it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2960it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2961it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2962it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2963it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2964it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2965it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2966it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2967it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2968it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2969it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2970it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2971it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2972it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2973it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2974it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2975it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2976it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2977it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2978it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2979it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2980it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2981it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2982it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2983it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2984it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2985it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2986it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2987it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2988it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2989it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2990it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2991it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2992it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2993it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2994it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2995it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2996it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2997it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2998it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 2999it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3000it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3001it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3002it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3003it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3004it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3005it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3006it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3007it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3008it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3009it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3010it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3011it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3012it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3013it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3014it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3015it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3016it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3017it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3018it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3019it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3020it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3021it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3022it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3023it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3024it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3025it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3026it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3027it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3028it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3029it [01:02,  6.09it/s, failures=0, objective=-11.4]

    Random Search:: : 3030it [01:02,  6.09it/s, failures=0, objective=-11.4]

.. raw:: html

    <div class="output_subarea output_html rendered_html output_result">
    <div>
    <style scoped>
        .dataframe tbody tr th:only-of-type {
            vertical-align: middle;
        }

        .dataframe tbody tr th {
            vertical-align: top;
        }

        .dataframe thead th {
            text-align: right;
        }
    </style>
    <table border="1" class="dataframe">
      <thead>
        <tr style="text-align: right;">
          <th></th>
          <th>p:x0</th>
          <th>p:x1</th>
          <th>p:x2</th>
          <th>p:x3</th>
          <th>p:x4</th>
          <th>objective</th>
          <th>job_id</th>
          <th>job_status</th>
          <th>m:timestamp_submit</th>
          <th>m:timestamp_start</th>
          <th>m:timestamp_end</th>
          <th>m:timestamp_gather</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <th>0</th>
          <td>31.784062</td>
          <td>28.359515</td>
          <td>-26.866539</td>
          <td>-28.771805</td>
          <td>-28.958426</td>
          <td>-21.348064</td>
          <td>32</td>
          <td>DONE</td>
          <td>0.005286</td>
          <td>0.001172</td>
          <td>0.410441</td>
          <td>0.416601</td>
        </tr>
        <tr>
          <th>1</th>
          <td>8.808336</td>
          <td>10.217989</td>
          <td>-17.901302</td>
          <td>-7.635965</td>
          <td>-27.056367</td>
          <td>-20.524110</td>
          <td>81</td>
          <td>DONE</td>
          <td>0.005488</td>
          <td>0.002853</td>
          <td>0.897173</td>
          <td>0.903558</td>
        </tr>
        <tr>
          <th>2</th>
          <td>-22.866986</td>
          <td>11.124310</td>
          <td>30.803408</td>
          <td>-32.757721</td>
          <td>23.657637</td>
          <td>-21.320258</td>
          <td>31</td>
          <td>DONE</td>
          <td>0.005282</td>
          <td>0.001140</td>
          <td>1.055758</td>
          <td>1.062240</td>
        </tr>
        <tr>
          <th>3</th>
          <td>2.439490</td>
          <td>-31.249300</td>
          <td>5.305296</td>
          <td>-7.941358</td>
          <td>-31.608949</td>
          <td>-21.575994</td>
          <td>73</td>
          <td>DONE</td>
          <td>0.005437</td>
          <td>0.002590</td>
          <td>1.064858</td>
          <td>1.071374</td>
        </tr>
        <tr>
          <th>4</th>
          <td>13.030643</td>
          <td>-20.868361</td>
          <td>4.658817</td>
          <td>19.252693</td>
          <td>-19.010373</td>
          <td>-20.457480</td>
          <td>82</td>
          <td>DONE</td>
          <td>0.005492</td>
          <td>0.002882</td>
          <td>1.089453</td>
          <td>1.095678</td>
        </tr>
        <tr>
          <th>...</th>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
          <td>...</td>
        </tr>
        <tr>
          <th>3025</th>
          <td>-31.544371</td>
          <td>-14.930667</td>
          <td>-16.652493</td>
          <td>-26.355147</td>
          <td>0.104181</td>
          <td>-21.500113</td>
          <td>3010</td>
          <td>CANCELLED</td>
          <td>59.578369</td>
          <td>59.572986</td>
          <td>60.989585</td>
          <td>62.777072</td>
        </tr>
        <tr>
          <th>3026</th>
          <td>-8.106489</td>
          <td>-15.275801</td>
          <td>-6.048699</td>
          <td>28.810793</td>
          <td>-1.665395</td>
          <td>-20.443724</td>
          <td>3014</td>
          <td>CANCELLED</td>
          <td>59.706098</td>
          <td>59.700682</td>
          <td>61.874662</td>
          <td>62.777226</td>
        </tr>
        <tr>
          <th>3027</th>
          <td>7.770740</td>
          <td>-4.307237</td>
          <td>26.143262</td>
          <td>-4.632427</td>
          <td>-24.134341</td>
          <td>-20.903898</td>
          <td>3015</td>
          <td>CANCELLED</td>
          <td>59.726902</td>
          <td>59.721567</td>
          <td>61.485492</td>
          <td>62.777382</td>
        </tr>
        <tr>
          <th>3028</th>
          <td>-13.041522</td>
          <td>13.273030</td>
          <td>9.096548</td>
          <td>-11.755824</td>
          <td>-1.201157</td>
          <td>-18.861829</td>
          <td>2997</td>
          <td>CANCELLED</td>
          <td>59.257354</td>
          <td>59.252034</td>
          <td>61.626801</td>
          <td>62.777537</td>
        </tr>
        <tr>
          <th>3029</th>
          <td>-20.817748</td>
          <td>-23.857191</td>
          <td>0.925195</td>
          <td>2.511989</td>
          <td>10.014952</td>
          <td>-20.232272</td>
          <td>3007</td>
          <td>CANCELLED</td>
          <td>59.498163</td>
          <td>59.492760</td>
          <td>61.284143</td>
          <td>62.777693</td>
        </tr>
      </tbody>
    </table>
    <p>3030 rows × 12 columns</p>
    </div>
    </div>
    <br />
    <br />

.. GENERATED FROM PYTHON SOURCE LINES 249-250

The number of evaluations of the random search is higher than the parallel Bayesian optimization search.

.. GENERATED FROM PYTHON SOURCE LINES 250-253

.. code-block:: Python

    print(f"Number of evaluations for the parallel Bayesian optimization: {len(results['parallel'])}")
    print(f"Number of evaluations for the random search: {len(results['random'])}")





.. rst-class:: sphx-glr-script-out

 .. code-block:: none

    Number of evaluations for the parallel Bayesian optimization: 2553
    Number of evaluations for the random search: 3030




.. GENERATED FROM PYTHON SOURCE LINES 254-255

The utilization of the worker is confirmed to be near 100% for the random search.

.. GENERATED FROM PYTHON SOURCE LINES 255-273

.. dropdown:: Code (Plot search trajectory and worker utilization)

    .. code-block:: Python


        fig, axes = plt.subplots(
                nrows=2,
                ncols=1,
                sharex=True,
                figsize=figure_size(width=600),
                tight_layout=True
            )

        _ = plot_search_trajectory_single_objective_hpo(
            results["random"], mode="min", x_units="seconds", ax=axes[0]
        )

        _ = plot_worker_utilization(
            results["random"], num_workers=1, profile_type="start/end", ax=axes[1]
        )




.. image-sg:: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_004.png
   :alt: plot from serial to parallel hpo
   :srcset: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_004.png
   :class: sphx-glr-single-img





.. GENERATED FROM PYTHON SOURCE LINES 274-275

However, the objective value of the parallel Bayesian optimization search is significantly better than the random search.

.. GENERATED FROM PYTHON SOURCE LINES 275-302

.. dropdown:: Code (Plot search trajectories)

    .. code-block:: Python


        fig, ax = plt.subplots(figsize=figure_size(width=600), tight_layout=True)
        labels = {
            "random": "Parallel Random Search",
            "sequential": "Sequential Bayesian Optimization",
            "parallel": "Parallel Bayesian Optimization",
            }
        for i, (key, label) in enumerate(labels.items()):
            df = results[key]
            _ = plot_search_trajectory_single_objective_hpo(
                df,
                show_failures=False,
                mode="min",
                x_units="seconds",
                ax=ax,
                label=label,
                plot_kwargs={"color": f"C{i}"},
                scatter_success_kwargs={"color": f"C{i}", "alpha": 0.5},
            )

        _ = ax.set_xlabel("Time (sec.)")
        _ = ax.set_ylabel("Objective")
        _ = ax.set_yscale("log")
        _ = ax.grid(visible=True, which="minor", linestyle=":")
        _ = ax.grid(visible=True, which="major", linestyle="-")
        _ = ax.legend()



.. image-sg:: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_005.png
   :alt: plot from serial to parallel hpo
   :srcset: /examples/examples_parallelism/images/sphx_glr_plot_from_serial_to_parallel_hpo_005.png
   :class: sphx-glr-single-img






.. rst-class:: sphx-glr-timing

   **Total running time of the script:** (3 minutes 8.606 seconds)


.. _sphx_glr_download_examples_examples_parallelism_plot_from_serial_to_parallel_hpo.py:

.. only:: html

  .. container:: sphx-glr-footer sphx-glr-footer-example

    .. container:: sphx-glr-download sphx-glr-download-jupyter

      :download:`Download Jupyter notebook: plot_from_serial_to_parallel_hpo.ipynb <plot_from_serial_to_parallel_hpo.ipynb>`

    .. container:: sphx-glr-download sphx-glr-download-python

      :download:`Download Python source code: plot_from_serial_to_parallel_hpo.py <plot_from_serial_to_parallel_hpo.py>`

    .. container:: sphx-glr-download sphx-glr-download-zip

      :download:`Download zipped: plot_from_serial_to_parallel_hpo.zip <plot_from_serial_to_parallel_hpo.zip>`


.. only:: html

 .. rst-class:: sphx-glr-signature

    `Gallery generated by Sphinx-Gallery <https://sphinx-gallery.github.io>`_
