diff --git a/arbeit/bibma.bib b/arbeit/bibma.bib index 47d8392..b880b6a 100644 --- a/arbeit/bibma.bib +++ b/arbeit/bibma.bib @@ -172,4 +172,15 @@ Url = {http://jcst.ict.ac.cn:8080/jcst/EN/article/downloadArticleFile.do?attachType=PDF\&id=9543} } - +@article{giannelli2012thb, + title={THB-splines: The truncated basis for hierarchical splines}, + author={Giannelli, Carlotta and J{\"u}Ttler, Bert and Speleers, Hendrik}, + journal={Computer Aided Geometric Design}, + volume={29}, + number={7}, + pages={485--498}, + year={2012}, + publisher={Elsevier}, + url={https://pdfs.semanticscholar.org/a858/aa68da617ad9d41de021f6807cc422002258.pdf}, + doi={10.1016/j.cagd.2012.03.025}, +} diff --git a/arbeit/img/1dtarget.png b/arbeit/img/1dtarget.png new file mode 100644 index 0000000..09bae71 Binary files /dev/null and b/arbeit/img/1dtarget.png differ diff --git a/arbeit/img/example1d_grid.png b/arbeit/img/example1d_grid.png new file mode 100644 index 0000000..f30452d Binary files /dev/null and b/arbeit/img/example1d_grid.png differ diff --git a/arbeit/ma.md b/arbeit/ma.md index 1cdb821..9380ac3 100644 --- a/arbeit/ma.md +++ b/arbeit/ma.md @@ -424,6 +424,7 @@ formulas for the general case so it can be adapted quite freely. ## Adaption of \ac{FFD} +\label{sec:ffd:adapt} As we have established in Chapter \ref{sec:back:ffd} we can define an \ac{FFD}--displacement as @@ -581,22 +582,95 @@ of the control--points.] to simulate different starting-conditions. # Scenarios for testing evolvability criteria using \acf{FFD} \label{sec:eval} +In our experiments we use the same two testing--scenarios, that were also used +by \cite{anrichterEvol}. The first scenario deforms a plane into a shape +originally defined in \cite{giannelli2012thb}, where we setup control-points in +a 2--dimensional manner merely deform in the height--coordinate to get the +resulting shape. + +In the second scenario we increase the degrees of freedom significantly by using +a 3--dimensional control--grid to deform a sphere into a face. So each control +point has three degrees of freedom in contrast to first scenario. + ## Test Scenario: 1D Function Approximation -### Optimierungszenario +\begin{figure}[th] +\begin{center} +\includegraphics[width=0.7\textwidth]{img/1dtarget.png} +\end{center} +\caption{The target--shape for our 1--dimensional optimization--scenario +including a wireframe--overlay of the vertices.} +\label{fig:1dtarget} +\end{figure} -- Ebene -> Template--Fit +In this scenario we used the shape defined by Giannelli et al.\cite{giannelli2012thb}, +which is also used by Richter et al.\cite{anrichterEvol} using the same +discretization to $150 \times 150$ points for a total of $n = 22\,500$ vertices. The +shape is given by the following definition +$$ +s(x,y) = +\begin{cases} +0.5 \cos(4\pi \cdot q^{0.5}) + 0.5 & q(x,y) < \frac{1}{16},\\ +2(y-x) & 0 < y-x < 0.5,\\ +1 & 0.5 < y - x +\end{cases} +$$ +with $(x,y) \in [0,2] \times [0,1]$ and $q(x,y)=(x-1.5)^2 + (y-0.5)^2$, which we have +visualized in figure \ref{fig:1dtarget}. -### Matching in 1D +As the starting-plane we used the same shape, but set all +$z$--coordinates to $0$, yielding a flat plane, which is partially already +correct. -- Trivial +Regarding the *fitness--function* $f(\vec{p})$, we use the very simple approach +of calculating the squared distances for each corresponding vertex +$$ +\textrm{f(\vec{p})} = \sum_{i=1}^{n} \|(\vec{Up})_i - s_i\|_2^2 = \|\vec{Up} - \vec{s}\|^2 \rightarrow \min +$$ +where $s_i$ are the respective solution--vertices to the parametrized +source--vertices^[The parametrization is encoded in $\vec{U}$ and the initial +position of the control points. See \ref{sec:ffd:adapt}] with the current +deformation--parameters $\vec{p} = (p_1,\dots, p_m)$. We can do this +one--to--one--correspondence because we have exactly the same number of +source and target-vertices do to our setup of just flattening the object. -### Besonderheiten der Auswertung +This formula is also the least--squares approximation error for which we +can compute the analytic solution $\vec{p^{*}} = \vec{U^+}\vec{s}$, yielding us +the correct gradient in which the evolutionary optimizer should move. -- Analytische Lösung einzig beste - - Ergebnis auch bei Rauschen konstant? - - normierter 1--Vektor auf den Gradienten addieren - - Kegel entsteht +## Procedure: 1D Function Approximation + +For our setup we first compute the coefficients of the deformation--matrix and +use then the formulas for *variability* and *regularity* to get our predictions. +Afterwards we solve the problem analytically to get the (normalized) correct +gradient that we use as guess for the *improvement potential*. To check we also +consider a distorted gradient $\vec{g}_{\textrm{d}}$ +$$ +\vec{g}_{\textrm{d}} = \frac{\vec{g}_{\textrm{c}} + \mathbb{1}}{\|\vec{g}_{\textrm{c}} + \mathbb{1}\|} +$$ +where $\mathbb{1}$ is the vector consisting of $1$ in every dimension and +$\vec{g}_\textrm{c} = \vec{p^{*}}$ the calculated correct gradient. + +We then set up a regular 2--dimensional grid around the object with the desired +grid resolutions. To generate a testcase we then move the grid--vertices +randomly inside the x--y--plane. As we do not want to generate hard to solve +grids we avoid the generation of self--intersecting grids.\improvement{besser +formulieren} To achieve that we select a uniform distributed number +$r \in [-0.25,0.25]$ per dimension and shrink the distance to the neighbours +(the smaller neighbour for $r < 0$, the larger for $r > 0$) by the factor +$r$^[Note: On the Edges this displacement is only applied outwards by flipping the sign of $r$, if appropriate.]. + +\begin{figure}[ht] +\begin{center} +\includegraphics[width=\textwidth]{img/example1d_grid.png} +\end{center} +\caption{\newline Left: A regular $7 \times 4$--grid\newline Right: The same grid after a +random distortion to generate a testcase.} +\label{fig:example1d_grid} +\end{figure} + +An Example of such a testcase can be seen for a $7 \times 4$--grid in figure +\ref{fig:example1d_grid}. ## Test Scenario: 3D Function Approximation diff --git a/arbeit/ma.pdf b/arbeit/ma.pdf index 0af94be..7fdb776 100644 Binary files a/arbeit/ma.pdf and b/arbeit/ma.pdf differ diff --git a/arbeit/ma.tex b/arbeit/ma.tex index 11a8d87..e901af3 100644 --- a/arbeit/ma.tex +++ b/arbeit/ma.tex @@ -604,6 +604,8 @@ adapted quite freely. \section{\texorpdfstring{Adaption of \ac{FFD}}{Adaption of }}\label{adaption-of} +\label{sec:ffd:adapt} + As we have established in Chapter \ref{sec:back:ffd} we can define an \ac{FFD}--displacement as @@ -763,43 +765,103 @@ using \label{sec:eval} +In our experiments we use the same two testing--scenarios, that were +also used by \cite{anrichterEvol}. The first scenario deforms a plane +into a shape originally defined in \cite{giannelli2012thb}, where we +setup control-points in a 2--dimensional manner merely deform in the +height--coordinate to get the resulting shape. + +In the second scenario we increase the degrees of freedom significantly +by using a 3--dimensional control--grid to deform a sphere into a face. +So each control point has three degrees of freedom in contrast to first +scenario. + \section{Test Scenario: 1D Function Approximation}\label{test-scenario-1d-function-approximation} -\subsection{Optimierungszenario}\label{optimierungszenario} +\begin{figure}[th] +\begin{center} +\includegraphics[width=0.7\textwidth]{img/1dtarget.png} +\end{center} +\caption{The target--shape for our 1--dimensional optimization--scenario +including a wireframe--overlay of the vertices.} +\label{fig:1dtarget} +\end{figure} -\begin{itemize} -\tightlist -\item - Ebene -\textgreater{} Template--Fit -\end{itemize} +In this scenario we used the shape defined by Giannelli et +al.\cite{giannelli2012thb}, which is also used by Richter et +al.\cite{anrichterEvol} using the same discretization to +\(150 \times 150\) points for a total of \(n = 22\,500\) vertices. The +shape is given by the following definition \[ +s(x,y) = +\begin{cases} +0.5 \cos(4\pi \cdot q^{0.5}) + 0.5 & q(x,y) < \frac{1}{16},\\ +2(y-x) & 0 < y-x < 0.5,\\ +1 & 0.5 < y - x +\end{cases} +\] with \((x,y) \in [0,2] \times [0,1]\) and +\(q(x,y)=(x-1.5)^2 + (y-0.5)^2\), which we have visualized in figure +\ref{fig:1dtarget}. -\subsection{Matching in 1D}\label{matching-in-1d} +As the starting-plane we used the same shape, but set all +\(z\)--coordinates to \(0\), yielding a flat plane, which is partially +already correct. -\begin{itemize} -\tightlist -\item - Trivial -\end{itemize} +Regarding the \emph{fitness--function} \(f(\vec{p})\), we use the very +simple approach of calculating the squared distances for each +corresponding vertex \[ +\textrm{f(\vec{p})} = \sum_{i=1}^{n} \|(\vec{Up})_i - s_i\|_2^2 = \|\vec{Up} - \vec{s}\|^2 \rightarrow \min +\] where \(s_i\) are the respective solution--vertices to the +parametrized source--vertices\footnote{The parametrization is encoded in + \(\vec{U}\) and the initial position of the control points. See + \ref{sec:ffd:adapt}} with the current deformation--parameters +\(\vec{p} = (p_1,\dots, p_m)\). We can do this +one--to--one--correspondence because we have exactly the same number of +source and target-vertices do to our setup of just flattening the +object. -\subsection{Besonderheiten der -Auswertung}\label{besonderheiten-der-auswertung} +This formula is also the least--squares approximation error for which we +can compute the analytic solution \(\vec{p^{*}} = \vec{U^+}\vec{s}\), +yielding us the correct gradient in which the evolutionary optimizer +should move. -\begin{itemize} -\tightlist -\item - Analytische Lösung einzig beste -\item - Ergebnis auch bei Rauschen konstant? -\item - normierter 1--Vektor auf den Gradienten addieren +\section{Procedure: 1D Function +Approximation}\label{procedure-1d-function-approximation} - \begin{itemize} - \tightlist - \item - Kegel entsteht - \end{itemize} -\end{itemize} +For our setup we first compute the coefficients of the +deformation--matrix and use then the formulas for \emph{variability} and +\emph{regularity} to get our predictions. Afterwards we solve the +problem analytically to get the (normalized) correct gradient that we +use as guess for the \emph{improvement potential}. To check we also +consider a distorted gradient \(\vec{g}_{\textrm{d}}\) \[ +\vec{g}_{\textrm{d}} = \frac{\vec{g}_{\textrm{c}} + \mathbb{1}}{\|\vec{g}_{\textrm{c}} + \mathbb{1}\|} +\] where \(\mathbb{1}\) is the vector consisting of \(1\) in every +dimension and \(\vec{g}_\textrm{c} = \vec{p^{*}}\) the calculated +correct gradient. + +We then set up a regular 2--dimensional grid around the object with the +desired grid resolutions. To generate a testcase we then move the +grid--vertices randomly inside the x--y--plane. As we do not want to +generate hard to solve grids we avoid the generation of +self--intersecting grids.\improvement{besser +formulieren} To achieve that we select a uniform distributed number +\(r \in [-0.25,0.25]\) per dimension and shrink the distance to the +neighbours (the smaller neighbour for \(r < 0\), the larger for +\(r > 0\)) by the factor \(r\)\footnote{Note: On the Edges this + displacement is only applied outwards by flipping the sign of \(r\), + if appropriate.}. + +\begin{figure}[ht] +\begin{center} +\includegraphics[width=\textwidth]{img/example1d_grid.png} +\end{center} +\caption{\newline Left: A regular $7 \times 4$--grid\newline Right: The same grid after a +random distortion to generate a testcase.} +\label{fig:example1d_grid} +\end{figure} + +An Example of such a testcase can be seen for a \(7 \times 4\)--grid in +figure \ref{fig:example1d_grid}. \section{Test Scenario: 3D Function Approximation}\label{test-scenario-3d-function-approximation} diff --git a/arbeit/settings/commands.tex b/arbeit/settings/commands.tex index 9d5746b..90f2952 100644 --- a/arbeit/settings/commands.tex +++ b/arbeit/settings/commands.tex @@ -154,7 +154,7 @@ \newcommand\data[1]{\marginpar{\vspace{-35pt}\begin{center} \includegraphics[width=1cm]{img/cd} \end{center}\vspace{-15pt}\centering\footnotesize\texttt{#1}}} -\renewcommand\vec[1]{\textbf{#1}} +\renewcommand{\vec}[1]{\mathbf{#1}} \newcommandx{\unsure}[2][1=]{\todo[linecolor=red,backgroundcolor=red!25,bordercolor=red,#1]{\textbf{Unsure:} #2}} \newcommandx{\change}[2][1=]{\todo[linecolor=blue,backgroundcolor=blue!25,bordercolor=blue,#1]{\textbf{Change:} #2}} \newcommandx{\info}[2][1=]{\todo[linecolor=OliveGreen,backgroundcolor=OliveGreen!25,bordercolor=OliveGreen,#1]{\textbf{Info:} #2}} diff --git a/dokumentation/evolution3d/20171013_3dFit_4x4x7_100times.log b/dokumentation/evolution3d/20171013_3dFit_4x4x7_100times.log new file mode 100644 index 0000000..8d96daa --- /dev/null +++ b/dokumentation/evolution3d/20171013_3dFit_4x4x7_100times.log @@ -0,0 +1,1920 @@ +info: using info log level +info: Free_form_deformation_plugin loaded. +info: Modelling_plugin loaded. +info: Point_set_io_plugin loaded. +info: Scene_graph_plugin loaded. +info: Selection_plugin loaded. +info: Surface_mesh_io_plugin loaded. +GL error at "after Initialize": invalid enum + +info: GLEW errorcode: 0 +info: GLEW 1.13.0 +info: OpenGL 3.3.0 NVIDIA 384.90 (Core Profile) +info: GLSL 3.30 NVIDIA via Cg compiler +info: GeForce GTX 1080/PCIe/SSE2 +info: OpenCL 1.2 CUDA 9.0.194 +info: 10807 Vertices, 21610 Faces. +info: Loaded /home/sdressel/git/graphene/offs/source_ball_10807v_good_normed.off. +info: 12024 Vertices, 23997 Faces. +info: Loaded /home/sdressel/git/graphene/offs/target_mario_12024v_rem_normed.off. +info: initialising Grid +info: bbmin: -1.01856 -1.01771 -1.01575 +info: bbmax: 1.02125 1.02206 1.02408 +info: bbsize: 2.03981 2.03977 2.03983 +info: setting up10807Points +info: worst iteration-count:3 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: setting target +info: setting source +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.57555 1.65949 1.35809 +info: bbsize: 2.93408 3.01716 2.54383 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.33021e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.695354 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 85.1149. +info: EVOL: TOTAL STEPS: 1998 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.33217 +info: bbsize: 3.01722 3.01716 2.51791 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.86305e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.696996 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 82.2095. +info: EVOL: TOTAL STEPS: 2127 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.60999 1.65949 1.31187 +info: bbsize: 2.96852 3.01716 2.49761 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.13367e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.699654 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 93.8283. +info: EVOL: TOTAL STEPS: 1339 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.33101 +info: bbsize: 3.01722 3.01716 2.51675 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.75201e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.685872 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 99.4121. +info: EVOL: TOTAL STEPS: 1936 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.64654 1.34656 +info: bbsize: 3.01722 3.00421 2.5323 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.29441e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.689831 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 84.7928. +info: EVOL: TOTAL STEPS: 1570 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.59315 1.62336 1.29218 +info: bbsize: 2.95168 2.98103 2.47792 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.37538e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.687731 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 89.4784. +info: EVOL: TOTAL STEPS: 1535 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65755 1.27506 +info: bbsize: 3.01722 3.01522 2.46079 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.72656e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.692668 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 98.0445. +info: EVOL: TOTAL STEPS: 1478 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.32083 +info: bbsize: 3.01722 3.01716 2.50656 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.69885e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.686888 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 82.4413. +info: EVOL: TOTAL STEPS: 2455 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.27476 +info: bbsize: 3.01722 3.01716 2.4605 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.94244e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.690775 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 95.9898. +info: EVOL: TOTAL STEPS: 1700 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.33104 +info: bbsize: 3.01722 3.01716 2.51678 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.02474e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.702276 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 82.9514. +info: EVOL: TOTAL STEPS: 1923 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3003 +info: bbsize: 3.01722 3.01716 2.48604 +info: setting up10807Points +info: worst iteration-count:6 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.38352e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.679235 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 95.6417. +info: EVOL: TOTAL STEPS: 1518 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64776 1.65354 1.31694 +info: bbsize: 3.00629 3.01121 2.50267 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000106945 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.68402 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 97.597. +info: EVOL: TOTAL STEPS: 1496 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.34357 +info: bbsize: 3.01722 3.01716 2.5293 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.83009e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.693436 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 92.8455. +info: EVOL: TOTAL STEPS: 2190 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64792 1.62437 1.29909 +info: bbsize: 3.00645 2.98204 2.48483 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 4.40066e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.683834 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 87.554. +info: EVOL: TOTAL STEPS: 2604 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3313 +info: bbsize: 3.01722 3.01716 2.51704 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000109585 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.689338 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 88.0962. +info: EVOL: TOTAL STEPS: 1754 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3431 +info: bbsize: 3.01722 3.01716 2.52883 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.75302e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.6934 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 92.764. +info: EVOL: TOTAL STEPS: 1940 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.31139 +info: bbsize: 3.01722 3.01716 2.49713 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.00375e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.700927 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 92.6177. +info: EVOL: TOTAL STEPS: 1908 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.54305 1.65949 1.31029 +info: bbsize: 2.90158 3.01716 2.49603 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.18399e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.683082 +info: EVOL: Converged after 15 resets of correspondences +info: EVOL: Best value: 91.9667. +info: EVOL: TOTAL STEPS: 1509 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.34811 +info: bbsize: 3.01722 3.01716 2.53385 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000116728 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.700828 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 82.2732. +info: EVOL: TOTAL STEPS: 1821 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64369 1.65949 1.3003 +info: bbsize: 3.00222 3.01716 2.48604 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.10256e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.692394 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 94.741. +info: EVOL: TOTAL STEPS: 1626 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.29885 +info: bbsize: 3.01722 3.01716 2.48459 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.72593e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.685888 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 87.4631. +info: EVOL: TOTAL STEPS: 1578 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.62329 1.62524 1.34043 +info: bbsize: 2.98182 2.98291 2.52617 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.07573e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.686368 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 99.0457. +info: EVOL: TOTAL STEPS: 1287 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.32035 +info: bbsize: 3.01722 3.01716 2.50609 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.47625e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.70257 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 83.0585. +info: EVOL: TOTAL STEPS: 3707 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.62875 1.31065 +info: bbsize: 3.01722 2.98642 2.49639 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.642e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.690792 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 87.7612. +info: EVOL: TOTAL STEPS: 1962 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3003 +info: bbsize: 3.01722 3.01716 2.48604 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.6002e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.697936 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 92.4952. +info: EVOL: TOTAL STEPS: 2188 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.62827 1.29426 +info: bbsize: 3.01722 2.98594 2.48 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.19145e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.696617 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 87.4672. +info: EVOL: TOTAL STEPS: 1709 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.59443 1.65949 1.33217 +info: bbsize: 2.95296 3.01716 2.51791 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.30803e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.69225 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 85.5196. +info: EVOL: TOTAL STEPS: 1738 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65221 1.65949 1.34811 +info: bbsize: 3.01074 3.01716 2.53385 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.5693e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.70504 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 96.1244. +info: EVOL: TOTAL STEPS: 1800 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.6575 1.28871 +info: bbsize: 3.01722 3.01517 2.47444 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.53709e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.688722 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 80.3879. +info: EVOL: TOTAL STEPS: 2687 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.30454 +info: bbsize: 3.01722 3.01716 2.49028 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000103781 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.702795 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 88.557. +info: EVOL: TOTAL STEPS: 1964 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.54008 1.65949 1.35267 +info: bbsize: 2.89861 3.01716 2.53841 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.48859e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.707829 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 80.9192. +info: EVOL: TOTAL STEPS: 1809 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3003 +info: bbsize: 3.01722 3.01716 2.48604 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.9123e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.692679 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 88.0159. +info: EVOL: TOTAL STEPS: 2308 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64701 1.65949 1.30972 +info: bbsize: 3.00554 3.01716 2.49546 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000104426 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.687809 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 92.5849. +info: EVOL: TOTAL STEPS: 1592 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.32045 +info: bbsize: 3.01722 3.01716 2.50619 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.17017e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.688038 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 95.6485. +info: EVOL: TOTAL STEPS: 1590 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.63786 1.33559 +info: bbsize: 3.01722 2.99553 2.52133 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.04185e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.696046 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 82.6378. +info: EVOL: TOTAL STEPS: 2400 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.58632 1.33217 +info: bbsize: 3.01722 2.94399 2.51791 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.52955e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.68677 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 86.2912. +info: EVOL: TOTAL STEPS: 1972 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.29852 +info: bbsize: 3.01722 3.01716 2.48425 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.0231e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.692419 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 87.6295. +info: EVOL: TOTAL STEPS: 2138 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.58128 1.62028 1.29984 +info: bbsize: 2.93981 2.97795 2.48558 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.19528e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.677021 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 93.7818. +info: EVOL: TOTAL STEPS: 2474 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3003 +info: bbsize: 3.01722 3.01716 2.48604 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 4.86728e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.695779 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 81.2872. +info: EVOL: TOTAL STEPS: 1966 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3454 +info: bbsize: 3.01722 3.01716 2.53114 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000112679 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.683283 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 92.884. +info: EVOL: TOTAL STEPS: 1525 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.35694 +info: bbsize: 3.01722 3.01716 2.54267 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 3.35026e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.693536 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 85.1577. +info: EVOL: TOTAL STEPS: 2834 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.33315 +info: bbsize: 3.01722 3.01716 2.51888 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000111562 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.701278 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 82.4601. +info: EVOL: TOTAL STEPS: 1494 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.56587 1.65949 1.33217 +info: bbsize: 2.9244 3.01716 2.51791 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.60467e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.693734 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 88.7562. +info: EVOL: TOTAL STEPS: 2850 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.5832 1.22782 +info: bbsize: 3.01722 2.94087 2.41356 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.91618e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.695836 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 85.7044. +info: EVOL: TOTAL STEPS: 1825 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64566 1.65949 1.32633 +info: bbsize: 3.00419 3.01716 2.51206 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.86723e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.695234 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 90.0389. +info: EVOL: TOTAL STEPS: 1775 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.657 1.31678 +info: bbsize: 3.01722 3.01467 2.50252 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000124082 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.693874 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 90.6256. +info: EVOL: TOTAL STEPS: 1832 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.53296 1.65949 1.23656 +info: bbsize: 2.89149 3.01716 2.4223 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.59202e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.695028 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 86.5225. +info: EVOL: TOTAL STEPS: 1412 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.36057 +info: bbsize: 3.01722 3.01716 2.54631 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.78369e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.691068 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 93.0686. +info: EVOL: TOTAL STEPS: 1522 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.6208 1.65949 1.3003 +info: bbsize: 2.97933 3.01716 2.48604 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000133166 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.70704 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 86.9607. +info: EVOL: TOTAL STEPS: 2158 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.31296 +info: bbsize: 3.01722 3.01716 2.4987 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.94058e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.687931 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 91.6042. +info: EVOL: TOTAL STEPS: 2246 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.30451 +info: bbsize: 3.01722 3.01716 2.49025 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.23195e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.686537 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 100.349. +info: EVOL: TOTAL STEPS: 1409 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65301 1.65949 1.27533 +info: bbsize: 3.01154 3.01716 2.46106 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.2505e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.695303 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 78.4994. +info: EVOL: TOTAL STEPS: 3239 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.61895 1.33125 +info: bbsize: 3.01722 2.97662 2.51699 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000118392 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.689132 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 89.8504. +info: EVOL: TOTAL STEPS: 1612 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.54686 1.65949 1.32171 +info: bbsize: 2.90538 3.01716 2.50744 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.63249e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.687783 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 83.6403. +info: EVOL: TOTAL STEPS: 2080 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.33417 +info: bbsize: 3.01722 3.01716 2.51991 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.99358e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.690797 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 101.654. +info: EVOL: TOTAL STEPS: 1713 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.33157 +info: bbsize: 3.01722 3.01716 2.51731 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.13858e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.696033 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 99.3329. +info: EVOL: TOTAL STEPS: 1566 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3016 +info: bbsize: 3.01722 3.01716 2.48733 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.29146e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.694109 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 92.788. +info: EVOL: TOTAL STEPS: 1932 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.639 1.25934 +info: bbsize: 3.01722 2.99667 2.44508 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.941e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.689276 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 83.6513. +info: EVOL: TOTAL STEPS: 2264 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.28704 +info: bbsize: 3.01722 3.01716 2.47278 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.01229e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.685375 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 85.7803. +info: EVOL: TOTAL STEPS: 2056 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.55654 1.65949 1.28584 +info: bbsize: 2.91507 3.01716 2.47157 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.00461e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.694496 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 83.9198. +info: EVOL: TOTAL STEPS: 2334 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64809 1.65949 1.35967 +info: bbsize: 3.00662 3.01716 2.54541 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.17098e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.691257 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 97.1194. +info: EVOL: TOTAL STEPS: 1678 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.33532 +info: bbsize: 3.01722 3.01716 2.52106 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.56866e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.693604 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 86.66. +info: EVOL: TOTAL STEPS: 3172 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3003 +info: bbsize: 3.01722 3.01716 2.48604 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.57536e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.696875 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 95.519. +info: EVOL: TOTAL STEPS: 1736 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.29333 +info: bbsize: 3.01722 3.01716 2.47907 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.44961e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.705914 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 94.3315. +info: EVOL: TOTAL STEPS: 2152 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.27374 +info: bbsize: 3.01722 3.01716 2.45947 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.00010223 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.696688 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 89.9138. +info: EVOL: TOTAL STEPS: 1796 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.58411 1.65949 1.27541 +info: bbsize: 2.94263 3.01716 2.46115 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.7968e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.70126 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 89.7127. +info: EVOL: TOTAL STEPS: 1584 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.33217 +info: bbsize: 3.01722 3.01716 2.51791 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.85877e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.685943 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 88.7631. +info: EVOL: TOTAL STEPS: 2666 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.64756 1.31968 +info: bbsize: 3.01722 3.00523 2.50542 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.37385e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.687253 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 86.5084. +info: EVOL: TOTAL STEPS: 1413 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.63224 1.30684 +info: bbsize: 3.01722 2.98991 2.49258 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.09753e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.684085 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 93.2268. +info: EVOL: TOTAL STEPS: 2400 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.34337 +info: bbsize: 3.01722 3.01716 2.52911 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.68336e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.695989 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 86.4354. +info: EVOL: TOTAL STEPS: 2138 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64261 1.65949 1.33217 +info: bbsize: 3.00114 3.01716 2.51791 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.2593e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.687196 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 91.7037. +info: EVOL: TOTAL STEPS: 1767 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.34427 +info: bbsize: 3.01722 3.01716 2.53 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.43132e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.68878 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 89.9394. +info: EVOL: TOTAL STEPS: 1454 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.51262 1.28108 +info: bbsize: 3.01722 2.87029 2.46681 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.50205e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.694766 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 82.762. +info: EVOL: TOTAL STEPS: 2376 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64955 1.65949 1.33217 +info: bbsize: 3.00808 3.01716 2.51791 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.27443e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.689244 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 81.379. +info: EVOL: TOTAL STEPS: 2775 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.6513 1.33651 +info: bbsize: 3.01722 3.00896 2.52225 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.78857e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.6923 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 80.2224. +info: EVOL: TOTAL STEPS: 2365 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.33223 +info: bbsize: 3.01722 3.01716 2.51797 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.53248e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.690217 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 79.8926. +info: EVOL: TOTAL STEPS: 3130 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.60225 1.65949 1.30771 +info: bbsize: 2.96078 3.01716 2.49345 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.19988e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.680978 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 95.5281. +info: EVOL: TOTAL STEPS: 1393 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65778 1.64798 1.30778 +info: bbsize: 3.01631 3.00565 2.49352 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.39435e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.696348 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 87.6941. +info: EVOL: TOTAL STEPS: 1657 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.3003 +info: bbsize: 3.01722 3.01716 2.48604 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.80363e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.688069 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 101.649. +info: EVOL: TOTAL STEPS: 1615 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.62799 1.34638 +info: bbsize: 3.01722 2.98565 2.53212 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000108058 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.703279 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 85.3415. +info: EVOL: TOTAL STEPS: 2047 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.34929 +info: bbsize: 3.01722 3.01716 2.53503 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.591e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.70373 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 86.2938. +info: EVOL: TOTAL STEPS: 2134 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.32019 +info: bbsize: 3.01722 3.01716 2.50593 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000100807 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.688379 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 101.265. +info: EVOL: TOTAL STEPS: 1184 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64994 1.65949 1.27 +info: bbsize: 3.00847 3.01716 2.45574 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.81251e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.690025 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 84.5136. +info: EVOL: TOTAL STEPS: 1942 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.63672 1.61538 1.33217 +info: bbsize: 2.99525 2.97305 2.51791 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000100306 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.694876 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 90.5252. +info: EVOL: TOTAL STEPS: 1811 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.64764 1.65949 1.2843 +info: bbsize: 3.00617 3.01716 2.47003 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.43149e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.681349 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 90.4494. +info: EVOL: TOTAL STEPS: 2383 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.27401 +info: bbsize: 3.01722 3.01716 2.45974 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.54223e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.691461 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 94.5348. +info: EVOL: TOTAL STEPS: 1662 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.24607 +info: bbsize: 3.01722 3.01716 2.43181 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 4.00803e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.697672 +info: EVOL: Converged after 15 resets of correspondences +info: EVOL: Best value: 77.2599. +info: EVOL: TOTAL STEPS: 2960 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.6473 1.65225 1.3003 +info: bbsize: 3.00583 3.00992 2.48604 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.43768e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.686236 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 89.5657. +info: EVOL: TOTAL STEPS: 2487 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.52123 1.3402 +info: bbsize: 3.01722 2.8789 2.52594 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000116654 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.703829 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 78.0427. +info: EVOL: TOTAL STEPS: 2381 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65665 1.31349 +info: bbsize: 3.01722 3.01432 2.49923 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 4.85051e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.685997 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 91.3327. +info: EVOL: TOTAL STEPS: 2003 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.58134 1.3003 +info: bbsize: 3.01722 2.939 2.48604 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.55332e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.691656 +info: EVOL: Converged after 9 resets of correspondences +info: EVOL: Best value: 116.609. +info: EVOL: TOTAL STEPS: 1170 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.30189 +info: bbsize: 3.01722 3.01716 2.48762 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.60943e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.693062 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 83.6798. +info: EVOL: TOTAL STEPS: 1744 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.2782 +info: bbsize: 3.01722 3.01716 2.46393 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.83277e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.692641 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 89.0655. +info: EVOL: TOTAL STEPS: 2169 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.32642 +info: bbsize: 3.01722 3.01716 2.51215 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.19515e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.696555 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 82.225. +info: EVOL: TOTAL STEPS: 2525 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.63905 1.65949 1.35073 +info: bbsize: 2.99758 3.01716 2.53647 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.81229e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.68317 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 90.5327. +info: EVOL: TOTAL STEPS: 2012 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65548 1.65949 1.31789 +info: bbsize: 3.014 3.01716 2.50363 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 5.85726e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.692007 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 78.9694. +info: EVOL: TOTAL STEPS: 2646 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.34811 +info: bbsize: 3.01722 3.01716 2.53385 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.00751e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.696617 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 83.061. +info: EVOL: TOTAL STEPS: 2168 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.34811 +info: bbsize: 3.01722 3.01716 2.53385 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.74536e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.701995 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 97.7498. +info: EVOL: TOTAL STEPS: 1565 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.44739 1.63805 1.31327 +info: bbsize: 2.80592 2.99572 2.49901 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.15851e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.693622 +info: EVOL: Converged after 15 resets of correspondences +info: EVOL: Best value: 87.9928. +info: EVOL: TOTAL STEPS: 1602 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.54404 1.65777 1.29662 +info: bbsize: 2.90256 3.01543 2.48236 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000105786 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.702003 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 83.4737. +info: EVOL: TOTAL STEPS: 1711 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.60789 1.65949 1.34291 +info: bbsize: 2.96642 3.01716 2.52865 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000101113 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.695589 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 83.3462. +info: EVOL: TOTAL STEPS: 2633 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.63711 1.24196 +info: bbsize: 3.01722 2.99478 2.42769 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.89426e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.709507 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 75.5882. +info: EVOL: TOTAL STEPS: 2363 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.64341 1.25428 +info: bbsize: 3.01722 3.00107 2.44001 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 6.40283e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.694681 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 97.6185. +info: EVOL: TOTAL STEPS: 1391 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.65869 1.65949 1.31768 +info: bbsize: 3.01722 3.01716 2.50342 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.62909e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.681125 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 97.2112. +info: EVOL: TOTAL STEPS: 1867 +info: perturbating... +info: initialising Grid +info: bbmin: -1.35853 -1.35767 -1.18574 +info: bbmax: 1.63312 1.65549 1.32863 +info: bbsize: 2.99165 3.01316 2.51436 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*112=1210384 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.85739e-05 +info: EVOL: variability: 0.0103637 +info: EVOL: improvement: 0.694774 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 93.5381. +info: EVOL: TOTAL STEPS: 1875 diff --git a/dokumentation/evolution3d/20171013_3dFit_5x4x4_100times.log b/dokumentation/evolution3d/20171013_3dFit_5x4x4_100times.log new file mode 100644 index 0000000..ee5d9a7 --- /dev/null +++ b/dokumentation/evolution3d/20171013_3dFit_5x4x4_100times.log @@ -0,0 +1,1830 @@ +info: using info log level +info: Free_form_deformation_plugin loaded. +info: Modelling_plugin loaded. +info: Point_set_io_plugin loaded. +info: Scene_graph_plugin loaded. +info: Selection_plugin loaded. +info: Surface_mesh_io_plugin loaded. +GL error at "after Initialize": invalid enum + +info: GLEW errorcode: 0 +info: GLEW 1.13.0 +info: OpenGL 3.3.0 NVIDIA 384.90 (Core Profile) +info: GLSL 3.30 NVIDIA via Cg compiler +info: GeForce GTX 1080/PCIe/SSE2 +info: OpenCL 1.2 CUDA 9.0.194 +info: 12024 Vertices, 23997 Faces. +info: Loaded /home/sdressel/git/graphene/offs/target_mario_12024v_rem_normed.off. +info: 10807 Vertices, 21610 Faces. +info: Loaded /home/sdressel/git/graphene/offs/source_ball_10807v_good_normed.off. +info: initialising Grid +info: bbmin: -1.01856 -1.01771 -1.01575 +info: bbmax: 1.02125 1.02206 1.02408 +info: bbsize: 2.03981 2.03977 2.03983 +info: setting up10807Points +info: worst iteration-count:3 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: setting source +info: setting target +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.65949 1.60819 +info: bbsize: 2.70912 3.01716 2.96391 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.00013051 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.673824 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 91.4882. +info: EVOL: TOTAL STEPS: 1062 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.65857 1.53844 +info: bbsize: 2.70912 3.01624 2.89416 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000159037 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.666191 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 95.001. +info: EVOL: TOTAL STEPS: 1290 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.65949 1.66152 +info: bbsize: 2.7888 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000109945 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.685209 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 97.72. +info: EVOL: TOTAL STEPS: 1059 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.62094 1.66152 +info: bbsize: 2.7888 2.97861 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000120805 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.688032 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 99.0429. +info: EVOL: TOTAL STEPS: 882 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.53624 1.66152 +info: bbsize: 2.7888 2.89391 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000140221 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.675152 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 102.273. +info: EVOL: TOTAL STEPS: 1178 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.47658 1.65949 1.66152 +info: bbsize: 2.75012 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000134368 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.661202 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 98.0028. +info: EVOL: TOTAL STEPS: 719 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.49628 1.64156 1.66152 +info: bbsize: 2.76982 2.99923 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000117293 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.660647 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 101.929. +info: EVOL: TOTAL STEPS: 1039 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.45463 1.65949 1.55021 +info: bbsize: 2.72817 3.01716 2.90593 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.7644e-05 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.667314 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 103.969. +info: EVOL: TOTAL STEPS: 1151 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.61029 1.66152 +info: bbsize: 2.7888 2.96796 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000106383 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.662442 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 92.5069. +info: EVOL: TOTAL STEPS: 829 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.44701 1.6468 +info: bbsize: 2.7888 2.80468 3.00253 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000155402 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.654566 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 118.88. +info: EVOL: TOTAL STEPS: 500 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.50475 1.45898 1.62673 +info: bbsize: 2.77829 2.81664 2.98245 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000113231 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.656068 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 96.2138. +info: EVOL: TOTAL STEPS: 1209 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.42055 1.65949 1.66152 +info: bbsize: 2.69408 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000130038 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.664787 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 100.164. +info: EVOL: TOTAL STEPS: 1132 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.62531 1.66152 +info: bbsize: 2.7888 2.98298 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000136999 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.664672 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 95.9282. +info: EVOL: TOTAL STEPS: 953 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.40882 1.65949 1.66152 +info: bbsize: 2.68236 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000132682 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.661782 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 96.3737. +info: EVOL: TOTAL STEPS: 863 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.44536 1.5821 1.66152 +info: bbsize: 2.71889 2.93976 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000137845 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.68534 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 107.927. +info: EVOL: TOTAL STEPS: 456 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.40511 1.65949 1.50017 +info: bbsize: 2.67865 3.01716 2.85589 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000145459 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.68091 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 98.0377. +info: EVOL: TOTAL STEPS: 655 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.42747 1.61745 1.56193 +info: bbsize: 2.70101 2.97512 2.91765 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000102442 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.661866 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 94.9011. +info: EVOL: TOTAL STEPS: 1197 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.65949 1.66152 +info: bbsize: 2.70912 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.00010359 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.669868 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 102.223. +info: EVOL: TOTAL STEPS: 1144 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.6336 1.66152 +info: bbsize: 2.70912 2.99126 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000129823 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.677934 +info: EVOL: Converged after 9 resets of correspondences +info: EVOL: Best value: 126.177. +info: EVOL: TOTAL STEPS: 487 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.64788 1.66152 +info: bbsize: 2.7888 3.00555 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000132429 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.679809 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 101.879. +info: EVOL: TOTAL STEPS: 614 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.38973 1.57388 1.66152 +info: bbsize: 2.66326 2.93155 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000115304 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.669119 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 90.0009. +info: EVOL: TOTAL STEPS: 1160 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43883 1.65047 1.65449 +info: bbsize: 2.71237 3.00814 3.01022 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.0001255 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.654297 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 101.026. +info: EVOL: TOTAL STEPS: 628 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.48531 1.65949 1.66152 +info: bbsize: 2.75885 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000158057 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.664945 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 94.5618. +info: EVOL: TOTAL STEPS: 766 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.45406 1.65949 1.66152 +info: bbsize: 2.7276 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000154108 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.671599 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 99.2481. +info: EVOL: TOTAL STEPS: 556 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51492 1.65949 1.66152 +info: bbsize: 2.78846 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000144671 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.671715 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 94.1741. +info: EVOL: TOTAL STEPS: 941 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51278 1.65949 1.64423 +info: bbsize: 2.78632 3.01716 2.99996 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000149935 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.664314 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 102.894. +info: EVOL: TOTAL STEPS: 593 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.65949 1.66152 +info: bbsize: 2.7888 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000120403 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.661916 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 103.993. +info: EVOL: TOTAL STEPS: 856 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.47763 1.65949 1.58015 +info: bbsize: 2.75116 3.01716 2.93587 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000122521 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.688557 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 96.549. +info: EVOL: TOTAL STEPS: 1544 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.46238 1.65949 1.56958 +info: bbsize: 2.73591 3.01716 2.9253 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000176649 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.673862 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 90.1281. +info: EVOL: TOTAL STEPS: 1182 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.50022 1.65949 1.66152 +info: bbsize: 2.77376 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000148777 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.685072 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 104.444. +info: EVOL: TOTAL STEPS: 649 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.3591 1.65866 1.64242 +info: bbsize: 2.63264 3.01633 2.99814 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000101352 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.673358 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 104.542. +info: EVOL: TOTAL STEPS: 1051 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.49746 1.65949 1.66152 +info: bbsize: 2.77099 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000117799 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.656687 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 107.051. +info: EVOL: TOTAL STEPS: 525 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51444 1.65949 1.61674 +info: bbsize: 2.78797 3.01716 2.97247 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000119537 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.674016 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 102.128. +info: EVOL: TOTAL STEPS: 790 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.65949 1.56743 +info: bbsize: 2.7888 3.01716 2.92315 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000139523 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.674215 +info: EVOL: Converged after 15 resets of correspondences +info: EVOL: Best value: 105.315. +info: EVOL: TOTAL STEPS: 537 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.44446 1.65949 1.6615 +info: bbsize: 2.718 3.01716 3.01722 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000136167 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.661759 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 104.097. +info: EVOL: TOTAL STEPS: 714 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.42103 1.64057 1.63058 +info: bbsize: 2.69457 2.99824 2.98631 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000190288 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.67647 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 96.8133. +info: EVOL: TOTAL STEPS: 536 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.60352 1.66152 +info: bbsize: 2.7888 2.96119 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000122321 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.667716 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 99.8496. +info: EVOL: TOTAL STEPS: 997 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.5008 1.65949 1.66152 +info: bbsize: 2.77434 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000152454 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.673331 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 103.385. +info: EVOL: TOTAL STEPS: 653 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.45195 1.59989 1.51876 +info: bbsize: 2.72549 2.95756 2.87448 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000136288 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.662476 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 108.874. +info: EVOL: TOTAL STEPS: 435 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.49449 1.65308 1.66152 +info: bbsize: 2.76803 3.01075 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000135477 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.658957 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 112.975. +info: EVOL: TOTAL STEPS: 489 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.49167 1.62091 1.66152 +info: bbsize: 2.7652 2.97858 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000118528 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.652968 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 113.068. +info: EVOL: TOTAL STEPS: 656 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.65545 1.61999 +info: bbsize: 2.7888 3.01311 2.97572 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000158042 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.669166 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 99.4226. +info: EVOL: TOTAL STEPS: 762 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.36769 1.60433 1.66152 +info: bbsize: 2.64123 2.962 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 8.34426e-05 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.669917 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 115.742. +info: EVOL: TOTAL STEPS: 473 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.50102 1.65949 1.63903 +info: bbsize: 2.77455 3.01716 2.99476 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000103695 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.668814 +info: EVOL: Converged after 15 resets of correspondences +info: EVOL: Best value: 94.4964. +info: EVOL: TOTAL STEPS: 919 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.57737 1.66152 +info: bbsize: 2.7888 2.93504 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000111848 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.668306 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 103.45. +info: EVOL: TOTAL STEPS: 694 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.34945 1.65949 1.61014 +info: bbsize: 2.62298 3.01716 2.96587 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000145773 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.671588 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 116.123. +info: EVOL: TOTAL STEPS: 468 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.42961 1.56312 1.6425 +info: bbsize: 2.70314 2.92079 2.99822 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000121232 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.664407 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 98.1676. +info: EVOL: TOTAL STEPS: 742 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.50464 1.65949 1.65073 +info: bbsize: 2.77817 3.01716 3.00645 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000141766 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.659441 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 105.069. +info: EVOL: TOTAL STEPS: 817 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.46134 1.64423 1.60728 +info: bbsize: 2.73487 3.0019 2.963 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000132584 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.680023 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 108.953. +info: EVOL: TOTAL STEPS: 641 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.62776 1.52853 +info: bbsize: 2.7888 2.98543 2.88425 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000107048 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.687908 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 91.997. +info: EVOL: TOTAL STEPS: 1336 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.55202 1.66152 +info: bbsize: 2.7888 2.90969 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000144664 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.668632 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 95.3832. +info: EVOL: TOTAL STEPS: 1796 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.65949 1.66152 +info: bbsize: 2.7888 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000162707 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.67518 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 87.7666. +info: EVOL: TOTAL STEPS: 1475 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.44186 1.6309 1.63106 +info: bbsize: 2.71539 2.98857 2.98678 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000152531 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.673962 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 97.0353. +info: EVOL: TOTAL STEPS: 1021 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.65949 1.58853 +info: bbsize: 2.7888 3.01716 2.94425 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000142111 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.678162 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 99.1089. +info: EVOL: TOTAL STEPS: 971 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.61954 1.66152 +info: bbsize: 2.70912 2.9772 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000122117 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.673304 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 95.5062. +info: EVOL: TOTAL STEPS: 909 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.53805 1.64266 +info: bbsize: 2.70912 2.89572 2.99839 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000119921 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.650853 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 130.854. +info: EVOL: TOTAL STEPS: 465 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43257 1.65949 1.66152 +info: bbsize: 2.7061 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 7.23937e-05 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.649618 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 101.333. +info: EVOL: TOTAL STEPS: 1045 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.4592 1.63303 1.64167 +info: bbsize: 2.73274 2.9907 2.99739 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000139668 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.671239 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 96.735. +info: EVOL: TOTAL STEPS: 701 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.5452 1.65504 +info: bbsize: 2.7888 2.90286 3.01076 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.00012961 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.671942 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 98.5471. +info: EVOL: TOTAL STEPS: 935 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.44077 1.65949 1.66152 +info: bbsize: 2.71431 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000126957 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.664651 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 107.22. +info: EVOL: TOTAL STEPS: 929 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.45136 1.65838 1.66152 +info: bbsize: 2.7249 3.01605 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000157769 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.660679 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 97.6237. +info: EVOL: TOTAL STEPS: 917 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.48208 1.65949 1.49293 +info: bbsize: 2.75562 3.01716 2.84865 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000152029 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.662968 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 105.503. +info: EVOL: TOTAL STEPS: 909 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.58713 1.66152 +info: bbsize: 2.7888 2.9448 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.66919e-05 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.65868 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 110.648. +info: EVOL: TOTAL STEPS: 599 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.44288 1.65949 1.65993 +info: bbsize: 2.71642 3.01716 3.01565 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000152119 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.675902 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 95.6589. +info: EVOL: TOTAL STEPS: 779 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.65949 1.46853 +info: bbsize: 2.7888 3.01716 2.82425 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.0001074 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.665579 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 98.2938. +info: EVOL: TOTAL STEPS: 755 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.41194 1.65307 1.66152 +info: bbsize: 2.68547 3.01074 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000117728 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.662558 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 103.401. +info: EVOL: TOTAL STEPS: 714 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.39467 1.53513 1.60147 +info: bbsize: 2.6682 2.8928 2.95719 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000111497 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.661687 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 110.527. +info: EVOL: TOTAL STEPS: 530 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.33997 1.65949 1.47724 +info: bbsize: 2.6135 3.01716 2.83296 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000110637 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.666203 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 96.7363. +info: EVOL: TOTAL STEPS: 1023 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.34437 1.64665 1.62346 +info: bbsize: 2.61791 3.00432 2.97918 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.00013237 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.666233 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 95.9747. +info: EVOL: TOTAL STEPS: 706 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.49256 1.65949 1.48748 +info: bbsize: 2.7661 3.01716 2.8432 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000125735 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.689224 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 93.9381. +info: EVOL: TOTAL STEPS: 866 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.46474 1.65949 1.66152 +info: bbsize: 2.73827 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000133393 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.657839 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 101.823. +info: EVOL: TOTAL STEPS: 732 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.65949 1.66152 +info: bbsize: 2.70912 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000144244 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.663091 +info: EVOL: Converged after 9 resets of correspondences +info: EVOL: Best value: 115.05. +info: EVOL: TOTAL STEPS: 1226 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.50424 1.65949 1.63729 +info: bbsize: 2.77777 3.01716 2.99301 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000124349 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.668097 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 101.306. +info: EVOL: TOTAL STEPS: 1122 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.33812 1.65949 1.66152 +info: bbsize: 2.61165 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000142602 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.656584 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 102.493. +info: EVOL: TOTAL STEPS: 631 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.39529 1.65949 1.66152 +info: bbsize: 2.66882 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000118057 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.662982 +info: EVOL: Converged after 16 resets of correspondences +info: EVOL: Best value: 94.8579. +info: EVOL: TOTAL STEPS: 875 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.65949 1.66152 +info: bbsize: 2.70912 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000142745 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.67665 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 108.05. +info: EVOL: TOTAL STEPS: 644 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.36193 1.65949 1.64221 +info: bbsize: 2.63546 3.01716 2.99793 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000165048 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.662857 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 101.873. +info: EVOL: TOTAL STEPS: 709 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43666 1.64301 1.65948 +info: bbsize: 2.71019 3.00068 3.0152 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000129561 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.657732 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 113.606. +info: EVOL: TOTAL STEPS: 609 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.41265 1.57136 1.44904 +info: bbsize: 2.68619 2.92903 2.80476 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000128823 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.668196 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 97.6295. +info: EVOL: TOTAL STEPS: 754 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.37066 1.65949 1.66152 +info: bbsize: 2.64419 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000137056 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.682813 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 94.5646. +info: EVOL: TOTAL STEPS: 1630 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.46669 1.65949 1.63651 +info: bbsize: 2.74023 3.01716 2.99223 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000134364 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.661282 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 89.2764. +info: EVOL: TOTAL STEPS: 977 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.42734 1.62539 1.62534 +info: bbsize: 2.70088 2.98306 2.98106 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000111668 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.671422 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 97.445. +info: EVOL: TOTAL STEPS: 885 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.65897 1.66152 +info: bbsize: 2.7888 3.01664 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000143655 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.656792 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 101.923. +info: EVOL: TOTAL STEPS: 767 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.50021 1.65949 1.66152 +info: bbsize: 2.77375 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000101243 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.668738 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 103.308. +info: EVOL: TOTAL STEPS: 702 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.48344 1.65949 1.50286 +info: bbsize: 2.75697 3.01716 2.85859 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000126643 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.6921 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 92.9774. +info: EVOL: TOTAL STEPS: 1952 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.4541 1.54269 1.63834 +info: bbsize: 2.72763 2.90036 2.99406 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.00016266 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.677012 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 95.1595. +info: EVOL: TOTAL STEPS: 1241 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.47003 1.65383 1.66152 +info: bbsize: 2.74356 3.0115 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000124782 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.669869 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 101.54. +info: EVOL: TOTAL STEPS: 874 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.50509 1.65949 1.66152 +info: bbsize: 2.77863 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000111837 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.658483 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 106.698. +info: EVOL: TOTAL STEPS: 735 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.44701 1.66152 +info: bbsize: 2.7888 2.80468 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000170519 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.667606 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 108.192. +info: EVOL: TOTAL STEPS: 865 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51245 1.58752 1.66152 +info: bbsize: 2.78598 2.94519 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000141366 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.657861 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 101.598. +info: EVOL: TOTAL STEPS: 676 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.65949 1.65553 +info: bbsize: 2.70912 3.01716 3.01126 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.00014135 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.669907 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 102.393. +info: EVOL: TOTAL STEPS: 669 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.37928 1.54363 1.66152 +info: bbsize: 2.65282 2.9013 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000123703 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.652962 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 105.018. +info: EVOL: TOTAL STEPS: 689 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43558 1.60903 1.64877 +info: bbsize: 2.70912 2.9667 3.00449 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000132077 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.66298 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 94.0851. +info: EVOL: TOTAL STEPS: 991 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.51526 1.65949 1.66152 +info: bbsize: 2.7888 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000116146 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.669464 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 97.1255. +info: EVOL: TOTAL STEPS: 1215 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.46282 1.65949 1.64275 +info: bbsize: 2.73636 3.01716 2.99847 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000149136 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.672497 +info: EVOL: Converged after 10 resets of correspondences +info: EVOL: Best value: 100.425. +info: EVOL: TOTAL STEPS: 740 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.49689 1.65949 1.64992 +info: bbsize: 2.77042 3.01716 3.00564 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000125424 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.67969 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 100.988. +info: EVOL: TOTAL STEPS: 820 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.44361 1.5548 1.66152 +info: bbsize: 2.71715 2.91247 3.01724 +info: setting up10807Points +info: worst iteration-count:5 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 9.2974e-05 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.682842 +info: EVOL: Converged after 11 resets of correspondences +info: EVOL: Best value: 100.096. +info: EVOL: TOTAL STEPS: 858 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.43251 1.65949 1.66152 +info: bbsize: 2.70605 3.01716 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.00010642 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.667256 +info: EVOL: Converged after 14 resets of correspondences +info: EVOL: Best value: 95.9289. +info: EVOL: TOTAL STEPS: 859 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.45825 1.6071 1.66152 +info: bbsize: 2.73179 2.96477 3.01724 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000126849 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.674574 +info: EVOL: Converged after 13 resets of correspondences +info: EVOL: Best value: 89.3173. +info: EVOL: TOTAL STEPS: 1455 +info: perturbating... +info: initialising Grid +info: bbmin: -1.27354 -1.35767 -1.35572 +info: bbmax: 1.44164 1.6265 1.543 +info: bbsize: 2.71517 2.98417 2.89873 +info: setting up10807Points +info: worst iteration-count:4 +info: generating Cache +info: cache size: 10807*80=864560 +info: done. +info: entering fit.. +info: EVOL: Evolvability-criteria: +info: EVOL: regularity: 0.000160011 +info: EVOL: variability: 0.00740261 +info: EVOL: improvement: 0.652659 +info: EVOL: Converged after 12 resets of correspondences +info: EVOL: Best value: 103.315. +info: EVOL: TOTAL STEPS: 462