diff --git a/.gitattributes b/.gitattributes index 01d0bdade00..673053bac57 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1914,8 +1914,6 @@ QP_solver/examples/QP_solver/cycling.cpp -text QP_solver/examples/QP_solver/cycling.mps -text QP_solver/examples/QP_solver/double_qp_solver.cin -text QP_solver/examples/QP_solver/double_qp_solver.data -text -QP_solver/examples/QP_solver/filter_failure.cpp -text -QP_solver/examples/QP_solver/filter_failure.mps -text QP_solver/examples/QP_solver/first_lp.cpp -text QP_solver/examples/QP_solver/first_lp.mps -text QP_solver/examples/QP_solver/first_lp_from_mps.cpp -text @@ -1949,6 +1947,7 @@ QP_solver/test/QP_solver/debug_bug.cpp -text QP_solver/test/QP_solver/test_default_bounds.cpp -text QP_solver/test/QP_solver/test_random_qp.cpp -text QP_solver/test/QP_solver/test_solver.cout -text +QP_solver/test/QP_solver/test_solver_data/masters/additional/QSCORPIO.QPS -text Qt_widget/demo/Qt_widget/hellosegment.vcproj eol=crlf Qt_widget/demo/Qt_widget/layer.vcproj eol=crlf Qt_widget/demo/Qt_widget/standard_toolbar.vcproj eol=crlf diff --git a/QP_solver/doc_tex/QP_solver/main.tex b/QP_solver/doc_tex/QP_solver/main.tex index 2737d523b81..e4a3296143a 100644 --- a/QP_solver/doc_tex/QP_solver/main.tex +++ b/QP_solver/doc_tex/QP_solver/main.tex @@ -52,13 +52,14 @@ provides a number of easy-to-use and flexible models, see Section \ref{sec:QP-first} below. The input data may be of any given number type, such as \ccc{double}, \ccc{int}, or any exact type. -Then the program is solved using the function \ccc{solve_quadratic_program} -(or some specialized other functions, e.g.\ for linear programs). For this, -you also have to provide a suitable \emph{exact} number type \ccc{ET} used -in the solution process. In case of input type \ccc{double}, solution -methods that use floating-point-filtering are chosen by default (in some -cases, this is not appropriate, and the default should be changed; -see Section \ref{sec:QP-customization} for details). +Then the program is solved using the function +\ccc{solve_quadratic_program} (or some specialized other functions, +e.g.\ for linear programs). For this, you also have to provide a +suitable \emph{exact} number type \ccc{ET} used in the solution +process. In case of input type \ccc{double}, solution methods that use +floating-point-filtering are chosen by default for certain programs +(in some cases, this is not appropriate, and the default should be +changed; see Section \ref{sec:QP-customization} for details). The output of this is an object of \ccc{Quadratic_program_solution} which you can in turn query for various things: what is the status of @@ -153,13 +154,13 @@ convex quadratic program. It may fail to compute a solution only if on efficiency). \item The quadratic objective function matrix $D$ is not positive-semidefinite (see the discussion below). -\item The floating-point filter used by default for input type -\ccc{double} fails due to a \emph{double} exponent overflow. This -happens in rare cases only, and it does not pay off to sacrifice -the efficiency of the filtered approach in order to cope with these -rare cases. There are means, however, to avoid such -problems by switching to a slower non-filtered variant, see -Section \ref{sec:QP-customization-filtering}. +\item The floating-point filter used by default for certain programs + and input type \ccc{double} fails due to a \emph{double} exponent + overflow. This happens in rare cases only, and it does not pay off + to sacrifice the efficiency of the filtered approach in order to + cope with these rare cases. There are means, however, to avoid such + problems by switching to a slower non-filtered variant, see Section + \ref{sec:QP-customization-filtering}. \item The solver internally cycles. This also happens in rare cases only. However, if you have a hunch that the solver cycles on your problem, @@ -190,7 +191,7 @@ using the \cgal\ program models and solution functions. There are two essentially different ways to proceed, and we will discuss them in turn. In short, \begin{itemize} -\item you can let the model take care of yor program data; you start +\item you can let the model take care of your program data; you start from an empty program and then simply insert the non-zero entries, or read them from a file (more generally, any input stream) in \ccc{MPSFormat}. You can also change program entries at any time. @@ -198,7 +199,7 @@ This is usually the most convenient way if you don't want to care about representation issues; \item you can maintain the data yourself and only supply suitable random-access iterators over the matrices and vectors. This is -advantageous if you already have the data (explicitly, or implictly +advantageous if you already have the data (explicitly, or implicitly encoded, for example through iterators) and want to avoid copying of data. Typically, this happens if you write generic iterator-based code. @@ -249,7 +250,7 @@ function at this optimal solution is $2^2 + 4(3-4)^2 = 8$. Here is how this quadratic program can be solved in \cgal\ according to the first way (letting the model take care of the data). We use \ccc{int} as the entry type, and -\ccc{MP_Float} or \ccc{Gmpz} (which is faster and preferrable if +\ccc{MP_Float} or \ccc{Gmpz} (which is faster and preferable if \texttt{GMP} is installed) as the exact type for the internal computations. For examples how to work with the input type \ccc{double}, we refer to @@ -286,7 +287,7 @@ The following program again solves our running example from above, with the same output, but this time with iterators over data stored in suitable containers. You can see that we also store zero entries here (in $D$). For this toy problem, the previous two -approaches (program from data/stream) are clearly preferrable, +approaches (program from data/stream) are clearly preferable, but Section \ref{sec:QP-iterators} shows an example where it makes sense to use the iterator-based approach. @@ -668,29 +669,25 @@ for the performance (see the class \ccc{Quadratic_program_pricing_strategy} for a discussion). \subsection{Exponent overflow in double using floating-point filters\label{sec:QP-customization-filtering}} -The filtered version of the solver that is used by default on input +The filtered version of the solver that is used for some problems +by default on input type \ccc{double} internally constructs double-approximations of exact multiprecision values. If these exact values are extremely large, this may lead to \emph{infinite} \ccc{double} values and incorrect results. In debug mode, the solver will notice this through a certificate cross-check in the end (or even earlier). In this case, it is advisable -to switch to a non-filtered \emph{pricing strategy}, see +to explicitly switch to a non-filtered \emph{pricing strategy}, see \ccc{Quadratic_program_pricing_strategy}. -Consider the following program. It reads a nonnegative linear program from -the file \texttt{filter\_failure.mps} (which is in the example directory as -well), and then solves it using \emph{Dantzig's rule}. - -\ccIncludeExampleCode{QP_solver/filter_failure.cpp} - -If your comment the line -\begin{verbatim} -options.set_pricing_strategy(CGAL::QP_DANTZIG); // Dantzig's rule -\end{verbatim} -you will see that the solver fails (in debug mode, it will run into -an assertion, and in non-debug mode, the objective value is simply -wrong). This is due to a filter failure, and switching to a non-filtered -variant like \ccc{QP_DANTZIG} solves the problem. +{\bf Hint:} +If you have a program where the number of variables $n$ and the number of +constraints $m$ have the same order of +magnitude, the filtering will usually have +no dramatic effect on the performance, so in that case you might as well +switch to \ccc{QP_PARTIAL_DANTZIG} +to be safe from the issue described here (see +\ccReferToExampleCode{QP_solver/cycling.cpp} +for an example that shows how to change the pricing strategy). \subsection{The solver internally cycles\label{sec:QP-customization-cycling}} Consider the following program. It reads a nonnegative linear program from @@ -722,9 +719,8 @@ typical in your case, and we make no claims whatsoever about the performance in other applications. Still, the example shows that the performance can be dramatically -affected by switching between pricing strategies, and this message -is important to know if you want to achieve good performance in -general. +affected by switching between pricing strategies, and we give some +hints on how to achieve good performance in general. The application is the one already discussed in Section \ref{sec:QP-iterators} above: testing whether a point is in the convex hull of other points. @@ -748,9 +744,9 @@ If you compile with the macros \texttt{NDEBUG} or \texttt{CGAL\_QP\_NO\_ASSERTIONS} set (this is essential for good performance!!), you will see runtimes that qualitatively look as follows (on your machine, the actual runtimes will roughly be some -fixed multiples of the numbers in the table below). The default -choice of the pricing strategy in that case is -\ccc{QP_PARTIAL_FILTERED_DANTZIG}. +fixed multiples of the numbers in the table below, and they might +vary with the random choices). The default choice of the pricing +strategy in that case is \ccc{QP_PARTIAL_FILTERED_DANTZIG}. \begin{tabular}{lcl} strategy & &runtime in seconds \\ \hline @@ -780,10 +776,15 @@ strategy & &runtime in seconds \\ \hline \ccc{CGAL::QP_PARTIAL_FILTERED_DANTZIG}& | & 1.34 \end{tabular} +In general, if your problem has a high variable/constraint or +constraint/variable ratio, then filtering will typically pay off. +In such cases, it might be beneficial to encode your problem using +input type \ccc{double} in order to profit from the filtering (but +see the issue discussed in Section \ref{sec:QP-customization-filtering}). + \subsection{$d=100$, $n=100,000$} -Increasing the dimension to $100$ compared to the above example clearly -shows that the filtering effect deteriorates with higher dimension but -is still noticeable. +Conversely, the filtering effect deteriorates if the points/dimension ratio +becomes smaller. \begin{tabular}{lcl} strategy & &runtime in seconds \\ \hline @@ -797,9 +798,9 @@ strategy & &runtime in seconds \\ \hline \subsection{$d=500$, $n=1,000$} If the points/dimension ratio tends to a constant, filtering is no -longer a clear winner. The reason is that the numbers involved in the -necessary exact calculations are so large that the overall performance is -dominated by them. +longer a clear winner. The reason is that in this case, +the necessary exact calculations with multiprecision numbers +dominate the overall runtime. \begin{tabular}{lcl} strategy & &runtime in seconds \\ \hline @@ -810,3 +811,10 @@ strategy & &runtime in seconds \\ \hline \ccc{CGAL::QP_FILTERED_DANTZIG} & | & 2.65 \\ \ccc{CGAL::QP_PARTIAL_FILTERED_DANTZIG}& | & 2.61 \end{tabular} + +In general, if you have a program where the number of variables +and the number of constraints have the same order of magnitude, then +the saving gained from using the filtered approach is typically +small. In such a situation, you should consider switching to +a non-filtered variant in order to avoid the rare issue discussed +in Section \ref{sec:QP-customization-filtering} altogether. diff --git a/QP_solver/doc_tex/QP_solver_ref/Quadratic_program_options.tex b/QP_solver/doc_tex/QP_solver_ref/Quadratic_program_options.tex index 2b533f647d0..dfd733281d9 100644 --- a/QP_solver/doc_tex/QP_solver_ref/Quadratic_program_options.tex +++ b/QP_solver/doc_tex/QP_solver_ref/Quadratic_program_options.tex @@ -5,8 +5,12 @@ \ccDefinition This is a class used for passing options to the linear and quadratic programming solvers. Currently, we support only -two types of options, but the idea is that this list -grows in the future. +options referring to +\begin{enumerate} +\item the verbosity, +\item the pricing strategy (see \ccc{Quadratic_program_pricing_strategy}). +\end{enumerate} +The idea is that this list grows in the futurex. \ccCreation \ccIndexClassCreation diff --git a/QP_solver/doc_tex/QP_solver_ref/Quadratic_program_pricing_strategy.tex b/QP_solver/doc_tex/QP_solver_ref/Quadratic_program_pricing_strategy.tex index 5d0ddb7912f..f5c9df36f6c 100644 --- a/QP_solver/doc_tex/QP_solver_ref/Quadratic_program_pricing_strategy.tex +++ b/QP_solver/doc_tex/QP_solver_ref/Quadratic_program_pricing_strategy.tex @@ -9,8 +9,11 @@ This is an enumeration type containing the values \ccc{QP_PARTIAL_FILTERED_DANTZIG}, and\ccc{QP_BLAND}. It indicates the pricing strategy to be used in -solving a linear or quadratic program. Here we describe when to -choose which strategy. +solving a linear or quadratic program. This strategy determines +how the solver gets from one intermediate solution to the next +during any of its iterations. + +Here we briefly describe when to choose which strategy. \ccHeading{\ccc{QP_CHOOSE_DEFAULT}} This is the default value of the pricing strategy in @@ -19,41 +22,45 @@ strategy that it thinks is most appropriate for the problem at hand. There are only few reasons to deviate from this default, but you are free to experiment, of course. -\ccHeading{\ccc{QP_DANTZIG}} -If the input type is \textbf{not} \ccc{double}, this is usually the best choice -for `''typical'' sparse linear and quadratic programs of medium size, -where the number of variables has roughly the same order of magnitude -as the number of constraints. +\ccHeading{\ccc{QP_PARTIAL_DANTZIG}} +If the input type is \textbf{not} \ccc{double}, this is usually the +best choice for linear and quadratic programs of medium size. -\ccHeading{\ccc{QP_PARTIAL_DANTZIG}} -If the input type is \textbf{not} \ccc{double}, this is usually the best choice -for linear and quadratic programs with few (up to 100, say), constraints, -but a possibly large number of variables, or the other way around -(few variables, but possibly many constraints) +\ccHeading{\ccc{QP_DANTZIG}} +If the input type is \textbf{not} \ccc{double}, this can sometimes +make a difference (be faster or slowe) than \ccc{QP_PARTIAL_DANTZIG} +for problems with a high variable/constraint or constraint/variable ratio. -\ccHeading{\ccc{QP_FILTERED_DANTZIG}} +\ccHeading{\ccc{QP_PARTIAL_FILTERED_DANTZIG}} If the input type \textbf{is} \ccc{double}, this is usually the best choice -for `''typical'' sparse linear and quadratic programs of medium size, -where the number of variables has roughly the same order of magnitude -as the number of constraints. +for linear and quadratic programs of medium size. +If the input type is not \ccc{double}, this choice is equivalent +to \ccc{QP_PARTIAL_DANTZIG}. -{\bf Note:} filtered strategies may occasionally fail due to double -exponent overflows. In this case, the slower fallback option is -the non-filtered variant \ccc{QP_DANTZIG} of this strategy. -\ccHeading{\ccc{QP_PARTIAL_FILTERED_DANTZIG}} -If the input type \textbf{is} \ccc{double}, this is usually the best choice -for linear and quadratic programs with few (up to 100, say), constraints, -but a possibly large number of variables, or the other way around -(few variables, but possibly many constraints). - -{\bf Note:} filtered strategies may occasionally fail due to double -exponent overflows. In this case, the slower fallback option is +{\bf Note:} filtered strategies may in rare cases fail due to double +exponent overflows, see +Section \ref{sec:QP-customization-filtering}. +In this case, the slower fallback option is the non-filtered variant \ccc{QP_PARTIAL_DANTZIG} of this strategy. +\ccHeading{\ccc{QP_FILTERED_DANTZIG}} +If the input type \textbf{is} \ccc{double}, this can sometimes +make a difference (be faster or slowe) than \ccc{QP_PARTIAL_FILTERED_DANTZIG} +for problems with a high variable/constraint or constraint/variable ratio. +If the input type is not \ccc{double}, this choice is equivalent +to \ccc{QP_DANTZIG}. + +{\bf Note:} filtered strategies may in rare cases fail due to double +exponent overflows, see +Section \ref{sec:QP-customization-filtering}. +In this case, the slower fallback option is +the non-filtered variant \ccc{QP_DANTZIG} of this strategy. + \ccHeading{\ccc{QP_BLAND}} This is hardly ever the most efficient choice, but it is guaranteed -to avoid internal cycling of the solution algorithm. +to avoid internal cycling of the solution algorithm, see +Section \ref{sec:QP-customization-cycling}. \ccSeeAlso diff --git a/QP_solver/doc_tex/QP_solver_ref/intro.tex b/QP_solver/doc_tex/QP_solver_ref/intro.tex index be3466d73d6..23b922d1006 100644 --- a/QP_solver/doc_tex/QP_solver_ref/intro.tex +++ b/QP_solver/doc_tex/QP_solver_ref/intro.tex @@ -77,6 +77,10 @@ concept. \ccRefIdfierPage{solve_nonnegative_quadratic_program}\\ \ccRefIdfierPage{solve_nonnegative_linear_program} +The solution process can customized by passing an object of the class + +\ccRefIdfierPage{Quadratic_program_options} + Programs can be written to an output stream in \ccc{MPSFormat}, using one of the following four functions. diff --git a/QP_solver/examples/QP_solver/convex_hull_containment_benchmarks.cpp b/QP_solver/examples/QP_solver/convex_hull_containment_benchmarks.cpp index df5507fd4c9..f5fcc62ab70 100644 --- a/QP_solver/examples/QP_solver/convex_hull_containment_benchmarks.cpp +++ b/QP_solver/examples/QP_solver/convex_hull_containment_benchmarks.cpp @@ -1,7 +1,6 @@ // Example: assess the solver performance under any of the available // pricing strategies, in the convex-hull-containment problem // NOTE: in order to see meaningful results, compile with -DNDEBUG -#include #include #include #include diff --git a/QP_solver/examples/QP_solver/filter_failure.cpp b/QP_solver/examples/QP_solver/filter_failure.cpp deleted file mode 100644 index 2e720425b1d..00000000000 --- a/QP_solver/examples/QP_solver/filter_failure.cpp +++ /dev/null @@ -1,36 +0,0 @@ -// example: solve a nonnegative quadratic program that by default leads -// to double overflows, using Dantzig pricing -#include -#include -#include -#include -#include - -// choose exact floating-point type -#ifdef CGAL_USE_GMP -#include -typedef CGAL::Gmpzf ET; -#else -#include -typedef CGAL::MP_Float ET; -#endif -// program and solution types -typedef CGAL::Quadratic_program_from_mps Program; -typedef CGAL::Quadratic_program_solution Solution; - -int main() { - std::ifstream in ("filter_failure.mps"); - Program qp(in); // read program from file - assert (qp.is_valid()); // we should have a valid mps file - assert (qp.is_nonnegative()); // .. and it should be nonnegative - - // solve the program, using ET as the exact type - // choose verbose mode and non-filtered Dantzig pricing - CGAL::Quadratic_program_options options; - options.set_pricing_strategy(CGAL::QP_DANTZIG); // Dantzig's rule - Solution s = CGAL::solve_nonnegative_quadratic_program(qp, ET(), options); - - // output solution - std::cout << s; - return 0; -} diff --git a/QP_solver/examples/QP_solver/filter_failure.mps b/QP_solver/examples/QP_solver/filter_failure.mps deleted file mode 100644 index 6976ca283d4..00000000000 --- a/QP_solver/examples/QP_solver/filter_failure.mps +++ /dev/null @@ -1,1204 +0,0 @@ -NAME MY_MPS -ROWS - N obj - E c0 - E c1 - E c2 - E c3 - E c4 - E c5 - E c6 - E c7 - E c8 - E c9 - E c10 - E c11 -COLUMNS - x0 c0 1 - x1 c1 1 - x2 c2 1 - x3 c3 1 - x4 c4 1 - x5 c5 1 - x6 c6 1 - x7 c7 1 - x8 c8 1 - x9 c9 1 - x10 c0 -1 - x11 c1 -1 - x12 c2 -1 - x13 c3 -1 - x14 c4 -1 - x15 c5 -1 - x16 c6 -1 - x17 c7 -1 - x18 c8 -1 - x19 c9 -1 - x20 c0 -304222 - x20 c1 -314214 - x20 c2 -31921 - x20 c3 -636508 - x20 c4 -1.01246e+06 - x20 c5 -307850 - x20 c6 -634784 - x20 c7 -192275 - x20 c8 -452865 - x20 c9 -42786 - x20 c10 1 - x21 c0 5341.12 - x21 c1 10263.1 - x21 c2 7118.9 - x21 c3 2726.2 - x21 c4 12158.4 - x21 c5 9997.47 - x21 c6 13228 - x21 c7 14142.9 - x21 c8 12833.5 - x21 c9 1147.22 - x21 c10 1 - x22 c0 4633.83 - x22 c1 18204.4 - x22 c2 1523.98 - x22 c3 5699.88 - x22 c4 2439.31 - x22 c5 170.673 - x22 c6 16755.1 - x22 c7 10239.5 - x22 c8 1644.96 - x22 c9 1238.12 - x22 c10 1 - x23 c0 2294.57 - x23 c1 4959.81 - x23 c2 14870.9 - x23 c3 6101.87 - x23 c4 9876.55 - x23 c5 15611 - x23 c6 13319.1 - x23 c7 17894.2 - x23 c8 18249.8 - x23 c9 10993.6 - x23 c10 1 - x24 c0 16201 - x24 c1 3538.2 - x24 c2 1064.81 - x24 c3 3506.37 - x24 c4 6112.94 - x24 c5 12547.8 - x24 c6 12948.4 - x24 c7 18606.1 - x24 c8 6486.87 - x24 c9 5650.89 - x24 c10 1 - x25 c0 266.582 - x25 c1 10750 - x25 c2 3694.56 - x25 c3 1707.44 - x25 c4 16139 - x25 c5 6000.82 - x25 c6 1868.8 - x25 c7 12915.2 - x25 c8 15681.8 - x25 c9 3424.04 - x25 c10 1 - x26 c0 13834.2 - x26 c1 17573.4 - x26 c2 8057.02 - x26 c3 9183.89 - x26 c4 4623.84 - x26 c5 17404.5 - x26 c6 5234 - x26 c7 17229.4 - x26 c8 15615.5 - x26 c9 3781.62 - x26 c10 1 - x27 c0 8753.16 - x27 c1 12293.8 - x27 c2 7067.26 - x27 c3 9761.95 - x27 c4 15615.7 - x27 c5 12858.5 - x27 c6 3253.28 - x27 c7 9486.54 - x27 c8 12089.3 - x27 c9 9398.74 - x27 c10 1 - x28 c0 14584.2 - x28 c1 12133.6 - x28 c2 1351.78 - x28 c3 8.74138 - x28 c4 13752.8 - x28 c5 16656 - x28 c6 5699.17 - x28 c7 15524.9 - x28 c8 10824.2 - x28 c9 2490.97 - x28 c10 1 - x29 c0 681.22 - x29 c1 5999.1 - x29 c2 1356.14 - x29 c3 8328.58 - x29 c4 14716 - x29 c5 5744.86 - x29 c6 7075.63 - x29 c7 1911.44 - x29 c8 4325.73 - x29 c9 4124.68 - x29 c10 1 - x30 c0 5409.1 - x30 c1 12569.1 - x30 c2 15735.1 - x30 c3 12123 - x30 c4 4366.75 - x30 c5 13093.7 - x30 c6 6862.32 - x30 c7 7457.37 - x30 c8 4629.67 - x30 c9 870.867 - x30 c10 1 - x31 c0 16117.6 - x31 c1 1230.92 - x31 c2 12393.5 - x31 c3 213.082 - x31 c4 1239.23 - x31 c5 8280.13 - x31 c6 16049.9 - x31 c7 6658.13 - x31 c8 5851.77 - x31 c9 9152.07 - x31 c10 1 - x32 c0 8881 - x32 c1 6405.66 - x32 c2 14713.3 - x32 c3 10171.5 - x32 c4 14331.3 - x32 c5 11804.7 - x32 c6 15638.4 - x32 c7 4152 - x32 c8 13623.7 - x32 c9 2842.35 - x32 c10 1 - x33 c0 7948.9 - x33 c1 1914.92 - x33 c2 14767.9 - x33 c3 6290.63 - x33 c4 13460.6 - x33 c5 2282.62 - x33 c6 2116.78 - x33 c7 3352.13 - x33 c8 9384.89 - x33 c9 6526 - x33 c10 1 - x34 c0 4116.19 - x34 c1 8216.3 - x34 c2 7597.25 - x34 c3 15928.7 - x34 c4 8419.39 - x34 c5 8778.39 - x34 c6 7436.75 - x34 c7 7333 - x34 c8 15124.4 - x34 c9 13014.2 - x34 c10 1 - x35 c0 15809 - x35 c1 7230.92 - x35 c2 2792.09 - x35 c3 13711.3 - x35 c4 801.077 - x35 c5 329.969 - x35 c6 8839.31 - x35 c7 15717.7 - x35 c8 4290.35 - x35 c9 5702.29 - x35 c10 1 - x36 c0 2262.17 - x36 c1 11812.9 - x36 c2 7443.77 - x36 c3 471.258 - x36 c4 1930.14 - x36 c5 4405.06 - x36 c6 2650.14 - x36 c7 3950.71 - x36 c8 7604.82 - x36 c9 11608.4 - x36 c10 1 - x37 c0 10028.1 - x37 c1 11423.2 - x37 c2 3633.21 - x37 c3 1634.82 - x37 c4 10988.3 - x37 c5 11675.6 - x37 c6 10020.2 - x37 c7 2441.72 - x37 c8 3029.9 - x37 c9 8817 - x37 c10 1 - x38 c0 14654.5 - x38 c1 2676.71 - x38 c2 179.029 - x38 c3 1903.18 - x38 c4 362.897 - x38 c5 944.765 - x38 c6 2218.6 - x38 c7 8812.25 - x38 c8 548.853 - x38 c9 6319.69 - x38 c10 1 - x39 c0 14056.3 - x39 c1 2704.71 - x39 c2 2330.68 - x39 c3 5979.65 - x39 c4 3155.49 - x39 c5 4176.91 - x39 c6 10193.2 - x39 c7 5690.41 - x39 c8 7955.86 - x39 c9 2270.64 - x39 c10 1 - x40 c0 1574.57 - x40 c1 2460.91 - x40 c2 13171.8 - x40 c3 5052.09 - x40 c4 4025.67 - x40 c5 8709.59 - x40 c6 1247.67 - x40 c7 13616.4 - x40 c8 11046.7 - x40 c9 4147.73 - x40 c10 1 - x41 c0 6976.24 - x41 c1 10157.7 - x41 c2 6652.92 - x41 c3 7147.7 - x41 c4 11980.5 - x41 c5 7000.48 - x41 c6 8052.56 - x41 c7 14105.3 - x41 c8 671.704 - x41 c9 8578.23 - x41 c10 1 - x42 c0 5314.47 - x42 c1 14133 - x42 c2 11051.1 - x42 c3 7548.06 - x42 c4 5299.92 - x42 c5 14075.1 - x42 c6 11550.9 - x42 c7 504.861 - x42 c8 4964.89 - x42 c9 4611.75 - x42 c10 1 - x43 c0 2644.16 - x43 c1 6406.75 - x43 c2 6908.36 - x43 c3 910.644 - x43 c4 11251.2 - x43 c5 10768.6 - x43 c6 9262.32 - x43 c7 12447.6 - x43 c8 9461.4 - x43 c9 5490.96 - x43 c10 1 - x44 c0 2032.99 - x44 c1 1857.01 - x44 c2 992.73 - x44 c3 8416.2 - x44 c4 8714.96 - x44 c5 12487.5 - x44 c6 962.932 - x44 c7 2271.14 - x44 c8 11851.1 - x44 c9 1607.42 - x44 c10 1 - x45 c0 10361.6 - x45 c1 2813.95 - x45 c2 1172.63 - x45 c3 6989.64 - x45 c4 10060.1 - x45 c5 6260.56 - x45 c6 6520.76 - x45 c7 7167.99 - x45 c8 6745.24 - x45 c9 11287.1 - x45 c10 1 - x46 c0 11442.7 - x46 c1 9196.28 - x46 c2 3495.34 - x46 c3 4281.33 - x46 c4 10071 - x46 c5 505.395 - x46 c6 827.803 - x46 c7 5170.63 - x46 c8 12461.7 - x46 c9 9915.74 - x46 c10 1 - x47 c0 10309.2 - x47 c1 635.753 - x47 c2 11571.6 - x47 c3 11263.3 - x47 c4 8724.05 - x47 c5 6329.18 - x47 c6 9646.39 - x47 c7 9649.47 - x47 c8 8511.83 - x47 c9 7417.87 - x47 c10 1 - x48 c0 11050.8 - x48 c1 4922.5 - x48 c2 10028.5 - x48 c3 12178.3 - x48 c4 11643.3 - x48 c5 6258.38 - x48 c6 4754.79 - x48 c7 4470 - x48 c8 13150.7 - x48 c9 11240.6 - x48 c10 1 - x49 c0 1855.87 - x49 c1 10719.3 - x49 c2 6672.25 - x49 c3 5218.49 - x49 c4 1564.92 - x49 c5 3087.7 - x49 c6 5704.7 - x49 c7 2361.3 - x49 c8 8061.99 - x49 c9 4420.03 - x49 c10 1 - x50 c0 11751.7 - x50 c1 4776.62 - x50 c2 4976.69 - x50 c3 9782.24 - x50 c4 2510.32 - x50 c5 266.387 - x50 c6 2766.89 - x50 c7 11795 - x50 c8 9554.01 - x50 c9 10959.5 - x50 c10 1 - x51 c0 5755.53 - x51 c1 7132.16 - x51 c2 2619.04 - x51 c3 2467.22 - x51 c4 5914.02 - x51 c5 885.741 - x51 c6 8493.83 - x51 c7 10492.7 - x51 c8 5190.19 - x51 c9 8212.07 - x51 c10 1 - x52 c0 8269.52 - x52 c1 6914.88 - x52 c2 5651.54 - x52 c3 1910.17 - x52 c4 11942.5 - x52 c5 7159.21 - x52 c6 4884.9 - x52 c7 4650.94 - x52 c8 9434.13 - x52 c9 12651.9 - x52 c10 1 - x53 c0 8801.92 - x53 c1 8014 - x53 c2 4470.05 - x53 c3 965.289 - x53 c4 4809.23 - x53 c5 6889.65 - x53 c6 1222.06 - x53 c7 7476.11 - x53 c8 5624.87 - x53 c9 10430.8 - x53 c10 1 - x54 c0 5341.71 - x54 c1 11107.9 - x54 c2 4700.98 - x54 c3 7867.23 - x54 c4 1003.95 - x54 c5 10403.8 - x54 c6 8721.33 - x54 c7 9194.44 - x54 c8 8038.71 - x54 c9 1243.12 - x54 c10 1 - x55 c0 4575.71 - x55 c1 3585.62 - x55 c2 7899.32 - x55 c3 10027.8 - x55 c4 5428.38 - x55 c5 7084.09 - x55 c6 4598.13 - x55 c7 10140.9 - x55 c8 11570.9 - x55 c9 1363.11 - x55 c10 1 - x56 c0 9893.71 - x56 c1 7738.48 - x56 c2 9081.71 - x56 c3 2015.08 - x56 c4 8670.09 - x56 c5 1530.44 - x56 c6 8664.41 - x56 c7 9849.53 - x56 c8 8745.77 - x56 c9 1900.31 - x56 c10 1 - x57 c0 7634.91 - x57 c1 1750.17 - x57 c2 550.736 - x57 c3 121.184 - x57 c4 9346.11 - x57 c5 1520.08 - x57 c6 10166.2 - x57 c7 5714.11 - x57 c8 10397.5 - x57 c9 5875.16 - x57 c10 1 - x58 c0 6835.81 - x58 c1 2783.4 - x58 c2 9271.78 - x58 c3 2550.19 - x58 c4 553.693 - x58 c5 2599.48 - x58 c6 9392.78 - x58 c7 4995.07 - x58 c8 479.011 - x58 c9 8653.58 - x58 c10 1 - x59 c0 6240.8 - x59 c1 10033.8 - x59 c2 4252.22 - x59 c3 3234.64 - x59 c4 199.258 - x59 c5 848.326 - x59 c6 4713.49 - x59 c7 8571.61 - x59 c8 10365.9 - x59 c9 1382.71 - x59 c10 1 - x60 c0 10292.2 - x60 c1 5980.24 - x60 c2 3059.18 - x60 c3 10824.6 - x60 c4 6097.39 - x60 c5 442.911 - x60 c6 643.178 - x60 c7 4273.9 - x60 c8 5966.57 - x60 c9 10694.1 - x60 c10 1 - x61 c0 9843.85 - x61 c1 988.637 - x61 c2 1745.38 - x61 c3 7287.16 - x61 c4 3454.77 - x61 c5 2280.82 - x61 c6 9800.95 - x61 c7 1015.09 - x61 c8 7111.23 - x61 c9 10264.2 - x61 c10 1 - x62 c0 9281.39 - x62 c1 1673.66 - x62 c2 8461.71 - x62 c3 1997.4 - x62 c4 4802.83 - x62 c5 8654.47 - x62 c6 2818.07 - x62 c7 9362.62 - x62 c8 5549.01 - x62 c9 1448.34 - x62 c10 1 - x63 c0 10585.2 - x63 c1 4174.56 - x63 c2 7220.1 - x63 c3 2270.68 - x63 c4 3374.99 - x63 c5 1845.8 - x63 c6 2699.31 - x63 c7 3997.42 - x63 c8 5981.84 - x63 c9 8473.42 - x63 c10 1 - x64 c0 3038.84 - x64 c1 4292.83 - x64 c2 9340.36 - x64 c3 4728.53 - x64 c4 192.372 - x64 c5 1529.81 - x64 c6 6936.56 - x64 c7 9680.52 - x64 c8 2512.51 - x64 c9 2665.79 - x64 c10 1 - x65 c0 8372.99 - x65 c1 436.726 - x65 c2 4258.54 - x65 c3 5529.84 - x65 c4 2371.05 - x65 c5 8909.69 - x65 c6 2873.38 - x65 c7 5100.14 - x65 c8 6939.02 - x65 c9 8247.17 - x65 c10 1 - x66 c0 6435 - x66 c1 6198.48 - x66 c2 1282.71 - x66 c3 2506.81 - x66 c4 8398.21 - x66 c5 4552.23 - x66 c6 4294.94 - x66 c7 90.5104 - x66 c8 8424.74 - x66 c9 10089.8 - x66 c10 1 - x67 c0 8213.58 - x67 c1 472.691 - x67 c2 3335.84 - x67 c3 6455 - x67 c4 5054.98 - x67 c5 3522.26 - x67 c6 7937.51 - x67 c7 966.959 - x67 c8 2093.33 - x67 c9 10372.3 - x67 c10 1 - x68 c0 3514.07 - x68 c1 10188.6 - x68 c2 10689.8 - x68 c3 7642.26 - x68 c4 4849.46 - x68 c5 2288.57 - x68 c6 5579.45 - x68 c7 7634.89 - x68 c8 7232.58 - x68 c9 1606.31 - x68 c10 1 - x69 c0 4880.04 - x69 c1 2807.86 - x69 c2 7600.74 - x69 c3 6123.89 - x69 c4 5238.71 - x69 c5 5152.79 - x69 c6 10538.2 - x69 c7 9403.49 - x69 c8 5240.56 - x69 c9 8115.94 - x69 c10 1 - x70 c0 8509.96 - x70 c1 2669.56 - x70 c2 8493.3 - x70 c3 1259.97 - x70 c4 8930.92 - x70 c5 2910.87 - x70 c6 4676.57 - x70 c7 6144.55 - x70 c8 3848.83 - x70 c9 6707.1 - x70 c10 1 - x71 c0 -5341.12 - x71 c1 -10263.1 - x71 c2 -7118.9 - x71 c3 -2726.2 - x71 c4 -12158.4 - x71 c5 -9997.47 - x71 c6 -13228 - x71 c7 -14142.9 - x71 c8 -12833.5 - x71 c9 -1147.22 - x71 c11 1 - x72 c0 304222 - x72 c1 314214 - x72 c2 31921 - x72 c3 636508 - x72 c4 1.01246e+06 - x72 c5 307850 - x72 c6 634784 - x72 c7 192275 - x72 c8 452865 - x72 c9 42786 - x72 c11 1 - x73 c0 76843 - x73 c1 144464 - x73 c2 181066 - x73 c3 377410 - x73 c4 255328 - x73 c5 240627 - x73 c6 137831 - x73 c7 344570 - x73 c8 378278 - x73 c9 482771 - x73 c11 1 - x74 c0 24909 - x74 c1 18071.7 - x74 c2 192490 - x74 c3 317079 - x74 c4 193400 - x74 c5 2232 - x74 c6 181097 - x74 c7 266383 - x74 c8 322475 - x74 c9 257886 - x74 c11 1 - x75 c0 8419 - x75 c1 55767.8 - x75 c2 9824.25 - x75 c3 16399.2 - x75 c4 214895 - x75 c5 795 - x75 c6 93362 - x75 c7 111447 - x75 c8 48864 - x75 c9 206578 - x75 c11 1 - x76 c0 97715 - x76 c1 69828.4 - x76 c2 13333.4 - x76 c3 170142 - x76 c4 11077.6 - x76 c5 115465 - x76 c6 56677.2 - x76 c7 66210.2 - x76 c8 43577.2 - x76 c9 207988 - x76 c11 1 - x77 c0 41336.2 - x77 c1 48768.8 - x77 c2 7596.83 - x77 c3 137581 - x77 c4 32545.8 - x77 c5 104297 - x77 c6 138697 - x77 c7 123095 - x77 c8 62725.7 - x77 c9 125172 - x77 c11 1 - x78 c0 66235.7 - x78 c1 58575.7 - x78 c2 139158 - x78 c3 71849.7 - x78 c4 67946.9 - x78 c5 112159 - x78 c6 72304 - x78 c7 121297 - x78 c8 26046.1 - x78 c9 100226 - x78 c11 1 - x79 c0 78351.9 - x79 c1 83862.2 - x79 c2 268.875 - x79 c3 86685.2 - x79 c4 59128.8 - x79 c5 7192.38 - x79 c6 27778.6 - x79 c7 94552 - x79 c8 48573.8 - x79 c9 55014.5 - x79 c11 1 - x80 c0 83086.9 - x80 c1 70734.2 - x80 c2 81414.3 - x80 c3 88151.6 - x80 c4 45946.7 - x80 c5 103112 - x80 c6 41174.3 - x80 c7 21903.2 - x80 c8 68666.2 - x80 c9 82991.6 - x80 c11 1 - x81 c0 94816.3 - x81 c1 3307.1 - x81 c2 10837.9 - x81 c3 87369.3 - x81 c4 53601.9 - x81 c5 58400.8 - x81 c6 61022.7 - x81 c7 104215 - x81 c8 38450.9 - x81 c9 79255 - x81 c11 1 - x82 c0 63196 - x82 c1 91938.5 - x82 c2 37715.6 - x82 c3 63391.5 - x82 c4 59657.4 - x82 c5 80718.4 - x82 c6 68622.4 - x82 c7 79860.1 - x82 c8 54158.5 - x82 c9 8623.73 - x82 c11 1 - x83 c0 22500.1 - x83 c1 24579.1 - x83 c2 60955.8 - x83 c3 83560.8 - x83 c4 3311.42 - x83 c5 8034.58 - x83 c6 73513.2 - x83 c7 34192.2 - x83 c8 24462 - x83 c9 37631.7 - x83 c11 1 - x84 c0 8358.08 - x84 c1 14856.2 - x84 c2 37280.9 - x84 c3 16695 - x84 c4 1403.69 - x84 c5 78513.2 - x84 c6 61618.7 - x84 c7 48344.2 - x84 c8 78018.8 - x84 c9 10536.6 - x84 c11 1 - x85 c0 26603.6 - x85 c1 47201.7 - x85 c2 7123.14 - x85 c3 56237.3 - x85 c4 22111.1 - x85 c5 53996.8 - x85 c6 44760.6 - x85 c7 1130.5 - x85 c8 41845.7 - x85 c9 12415.4 - x85 c11 1 - x86 c0 7379.27 - x86 c1 57056.1 - x86 c2 31251.1 - x86 c3 56143.9 - x86 c4 53999.8 - x86 c5 33900.3 - x86 c6 62571.7 - x86 c7 42905.4 - x86 c8 61254.1 - x86 c9 12236.2 - x86 c11 1 - x87 c0 2911.56 - x87 c1 64216.7 - x87 c2 23542.2 - x87 c3 33202.4 - x87 c4 12245.4 - x87 c5 24682.8 - x87 c6 31458.4 - x87 c7 62310.6 - x87 c8 63962.5 - x87 c9 29312.7 - x87 c11 1 - x88 c0 5021.76 - x88 c1 20427.9 - x88 c2 4779.47 - x88 c3 10887.9 - x88 c4 5060.06 - x88 c5 22988.7 - x88 c6 55355.9 - x88 c7 41921.8 - x88 c8 23919.7 - x88 c9 28136.2 - x88 c11 1 - x89 c0 49249.3 - x89 c1 28740.2 - x89 c2 15865.6 - x89 c3 17037.6 - x89 c4 17272.7 - x89 c5 2611.28 - x89 c6 45287.8 - x89 c7 11161.5 - x89 c8 38365.8 - x89 c9 38078.7 - x89 c11 1 - x90 c0 20234.3 - x90 c1 38798.4 - x90 c2 34963.6 - x90 c3 40059.3 - x90 c4 11570.1 - x90 c5 45275.6 - x90 c6 5656.58 - x90 c7 38061.4 - x90 c8 42559.5 - x90 c9 4331.53 - x90 c11 1 - x91 c0 7179.7 - x91 c1 44700 - x91 c2 21478.7 - x91 c3 11242.3 - x91 c4 1525.95 - x91 c5 25779.8 - x91 c6 30782.7 - x91 c7 48578.5 - x91 c8 8984.45 - x91 c9 51114.4 - x91 c11 1 - x92 c0 19110 - x92 c1 838.143 - x92 c2 23382.8 - x92 c3 32709.1 - x92 c4 15441.8 - x92 c5 38187.9 - x92 c6 34947.4 - x92 c7 4327.81 - x92 c8 47754.9 - x92 c9 17900.1 - x92 c11 1 - x93 c0 35286.5 - x93 c1 15396.8 - x93 c2 2931.68 - x93 c3 17819.8 - x93 c4 2330.86 - x93 c5 12924.1 - x93 c6 9258.91 - x93 c7 7216.14 - x93 c8 45795.4 - x93 c9 46014.8 - x93 c11 1 - x94 c0 10480.6 - x94 c1 4457.22 - x94 c2 37293.5 - x94 c3 29157.7 - x94 c4 14233.1 - x94 c5 38620.4 - x94 c6 5984.7 - x94 c7 41000.7 - x94 c8 35272.4 - x94 c9 13797.3 - x94 c11 1 - x95 c0 38197.1 - x95 c1 6833.29 - x95 c2 13955.8 - x95 c3 14966.3 - x95 c4 35453.8 - x95 c5 27467.4 - x95 c6 4690.12 - x95 c7 22342.1 - x95 c8 31254.2 - x95 c9 2785.04 - x95 c11 1 - x96 c0 36484.6 - x96 c1 19113.1 - x96 c2 16222.8 - x96 c3 39064.5 - x96 c4 34794.5 - x96 c5 18274 - x96 c6 8494.68 - x96 c7 999.32 - x96 c8 24624.2 - x96 c9 6851.56 - x96 c11 1 - x97 c0 39896.5 - x97 c1 32948.4 - x97 c2 10531 - x97 c3 32557.1 - x97 c4 18412 - x97 c5 23121.8 - x97 c6 26391.5 - x97 c7 23706.2 - x97 c8 19061.9 - x97 c9 17264.2 - x97 c11 1 - x98 c0 34581.4 - x98 c1 13472.7 - x98 c2 22698.9 - x98 c3 8150.44 - x98 c4 26776.2 - x98 c5 15377.3 - x98 c6 32565.9 - x98 c7 30945.2 - x98 c8 35236.9 - x98 c9 21511.3 - x98 c11 1 - x99 c0 32227.2 - x99 c1 29104.9 - x99 c2 359.25 - x99 c3 9262.71 - x99 c4 26534.8 - x99 c5 31425.8 - x99 c6 25578.8 - x99 c7 34119.4 - x99 c8 32318.1 - x99 c9 10115.5 - x99 c11 1 - x100 c0 2691.59 - x100 c1 30815.2 - x100 c2 3148.9 - x100 c3 12133.2 - x100 c4 23846.6 - x100 c5 19656.2 - x100 c6 32863.1 - x100 c7 11350.2 - x100 c8 4752.28 - x100 c9 13795.3 - x100 c11 1 - x101 c0 25934.2 - x101 c1 764.667 - x101 c2 25461 - x101 c3 11410.6 - x101 c4 8100.1 - x101 c5 14607.1 - x101 c6 25250.2 - x101 c7 2456.9 - x101 c8 7505.23 - x101 c9 22010.9 - x101 c11 1 - x102 c0 21113.4 - x102 c1 2546.55 - x102 c2 13764.2 - x102 c3 21437.8 - x102 c4 10912.9 - x102 c5 3906.03 - x102 c6 15997.5 - x102 c7 191.258 - x102 c8 898.516 - x102 c9 11363 - x102 c11 1 - x103 c0 9036.38 - x103 c1 3309.69 - x103 c2 6166.16 - x103 c3 11890.1 - x103 c4 14305.4 - x103 c5 27777.1 - x103 c6 29703.6 - x103 c7 11319.6 - x103 c8 5295.25 - x103 c9 1242.38 - x103 c11 1 - x104 c0 23099.8 - x104 c1 28711.3 - x104 c2 1899.88 - x104 c3 14471.1 - x104 c4 7309.64 - x104 c5 9263.61 - x104 c6 27750.3 - x104 c7 30264.4 - x104 c8 11497.2 - x104 c9 2798.18 - x104 c11 1 - x105 c0 17955.2 - x105 c1 30409.4 - x105 c2 5037.74 - x105 c3 30504.9 - x105 c4 19115.3 - x105 c5 14987.7 - x105 c6 3225.79 - x105 c7 2860.71 - x105 c8 15162.1 - x105 c9 4045.06 - x105 c11 1 - x106 c0 12843.3 - x106 c1 22990.8 - x106 c2 6955.49 - x106 c3 18481 - x106 c4 3902.4 - x106 c5 20034.7 - x106 c6 13917.9 - x106 c7 1100.66 - x106 c8 424.771 - x106 c9 18759.3 - x106 c11 1 - x107 c0 2174.44 - x107 c1 21587.8 - x107 c2 15429.8 - x107 c3 3916 - x107 c4 5725.89 - x107 c5 22130.3 - x107 c6 12407.6 - x107 c7 2036.53 - x107 c8 20745.6 - x107 c9 22946.7 - x107 c11 1 - x108 c0 4477.19 - x108 c1 8344.32 - x108 c2 21930.5 - x108 c3 9106.49 - x108 c4 8035.95 - x108 c5 11156 - x108 c6 22879 - x108 c7 11000.2 - x108 c8 13784.8 - x108 c9 8471.89 - x108 c11 1 - x109 c0 14330 - x109 c1 25251.4 - x109 c2 1830.55 - x109 c3 20736.4 - x109 c4 14679.3 - x109 c5 5424.87 - x109 c6 11595.3 - x109 c7 27498.4 - x109 c8 6438.66 - x109 c9 11986.5 - x109 c11 1 - x110 c0 16742 - x110 c1 8280.77 - x110 c2 4719.82 - x110 c3 4098.36 - x110 c4 11895.5 - x110 c5 10005.3 - x110 c6 24526.4 - x110 c7 23348.8 - x110 c8 11885.2 - x110 c9 16789.5 - x110 c11 1 - x111 c0 17202.7 - x111 c1 15729.4 - x111 c2 24088.3 - x111 c3 11274 - x111 c4 24152.9 - x111 c5 5307.18 - x111 c6 21593.3 - x111 c7 19101.6 - x111 c8 15482.4 - x111 c9 8129.88 - x111 c11 1 - x112 c0 706.073 - x112 c1 2811.22 - x112 c2 5760.32 - x112 c3 2402.68 - x112 c4 22030.3 - x112 c5 19365.5 - x112 c6 7430.63 - x112 c7 7202.17 - x112 c8 19276.8 - x112 c9 13398.2 - x112 c11 1 - x113 c0 17875.7 - x113 c1 9397.9 - x113 c2 20768.5 - x113 c3 22258.4 - x113 c4 13203.5 - x113 c5 6848.26 - x113 c6 6582.86 - x113 c7 11011.9 - x113 c8 3563.17 - x113 c9 17619.1 - x113 c11 1 - x114 c0 1598.07 - x114 c1 19482.8 - x114 c2 7455.88 - x114 c3 24005.8 - x114 c4 5584.84 - x114 c5 5538.26 - x114 c6 4557.26 - x114 c7 1286.19 - x114 c8 23307.2 - x114 c9 18959.5 - x114 c11 1 - x115 c0 8647.75 - x115 c1 23435.5 - x115 c2 21148.2 - x115 c3 14015.3 - x115 c4 1843.07 - x115 c5 17845.2 - x115 c6 8229.18 - x115 c7 8767.07 - x115 c8 725 - x115 c9 2360.39 - x115 c11 1 - x116 c0 20779.5 - x116 c1 17392.8 - x116 c2 11079.3 - x116 c3 16861.8 - x116 c4 14865.6 - x116 c5 100.933 - x116 c6 23253.5 - x116 c7 21009.7 - x116 c8 10378.7 - x116 c9 3277.4 - x116 c11 1 - x117 c0 13844.8 - x117 c1 11647 - x117 c2 21418.4 - x117 c3 20814.5 - x117 c4 11292.1 - x117 c5 3843.87 - x117 c6 3196.39 - x117 c7 15552.1 - x117 c8 5046.2 - x117 c9 2188.46 - x117 c11 1 - x118 c0 10257 - x118 c1 13034.6 - x118 c2 1771.36 - x118 c3 7745.21 - x118 c4 3845.23 - x118 c5 3496.79 - x118 c6 2141.19 - x118 c7 11549.2 - x118 c8 11704.3 - x118 c9 2819.91 - x118 c11 1 - x119 c0 13472.3 - x119 c1 9095.9 - x119 c2 19067 - x119 c3 2013.81 - x119 c4 3058.46 - x119 c5 11158.2 - x119 c6 2108.44 - x119 c7 3013.25 - x119 c8 9009.44 - x119 c9 11838.5 - x119 c11 1 - x120 c0 5961.63 - x120 c1 423.224 - x120 c2 1131.31 - x120 c3 4669.18 - x120 c4 19963.3 - x120 c5 11732 - x120 c6 8277.73 - x120 c7 1564.53 - x120 c8 4932.51 - x120 c9 13015 - x120 c11 1 - x121 c0 3546.64 - x121 c1 14475.5 - x121 c2 4035.72 - x121 c3 5211.72 - x121 c4 784.48 - x121 c5 7650.24 - x121 c6 8498.72 - x121 c7 2797.2 - x121 c8 18506.5 - x121 c9 19500.7 - x121 c11 1 -RHS - rhs c10 1 - rhs c11 1 -BOUNDS -QMATRIX - x0 x0 2 - x0 x10 -2 - x1 x1 2 - x1 x11 -2 - x2 x2 2 - x2 x12 -2 - x3 x3 2 - x3 x13 -2 - x4 x4 2 - x4 x14 -2 - x5 x5 2 - x5 x15 -2 - x6 x6 2 - x6 x16 -2 - x7 x7 2 - x7 x17 -2 - x8 x8 2 - x8 x18 -2 - x9 x9 2 - x9 x19 -2 - x10 x0 -2 - x10 x10 2 - x11 x1 -2 - x11 x11 2 - x12 x2 -2 - x12 x12 2 - x13 x3 -2 - x13 x13 2 - x14 x4 -2 - x14 x14 2 - x15 x5 -2 - x15 x15 2 - x16 x6 -2 - x16 x16 2 - x17 x7 -2 - x17 x17 2 - x18 x8 -2 - x18 x18 2 - x19 x9 -2 - x19 x19 2 -ENDATA diff --git a/QP_solver/include/CGAL/QP_solver/Initialization.h b/QP_solver/include/CGAL/QP_solver/Initialization.h index ec8d2f595d1..b09265ad921 100644 --- a/QP_solver/include/CGAL/QP_solver/Initialization.h +++ b/QP_solver/include/CGAL/QP_solver/Initialization.h @@ -125,19 +125,21 @@ set(const Q& qp) << "Set-Up" << std::endl << "======" << std::endl; } - vout.out() << "[ " << (is_LP ? "LP" : "QP") - << ", " << qp_n << " variables, " << qp_m << " constraints"; + } + } + vout << "[ " << (is_LP ? "LP" : "QP") + << ", " << qp_n << " variables, " << qp_m << " constraints" + << " ]" << std::endl; + CGAL_qpe_debug { if (vout2.verbose() && (!slack_A.empty())) { vout2.out() << " (" << slack_A.size() << " inequalities)"; } - vout.out() << " ]" << std::endl; if (vout2.verbose()) { if (has_ineq) vout2.out() << "flag: has inequalities or rank not full" << std::endl; if (vout4.verbose()) print_program(); } - } } // set up pricing strategy: diff --git a/QP_solver/include/CGAL/QP_solver/QP__partial_base.h b/QP_solver/include/CGAL/QP_solver/QP__partial_base.h index 09e69c6d151..66cefffa2f8 100644 --- a/QP_solver/include/CGAL/QP_solver/QP__partial_base.h +++ b/QP_solver/include/CGAL/QP_solver/QP__partial_base.h @@ -142,6 +142,8 @@ init( ) // initialize size of active set int n = this->solver().number_of_variables(); int m = this->solver().number_of_constraints(); + // we also want to cover the high constraints/variable ratio + if (n < m) (std::swap)(n,m); s = (std::min)( static_cast< unsigned int>( m*std::sqrt( n/2.0)), static_cast< unsigned int>(N.size())); diff --git a/QP_solver/include/CGAL/QP_solver/QP_solver_impl.h b/QP_solver/include/CGAL/QP_solver/QP_solver_impl.h index 49f2c92c193..a812586da29 100644 --- a/QP_solver/include/CGAL/QP_solver/QP_solver_impl.h +++ b/QP_solver/include/CGAL/QP_solver/QP_solver_impl.h @@ -2949,14 +2949,16 @@ set_pricing_strategy if (strategy == QP_DANTZIG) strategyP = new QP_full_exact_pricing; - else if (strategy == QP_FILTERED_DANTZIG) + else if (strategy == QP_FILTERED_DANTZIG) + // choose between FF (double) and FE (anything else) strategyP = new typename QP_solver_impl::Filtered_pricing_strategy_selector ::FF; else if (strategy == QP_PARTIAL_DANTZIG) strategyP = new QP_partial_exact_pricing; else if (strategy == QP_PARTIAL_FILTERED_DANTZIG - || strategy == QP_CHOOSE_DEFAULT) + || strategy == QP_CHOOSE_DEFAULT) + // choose between PF (double) and PE (anything else) strategyP = new typename QP_solver_impl::Filtered_pricing_strategy_selector ::PF; @@ -3184,7 +3186,8 @@ print_solution( ) const << "solution: " << solution_numerator() << " / " << solution_denominator() << " ~= " - << to_double(solution_numerator())/to_double(solution_denominator()) + << to_double + (CGAL::Quotient(solution_numerator(), solution_denominator())) << std::endl; CGAL_qpe_debug { vout2 << std::endl; diff --git a/QP_solver/test/QP_solver/test_solver.cout b/QP_solver/test/QP_solver/test_solver.cout index ddfceb708ab..56013e41dfd 100644 --- a/QP_solver/test/QP_solver/test_solver.cout +++ b/QP_solver/test/QP_solver/test_solver.cout @@ -3,15 +3,15 @@ Reading from standard in... Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) (c) + Solution: 0(1) 0(1) (c) Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 @@ -23,15 +23,15 @@ Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_shifted.mps Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 1,time: 0.000999) 0 (it: 1,time: 0.001) (c) + Solution: 0(1) 0(1) (c) Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_free.mps Strategy: ff Verbosity: 0 @@ -43,15 +43,15 @@ Processing: test_solver_data/derivatives/LP_U6_zero_c_QPE_solver_free.mps Processing: test_solver_data/masters/cgal/LP_U6_zero_c_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) (c) + Solution: 0(1) 0(1) 0(1) 0(1) (c) Processing: test_solver_data/masters/cgal/LP_U6_zero_c_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_U6_zero_c_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_U6_zero_c_QPE_solver.mps Strategy: ff Verbosity: 0 @@ -63,1355 +63,1355 @@ Processing: test_solver_data/masters/cgal/LP_U6_zero_c_QPE_solver.mps Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -10123 (it: 8,time: 0.001999) -10123 (it: 8,time: 0.002) -10123 (it: 8,time: 0.001999) -10123 (it: 8,time: 0.003) (c) -10123 (it: 8,time: 0.003999) (c) -10123 (it: 8,time: 0.005999) (c) + Solution: -10123(8) -10123(8) -10123(8) -10123(8) (c) -10123(8) (c) -10123(8) (c) Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -10123 (it: 8,time: 0.001) -10123 (it: 8,time: 0.002) -10123 (it: 8,time: 0.002) -10123 (it: 8,time: 0.003) -10123 (it: 8,time: 0.003999) -10123 (it: 8,time: 0.005999) + Solution: -10123(8) -10123(8) -10123(8) -10123(8) -10123(8) -10123(8) Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -10123 (it: 6,time: 0.001) -10123 (it: 6,time: 0.002) -10123 (it: 6,time: 0.002) -10123 (it: 6,time: 0.002) -10123 (it: 6,time: 0.001999) -10123 (it: 6,time: 0.004999) + Solution: -10123(6) -10123(6) -10123(6) -10123(6) -10123(6) -10123(6) Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -10123 (it: 8,time: 0.002) -10123 (it: 8,time: 0.003) + Solution: -10123(8) -10123(8) Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -10123 (it: 8,time: 0.002) -10123 (it: 8,time: 0.002999) + Solution: -10123(8) -10123(8) Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.003) -10000 (it: 8,time: 0.004) (c) -10000 (it: 8,time: 0.004999) (c) -10000 (it: 8,time: 0.009999) (c) + Solution: -10000(8) -10000(8) -10000(8) -10000(8) (c) -10000(8) (c) -10000(8) (c) Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.001999) -10000 (it: 8,time: 0.003) -10000 (it: 8,time: 0.003999) -10000 (it: 8,time: 0.004999) -10000 (it: 8,time: 0.009998) + Solution: -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 6,time: 0.001) -10000 (it: 6,time: 0.002) -10000 (it: 6,time: 0.002999) -10000 (it: 6,time: 0.003999) -10000 (it: 6,time: 0.004) -10000 (it: 6,time: 0.006999) + Solution: -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.004) + Solution: -10000(8) -10000(8) Processing: test_solver_data/derivatives/LP_KM3_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.004999) + Solution: -10000(8) -10000(8) Processing: test_solver_data/masters/cgal/LP_KM3_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 8,time: 0.001) -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.002999) -10000 (it: 8,time: 0.001) -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.003) -10000 (it: 8,time: 0.001999) -10000 (it: 8,time: 0.003) -10000 (it: 8,time: 0.004999) -10000 (it: 8,time: 0.002999) (c) -10000 (it: 8,time: 0.002999) (c) -10000 (it: 8,time: 0.005999) (c) + Solution: -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) (c) -10000(8) (c) -10000(8) (c) Processing: test_solver_data/masters/cgal/LP_KM3_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 8,time: 0.001) -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.001) -10000 (it: 8,time: 0.001999) -10000 (it: 8,time: 0.003) -10000 (it: 8,time: 0.001999) -10000 (it: 8,time: 0.003) -10000 (it: 8,time: 0.004999) -10000 (it: 8,time: 0.002999) -10000 (it: 8,time: 0.003) -10000 (it: 8,time: 0.004999) + Solution: -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) -10000(8) Processing: test_solver_data/masters/cgal/LP_KM3_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 6,time: 0) -10000 (it: 6,time: 0.001999) -10000 (it: 6,time: 0.002) -10000 (it: 6,time: 0.001) -10000 (it: 6,time: 0.001) -10000 (it: 6,time: 0.002) -10000 (it: 6,time: 0.001999) -10000 (it: 6,time: 0.002) -10000 (it: 6,time: 0.003999) -10000 (it: 6,time: 0.002) -10000 (it: 6,time: 0.002) -10000 (it: 6,time: 0.003999) + Solution: -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) -10000(6) Processing: test_solver_data/masters/cgal/LP_KM3_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: -10000 (it: 8,time: 0.001) -10000 (it: 8,time: 0.002) -10000 (it: 8,time: 0.002999) -10000 (it: 8,time: 0.002999) + Solution: -10000(8) -10000(8) -10000(8) -10000(8) Processing: test_solver_data/masters/cgal/LP_KM3_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: -10000 (it: 8,time: 0.001) -10000 (it: 8,time: 0.001) -10000 (it: 8,time: 0.001999) -10000 (it: 8,time: 0.003) + Solution: -10000(8) -10000(8) -10000(8) -10000(8) Processing: test_solver_data/masters/cgal/PRIMALC1.mps Strategy: fe Verbosity: 0 - Solution: -6155.25 (it: 19,time: 0.487926) (c) -6155.25 (it: 19,time: 1.02085) (c) + Solution: -6155.25(19) (c) -6155.25(19) (c) Processing: test_solver_data/masters/cgal/PRIMALC1.mps Strategy: pe Verbosity: 0 - Solution: -6155.25 (it: 19,time: 0.374943) -6155.25 (it: 19,time: 0.841872) + Solution: -6155.25(19) -6155.25(19) Processing: test_solver_data/masters/cgal/PRIMALC1.mps Strategy: eb Verbosity: 0 - Solution: -6155.25 (it: 20,time: 0.432934) -6155.25 (it: 20,time: 0.960854) + Solution: -6155.25(20) -6155.25(20) Processing: test_solver_data/masters/cgal/PRIMALC1.mps Strategy: ff Verbosity: 0 - Solution: -6155.25 (it: 19,time: 0.33295) + Solution: -6155.25(19) Processing: test_solver_data/masters/cgal/PRIMALC1.mps Strategy: pf Verbosity: 0 - Solution: -6155.25 (it: 19,time: 0.313952) + Solution: -6155.25(19) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.000999) (c) -10000 (it: 2,time: 0.002) (c) + Solution: -10000(2) -10000(2) -10000(2) (c) -10000(2) (c) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001999) -10000 (it: 2,time: 0.002) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 2,time: 0.000999) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.002) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: ff Verbosity: 0 - Solution: -10000 (it: 2,time: 0.000999) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: pf Verbosity: 0 - Solution: -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001999) -10000 (it: 3,time: 0.001999) (c) -10000 (it: 3,time: 0.002) (c) + Solution: -10000(3) -10000(3) -10000(3) (c) -10000(3) (c) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001999) -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001999) + Solution: -10000(3) -10000(3) -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.000999) -10000 (it: 3,time: 0.002) -10000 (it: 3,time: 0.002) + Solution: -10000(3) -10000(3) -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: ff Verbosity: 0 - Solution: -10000 (it: 3,time: 0.002) -10000 (it: 3,time: 0.002) + Solution: -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: pf Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001) + Solution: -10000(3) -10000(3) Processing: test_solver_data/masters/cgal/b_float.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) (c) -10000 (it: 2,time: 0.001) (c) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) (c) -10000(2) (c) Processing: test_solver_data/masters/cgal/b_float.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/masters/cgal/b_float.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.000999) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/masters/cgal/b_float.mps Strategy: ff Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/masters/cgal/b_float.mps Strategy: pf Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.000999) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: fe Verbosity: 0 - Solution: 5 (it: 2,time: 0) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.000999) 5 (it: 2,time: 0.001) (c) 5 (it: 2,time: 0.001) (c) 5 (it: 2,time: 0.001999) (c) + Solution: 5(2) 5(2) 5(2) 5(2) (c) 5(2) (c) 5(2) (c) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: pe Verbosity: 0 - Solution: 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.002) + Solution: 5(2) 5(2) 5(2) 5(2) 5(2) 5(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: eb Verbosity: 0 - Solution: 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.000999) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.000999) 5 (it: 2,time: 0.002) + Solution: 5(2) 5(2) 5(2) 5(2) 5(2) 5(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: ff Verbosity: 0 - Solution: 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) + Solution: 5(2) 5(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: pf Verbosity: 0 - Solution: 5 (it: 2,time: 0) 5 (it: 2,time: 0.001) + Solution: 5(2) 5(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.000999) (c) 0 (it: 5,time: 0.002) (c) 0 (it: 5,time: 0.004) (c) + Solution: 0(5) 0(5) 0(5) 0(5) (c) 0(5) (c) 0(5) (c) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003999) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003999) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) + Solution: 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 5,time: 0.000999) 0 (it: 5,time: 0.002) + Solution: 0(5) 0(5) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots_Remove_Pivots.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0) 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.002) 0 (it: 2,time: 0) (c) 0 (it: 2,time: 0.000999) (c) 0 (it: 2,time: 0.001) (c) + Solution: 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) (c) 0(2) (c) 0(2) (c) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots_Remove_Pivots.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0.001) + Solution: 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots_Remove_Pivots.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 2,time: 0) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0.001) + Solution: 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots_Remove_Pivots.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0.001) + Solution: 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots_Remove_Pivots.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) + Solution: 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/derivatives/QPE_solver_example_bug_shifted.mps Strategy: fe Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) (c) -6 (it: 4,time: 0.001) (c) -6 (it: 4,time: 0.001999) (c) + Solution: -6(4) (c) -6(4) (c) -6(4) (c) Processing: test_solver_data/derivatives/QPE_solver_example_bug_shifted.mps Strategy: pe Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) -6 (it: 4,time: 0.001) -6 (it: 4,time: 0.001999) + Solution: -6(4) -6(4) -6(4) Processing: test_solver_data/derivatives/QPE_solver_example_bug_shifted.mps Strategy: eb Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) -6 (it: 4,time: 0.001999) -6 (it: 4,time: 0.002) + Solution: -6(4) -6(4) -6(4) Processing: test_solver_data/derivatives/QPE_solver_example_bug_shifted.mps Strategy: ff Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) + Solution: -6(4) Processing: test_solver_data/derivatives/QPE_solver_example_bug_shifted.mps Strategy: pf Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) + Solution: -6(4) Processing: test_solver_data/derivatives/QPE_solver_example_bug_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 4,time: 0.001999) (c) 0 (it: 4,time: 0.002) (c) 0 (it: 4,time: 0.003999) (c) + Solution: 0(4) (c) 0(4) (c) 0(4) (c) Processing: test_solver_data/derivatives/QPE_solver_example_bug_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 4,time: 0.001999) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.003999) + Solution: 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/QPE_solver_example_bug_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 4,time: 0.001999) 0 (it: 4,time: 0.003) 0 (it: 4,time: 0.004999) + Solution: 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/QPE_solver_example_bug_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 4,time: 0.003) + Solution: 0(4) Processing: test_solver_data/derivatives/QPE_solver_example_bug_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 4,time: 0.002) + Solution: 0(4) Processing: test_solver_data/masters/cgal/QPE_solver_example_bug.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) (c) 0 (it: 4,time: 0.001) (c) 0 (it: 4,time: 0.001999) (c) + Solution: 0(4) 0(4) 0(4) 0(4) (c) 0(4) (c) 0(4) (c) Processing: test_solver_data/masters/cgal/QPE_solver_example_bug.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/masters/cgal/QPE_solver_example_bug.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001999) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/masters/cgal/QPE_solver_example_bug.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) + Solution: 0(4) 0(4) Processing: test_solver_data/masters/cgal/QPE_solver_example_bug.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 17 (it: 4,time: 0.001) 17 (it: 4,time: 0) 17 (it: 4,time: 0.002) 17 (it: 4,time: 0.001) (c) 17 (it: 4,time: 0.001999) (c) 17 (it: 4,time: 0.001999) (c) + Solution: 17(4) 17(4) 17(4) 17(4) (c) 17(4) (c) 17(4) (c) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 17 (it: 4,time: 0.001) 17 (it: 4,time: 0.002) 17 (it: 4,time: 0.001) 17 (it: 4,time: 0.001) 17 (it: 4,time: 0.001999) 17 (it: 4,time: 0.003) + Solution: 17(4) 17(4) 17(4) 17(4) 17(4) 17(4) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 17 (it: 6,time: 0.001) 17 (it: 6,time: 0.001) 17 (it: 6,time: 0.003) 17 (it: 6,time: 0.001999) 17 (it: 6,time: 0.002) 17 (it: 6,time: 0.002999) + Solution: 17(6) 17(6) 17(6) 17(6) 17(6) 17(6) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 17 (it: 4,time: 0.002) 17 (it: 4,time: 0.002) + Solution: 17(4) 17(4) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 17 (it: 4,time: 0.001999) 17 (it: 4,time: 0.000999) + Solution: 17(4) 17(4) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 2 (it: 7,time: 0.002999) 2 (it: 7,time: 0.003) 2 (it: 7,time: 0.007999) 2 (it: 7,time: 0.005) (c) 2 (it: 7,time: 0.005999) (c) 2 (it: 7,time: 0.010998) (c) + Solution: 2(7) 2(7) 2(7) 2(7) (c) 2(7) (c) 2(7) (c) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 2 (it: 7,time: 0.003) 2 (it: 7,time: 0.003999) 2 (it: 7,time: 0.007999) 2 (it: 7,time: 0.004999) 2 (it: 7,time: 0.005999) 2 (it: 7,time: 0.010998) + Solution: 2(7) 2(7) 2(7) 2(7) 2(7) 2(7) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 2 (it: 7,time: 0.003) 2 (it: 7,time: 0.004) 2 (it: 7,time: 0.007998) 2 (it: 7,time: 0.003999) 2 (it: 7,time: 0.005) 2 (it: 7,time: 0.010999) + Solution: 2(7) 2(7) 2(7) 2(7) 2(7) 2(7) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 2 (it: 7,time: 0.003999) 2 (it: 7,time: 0.004999) + Solution: 2(7) 2(7) Processing: test_solver_data/derivatives/LP_Row_Rank_lt_m_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 2 (it: 7,time: 0.004999) 2 (it: 7,time: 0.005999) + Solution: 2(7) 2(7) Processing: test_solver_data/masters/cgal/LP_Row_Rank_lt_m_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 2 (it: 4,time: 0.000999) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.002) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.001999) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.001999) 2 (it: 4,time: 0.001) (c) 2 (it: 4,time: 0.001999) (c) 2 (it: 4,time: 0.002) (c) + Solution: 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) (c) 2(4) (c) 2(4) (c) Processing: test_solver_data/masters/cgal/LP_Row_Rank_lt_m_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.002) 2 (it: 4,time: 0.002) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.002) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.002) 2 (it: 4,time: 0.000999) 2 (it: 4,time: 0.002) 2 (it: 4,time: 0.001999) + Solution: 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) 2(4) Processing: test_solver_data/masters/cgal/LP_Row_Rank_lt_m_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 2 (it: 6,time: 0.001) 2 (it: 6,time: 0.002) 2 (it: 6,time: 0.002) 2 (it: 6,time: 0.001) 2 (it: 6,time: 0.001999) 2 (it: 6,time: 0.002) 2 (it: 6,time: 0.001) 2 (it: 6,time: 0.001) 2 (it: 6,time: 0.003) 2 (it: 6,time: 0.001999) 2 (it: 6,time: 0.003) 2 (it: 6,time: 0.002999) + Solution: 2(6) 2(6) 2(6) 2(6) 2(6) 2(6) 2(6) 2(6) 2(6) 2(6) 2(6) 2(6) Processing: test_solver_data/masters/cgal/LP_Row_Rank_lt_m_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.000999) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.001999) + Solution: 2(4) 2(4) 2(4) 2(4) Processing: test_solver_data/masters/cgal/LP_Row_Rank_lt_m_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.001999) 2 (it: 4,time: 0.001) 2 (it: 4,time: 0.001999) + Solution: 2(4) 2(4) 2(4) 2(4) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0) (c) 1 (it: 1,time: 0.001) (c) 1 (it: 1,time: 0) (c) + Solution: 1(1) 1(1) 1(1) 1(1) (c) 1(1) (c) 1(1) (c) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0.001) 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0.001) + Solution: 1(1) 1(1) 1(1) 1(1) 1(1) 1(1) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0) + Solution: 1(1) 1(1) 1(1) 1(1) 1(1) 1(1) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 1 (it: 1,time: 0) 1 (it: 1,time: 0) + Solution: 1(1) 1(1) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 1 (it: 1,time: 0.000999) 1 (it: 1,time: 0.001) + Solution: 1(1) 1(1) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) (c) 0 (it: 1,time: 0.001) (c) 0 (it: 1,time: 0.001) (c) + Solution: 0(1) 0(1) 0(1) 0(1) (c) 0(1) (c) 0(1) (c) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) Processing: test_solver_data/derivatives/LP_no_cons_two_var_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_no_cons_two_var_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.000999) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) (c) 0 (it: 1,time: 0) (c) 0 (it: 1,time: 0) (c) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) (c) 0(1) (c) 0(1) (c) Processing: test_solver_data/masters/cgal/LP_no_cons_two_var_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_no_cons_two_var_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_no_cons_two_var_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 1,time: 0.000999) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_no_cons_two_var_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) (c) -6 (it: 4,time: 0.001) (c) -6 (it: 4,time: 0.001999) (c) + Solution: -6(4) (c) -6(4) (c) -6(4) (c) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -6 (it: 4,time: 0.001999) -6 (it: 4,time: 0.001) -6 (it: 4,time: 0.001999) + Solution: -6(4) -6(4) -6(4) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -6 (it: 4,time: 0.000999) -6 (it: 4,time: 0.002) -6 (it: 4,time: 0.001999) + Solution: -6(4) -6(4) -6(4) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -6 (it: 4,time: 0.002) + Solution: -6(4) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -6 (it: 4,time: 0.001999) + Solution: -6(4) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) (c) 0 (it: 4,time: 0.001999) (c) 0 (it: 4,time: 0.003999) (c) + Solution: 0(4) (c) 0(4) (c) 0(4) (c) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.002999) 0 (it: 4,time: 0.003999) + Solution: 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001999) 0 (it: 4,time: 0.004) + Solution: 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 4,time: 0.003) + Solution: 0(4) Processing: test_solver_data/derivatives/QP_leave_variable_bug_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 4,time: 0.002) + Solution: 0(4) Processing: test_solver_data/masters/cgal/QP_leave_variable_bug_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) (c) 0 (it: 4,time: 0.001) (c) 0 (it: 4,time: 0.001999) (c) + Solution: 0(4) 0(4) 0(4) 0(4) (c) 0(4) (c) 0(4) (c) Processing: test_solver_data/masters/cgal/QP_leave_variable_bug_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.002999) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/masters/cgal/QP_leave_variable_bug_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.002999) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/masters/cgal/QP_leave_variable_bug_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) + Solution: 0(4) 0(4) Processing: test_solver_data/masters/cgal/QP_leave_variable_bug_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: -729 (it: 8,time: 0.002) -729 (it: 8,time: 0.001999) -729 (it: 8,time: 0.004) -729 (it: 8,time: 0.005) (c) -729 (it: 8,time: 0.004999) (c) -729 (it: 8,time: 0.009999) (c) + Solution: -729(8) -729(8) -729(8) -729(8) (c) -729(8) (c) -729(8) (c) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: -729 (it: 8,time: 0.002) -729 (it: 8,time: 0.001999) -729 (it: 8,time: 0.003) -729 (it: 8,time: 0.004) -729 (it: 8,time: 0.005999) -729 (it: 8,time: 0.009998) + Solution: -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: -729 (it: 6,time: 0.001) -729 (it: 6,time: 0.001999) -729 (it: 6,time: 0.002) -729 (it: 6,time: 0.003) -729 (it: 6,time: 0.003999) -729 (it: 6,time: 0.006999) + Solution: -729(6) -729(6) -729(6) -729(6) -729(6) -729(6) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: -729 (it: 8,time: 0.002999) -729 (it: 8,time: 0.005999) + Solution: -729(8) -729(8) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: -729 (it: 8,time: 0.001999) -729 (it: 8,time: 0.003999) + Solution: -729(8) -729(8) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -747 (it: 8,time: 0.001) -747 (it: 8,time: 0.002) -747 (it: 8,time: 0.003) -747 (it: 8,time: 0.002999) (c) -747 (it: 8,time: 0.002999) (c) -747 (it: 8,time: 0.005999) (c) + Solution: -747(8) -747(8) -747(8) -747(8) (c) -747(8) (c) -747(8) (c) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -747 (it: 8,time: 0.001) -747 (it: 8,time: 0.002) -747 (it: 8,time: 0.002999) -747 (it: 8,time: 0.002999) -747 (it: 8,time: 0.003) -747 (it: 8,time: 0.005999) + Solution: -747(8) -747(8) -747(8) -747(8) -747(8) -747(8) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -747 (it: 6,time: 0.000999) -747 (it: 6,time: 0.001) -747 (it: 6,time: 0.002) -747 (it: 6,time: 0.002) -747 (it: 6,time: 0.002) -747 (it: 6,time: 0.004999) + Solution: -747(6) -747(6) -747(6) -747(6) -747(6) -747(6) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -747 (it: 8,time: 0.002) -747 (it: 8,time: 0.002999) + Solution: -747(8) -747(8) Processing: test_solver_data/derivatives/LP_KM3_base_3_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -747 (it: 8,time: 0.001999) -747 (it: 8,time: 0.003) + Solution: -747(8) -747(8) Processing: test_solver_data/masters/cgal/LP_KM3_base_3_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: -729 (it: 8,time: 0.001) -729 (it: 8,time: 0.001) -729 (it: 8,time: 0.002999) -729 (it: 8,time: 0.001) -729 (it: 8,time: 0.002) -729 (it: 8,time: 0.003) -729 (it: 8,time: 0.003) -729 (it: 8,time: 0.003) -729 (it: 8,time: 0.004999) -729 (it: 8,time: 0.003) (c) -729 (it: 8,time: 0.003) (c) -729 (it: 8,time: 0.005999) (c) + Solution: -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) (c) -729(8) (c) -729(8) (c) Processing: test_solver_data/masters/cgal/LP_KM3_base_3_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: -729 (it: 8,time: 0.001) -729 (it: 8,time: 0.002) -729 (it: 8,time: 0.002) -729 (it: 8,time: 0.002) -729 (it: 8,time: 0.001999) -729 (it: 8,time: 0.003) -729 (it: 8,time: 0.001999) -729 (it: 8,time: 0.002) -729 (it: 8,time: 0.004999) -729 (it: 8,time: 0.003) -729 (it: 8,time: 0.003) -729 (it: 8,time: 0.005999) + Solution: -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) -729(8) Processing: test_solver_data/masters/cgal/LP_KM3_base_3_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: -729 (it: 6,time: 0.001) -729 (it: 6,time: 0.000999) -729 (it: 6,time: 0.002) -729 (it: 6,time: 0.001) -729 (it: 6,time: 0.001) -729 (it: 6,time: 0.002) -729 (it: 6,time: 0.002) -729 (it: 6,time: 0.001999) -729 (it: 6,time: 0.004) -729 (it: 6,time: 0.001999) -729 (it: 6,time: 0.003) -729 (it: 6,time: 0.004999) + Solution: -729(6) -729(6) -729(6) -729(6) -729(6) -729(6) -729(6) -729(6) -729(6) -729(6) -729(6) -729(6) Processing: test_solver_data/masters/cgal/LP_KM3_base_3_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: -729 (it: 8,time: 0.001) -729 (it: 8,time: 0.001) -729 (it: 8,time: 0.002999) -729 (it: 8,time: 0.003) + Solution: -729(8) -729(8) -729(8) -729(8) Processing: test_solver_data/masters/cgal/LP_KM3_base_3_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: -729 (it: 8,time: 0.001) -729 (it: 8,time: 0.002) -729 (it: 8,time: 0.001999) -729 (it: 8,time: 0.002999) + Solution: -729(8) -729(8) -729(8) -729(8) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 1 (it: 1,time: 0.001) 1 (it: 1,time: 0.001) 1 (it: 1,time: 0.001) 1 (it: 1,time: 0.001) (c) 1 (it: 1,time: 0) (c) 1 (it: 1,time: 0) (c) + Solution: 1(1) 1(1) 1(1) 1(1) (c) 1(1) (c) 1(1) (c) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0.001) 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0) + Solution: 1(1) 1(1) 1(1) 1(1) 1(1) 1(1) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 1 (it: 1,time: 0.000999) 1 (it: 1,time: 0.001) 1 (it: 1,time: 0.001) 1 (it: 1,time: 0) 1 (it: 1,time: 0) 1 (it: 1,time: 0.001) + Solution: 1(1) 1(1) 1(1) 1(1) 1(1) 1(1) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 1 (it: 1,time: 0.001) 1 (it: 1,time: 0) + Solution: 1(1) 1(1) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 1 (it: 1,time: 0) 1 (it: 1,time: 0) + Solution: 1(1) 1(1) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0) 0 (it: 2,time: 0) 0 (it: 2,time: 0) (c) 0 (it: 2,time: 0.001) (c) 0 (it: 2,time: 0.001) (c) + Solution: 0(2) 0(2) 0(2) 0(2) (c) 0(2) (c) 0(2) (c) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 2,time: 0.001) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) + Solution: 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 2,time: 0) 0 (it: 2,time: 0) 0 (it: 2,time: 0) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0) 0 (it: 2,time: 0.000999) + Solution: 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 2,time: 0.001) 0 (it: 2,time: 0) + Solution: 0(2) 0(2) Processing: test_solver_data/derivatives/LP_no_cons_one_var_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0) + Solution: 0(2) 0(2) Processing: test_solver_data/masters/cgal/LP_no_cons_one_var_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) (c) 0 (it: 1,time: 0) (c) 0 (it: 1,time: 0) (c) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) (c) 0(1) (c) 0(1) (c) Processing: test_solver_data/masters/cgal/LP_no_cons_one_var_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_no_cons_one_var_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_no_cons_one_var_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_no_cons_one_var_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -5.5 (it: 7,time: 0.004999) (c) -5.5 (it: 7,time: 0.008999) (c) -5.5 (it: 7,time: 0.012998) (c) + Solution: -5.5(7) (c) -5.5(7) (c) -5.5(7) (c) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -5.5 (it: 7,time: 0.005999) -5.5 (it: 7,time: 0.005999) -5.5 (it: 7,time: 0.012998) + Solution: -5.5(7) -5.5(7) -5.5(7) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -5.5 (it: 7,time: 0.003999) -5.5 (it: 7,time: 0.005999) -5.5 (it: 7,time: 0.011998) + Solution: -5.5(7) -5.5(7) -5.5(7) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -5.5 (it: 7,time: 0.006999) + Solution: -5.5(7) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -5.5 (it: 7,time: 0.006999) + Solution: -5.5(7) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.005999) (c) 2.5 (it: 7,time: 0.007999) (c) 2.5 (it: 7,time: 0.020997) (c) + Solution: 2.5(7) (c) 2.5(7) (c) 2.5(7) (c) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.006999) 2.5 (it: 7,time: 0.006999) 2.5 (it: 7,time: 0.014998) + Solution: 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.004) 2.5 (it: 7,time: 0.006999) 2.5 (it: 7,time: 0.011998) + Solution: 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.007999) + Solution: 2.5(7) Processing: test_solver_data/derivatives/PD_Dual_x_shifted_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.006999) + Solution: 2.5(7) Processing: test_solver_data/masters/cgal/PD_Dual_x_shifted_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.004999) 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.011998) 2.5 (it: 7,time: 0.005999) (c) 2.5 (it: 7,time: 0.006999) (c) 2.5 (it: 7,time: 0.012998) (c) + Solution: 2.5(7) 2.5(7) 2.5(7) 2.5(7) (c) 2.5(7) (c) 2.5(7) (c) Processing: test_solver_data/masters/cgal/PD_Dual_x_shifted_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.004999) 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.011998) 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.007999) 2.5 (it: 7,time: 0.012998) + Solution: 2.5(7) 2.5(7) 2.5(7) 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/masters/cgal/PD_Dual_x_shifted_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.003999) 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.010998) 2.5 (it: 7,time: 0.003999) 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.011998) + Solution: 2.5(7) 2.5(7) 2.5(7) 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/masters/cgal/PD_Dual_x_shifted_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.006999) + Solution: 2.5(7) 2.5(7) Processing: test_solver_data/masters/cgal/PD_Dual_x_shifted_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.006999) 2.5 (it: 7,time: 0.005999) + Solution: 2.5(7) 2.5(7) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: fe Verbosity: 0 - Solution: 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) (c) 5 (it: 2,time: 0.001) (c) 5 (it: 2,time: 0.001) (c) + Solution: 5(2) 5(2) 5(2) 5(2) (c) 5(2) (c) 5(2) (c) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: pe Verbosity: 0 - Solution: 5 (it: 2,time: 0) 5 (it: 2,time: 0) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.002) + Solution: 5(2) 5(2) 5(2) 5(2) 5(2) 5(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: eb Verbosity: 0 - Solution: 5 (it: 2,time: 0) 5 (it: 2,time: 0) 5 (it: 2,time: 0.000999) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.002) + Solution: 5(2) 5(2) 5(2) 5(2) 5(2) 5(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: ff Verbosity: 0 - Solution: 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) + Solution: 5(2) 5(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_shifted.mps Strategy: pf Verbosity: 0 - Solution: 5 (it: 2,time: 0.001) 5 (it: 2,time: 0.001) + Solution: 5(2) 5(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) (c) 0 (it: 5,time: 0.002) (c) 0 (it: 5,time: 0.004) (c) + Solution: 0(5) 0(5) 0(5) 0(5) (c) 0(5) (c) 0(5) (c) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 5,time: 0.000999) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003999) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 5,time: 0.000999) 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.004) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) + Solution: 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_Remove_Pivots_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.001) + Solution: 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_shifted.mps Strategy: fe Verbosity: 0 - Solution: 50 (it: 2,time: 0.000999) 50 (it: 2,time: 0.001) 50 (it: 2,time: 0.002) 50 (it: 2,time: 0.002) (c) 50 (it: 2,time: 0.002) (c) 50 (it: 2,time: 0.004) (c) + Solution: 50(2) 50(2) 50(2) 50(2) (c) 50(2) (c) 50(2) (c) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_shifted.mps Strategy: pe Verbosity: 0 - Solution: 50 (it: 2,time: 0.001) 50 (it: 2,time: 0.000999) 50 (it: 2,time: 0.002) 50 (it: 2,time: 0.002) 50 (it: 2,time: 0.001999) 50 (it: 2,time: 0.003999) + Solution: 50(2) 50(2) 50(2) 50(2) 50(2) 50(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_shifted.mps Strategy: eb Verbosity: 0 - Solution: 50 (it: 2,time: 0.001) 50 (it: 2,time: 0.001) 50 (it: 2,time: 0.001999) 50 (it: 2,time: 0.001) 50 (it: 2,time: 0.002) 50 (it: 2,time: 0.004999) + Solution: 50(2) 50(2) 50(2) 50(2) 50(2) 50(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_shifted.mps Strategy: ff Verbosity: 0 - Solution: 50 (it: 2,time: 0.002) 50 (it: 2,time: 0.002) + Solution: 50(2) 50(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_shifted.mps Strategy: pf Verbosity: 0 - Solution: 50 (it: 2,time: 0.000999) 50 (it: 2,time: 0.002) + Solution: 50(2) 50(2) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.002999) (c) 0 (it: 5,time: 0.002999) (c) 0 (it: 5,time: 0.005999) (c) + Solution: 0(5) 0(5) 0(5) 0(5) (c) 0(5) (c) 0(5) (c) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.005) 0 (it: 5,time: 0.002999) 0 (it: 5,time: 0.002999) 0 (it: 5,time: 0.005999) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002999) 0 (it: 5,time: 0.004) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.005999) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003) + Solution: 0(5) 0(5) Processing: test_solver_data/derivatives/LP_Test_Expel_Drive_Pivots_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003) + Solution: 0(5) 0(5) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001999) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.002999) 0 (it: 2,time: 0.001) (c) 0 (it: 2,time: 0.002) (c) 0 (it: 2,time: 0.003) (c) + Solution: 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) (c) 0(2) (c) 0(2) (c) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.002) 0 (it: 2,time: 0.000999) 0 (it: 2,time: 0.002) 0 (it: 2,time: 0.003999) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.002) 0 (it: 2,time: 0.003999) + Solution: 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.002) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001999) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.002) 0 (it: 2,time: 0.003) 0 (it: 2,time: 0.002) 0 (it: 2,time: 0.002) 0 (it: 2,time: 0.003999) + Solution: 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.002) + Solution: 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/masters/cgal/LP_Test_Expel_Drive_Pivots.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.001) 0 (it: 2,time: 0.002) 0 (it: 2,time: 0.001999) + Solution: 0(2) 0(2) 0(2) 0(2) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -11873.5 (it: 6,time: 0.002999) (c) -11873.5 (it: 6,time: 0.003999) (c) -11873.5 (it: 6,time: 0.005999) (c) + Solution: -11873.5(6) (c) -11873.5(6) (c) -11873.5(6) (c) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -11873.5 (it: 6,time: 0.003) -11873.5 (it: 6,time: 0.003999) -11873.5 (it: 6,time: 0.005999) + Solution: -11873.5(6) -11873.5(6) -11873.5(6) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -11873.5 (it: 6,time: 0.001999) -11873.5 (it: 6,time: 0.004) -11873.5 (it: 6,time: 0.004999) + Solution: -11873.5(6) -11873.5(6) -11873.5(6) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -11873.5 (it: 6,time: 0.003) + Solution: -11873.5(6) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -11873.5 (it: 6,time: 0.003) + Solution: -11873.5(6) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.007998) (c) 2.5 (it: 7,time: 0.009998) (c) 2.5 (it: 7,time: 0.019997) (c) + Solution: 2.5(7) (c) 2.5(7) (c) 2.5(7) (c) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.006999) 2.5 (it: 7,time: 0.008998) 2.5 (it: 7,time: 0.017997) + Solution: 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.007999) 2.5 (it: 7,time: 0.010998) 2.5 (it: 7,time: 0.018997) + Solution: 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.009998) + Solution: 2.5(7) Processing: test_solver_data/derivatives/PD_Primal_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.007999) + Solution: 2.5(7) Processing: test_solver_data/masters/cgal/PD_Primal_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 2.5 (it: 6,time: 0.002) 2.5 (it: 6,time: 0.003) 2.5 (it: 6,time: 0.005) 2.5 (it: 6,time: 0.002999) (c) 2.5 (it: 6,time: 0.001999) (c) 2.5 (it: 6,time: 0.005999) (c) + Solution: 2.5(6) 2.5(6) 2.5(6) 2.5(6) (c) 2.5(6) (c) 2.5(6) (c) Processing: test_solver_data/masters/cgal/PD_Primal_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 2.5 (it: 6,time: 0.001999) 2.5 (it: 6,time: 0.002) 2.5 (it: 6,time: 0.005) 2.5 (it: 6,time: 0.002) 2.5 (it: 6,time: 0.003999) 2.5 (it: 6,time: 0.005999) + Solution: 2.5(6) 2.5(6) 2.5(6) 2.5(6) 2.5(6) 2.5(6) Processing: test_solver_data/masters/cgal/PD_Primal_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 2.5 (it: 6,time: 0.001999) 2.5 (it: 6,time: 0.003) 2.5 (it: 6,time: 0.004) 2.5 (it: 6,time: 0.002) 2.5 (it: 6,time: 0.002999) 2.5 (it: 6,time: 0.005999) + Solution: 2.5(6) 2.5(6) 2.5(6) 2.5(6) 2.5(6) 2.5(6) Processing: test_solver_data/masters/cgal/PD_Primal_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 2.5 (it: 6,time: 0.003) 2.5 (it: 6,time: 0.003) + Solution: 2.5(6) 2.5(6) Processing: test_solver_data/masters/cgal/PD_Primal_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 2.5 (it: 6,time: 0.002) 2.5 (it: 6,time: 0.003) + Solution: 2.5(6) 2.5(6) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -11.5 (it: 4,time: 0.001) (c) -11.5 (it: 4,time: 0.001) (c) -11.5 (it: 4,time: 0.002) (c) + Solution: -11.5(4) (c) -11.5(4) (c) -11.5(4) (c) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -11.5 (it: 4,time: 0) -11.5 (it: 4,time: 0.001) -11.5 (it: 4,time: 0.000999) + Solution: -11.5(4) -11.5(4) -11.5(4) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -11.5 (it: 4,time: 0.001) -11.5 (it: 4,time: 0.000999) -11.5 (it: 4,time: 0.002) + Solution: -11.5(4) -11.5(4) -11.5(4) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -11.5 (it: 4,time: 0.000999) + Solution: -11.5(4) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -11.5 (it: 4,time: 0.001) + Solution: -11.5(4) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: -2.5 (it: 5,time: 0.002) (c) -2.5 (it: 5,time: 0.001999) (c) -2.5 (it: 5,time: 0.002999) (c) + Solution: -2.5(5) (c) -2.5(5) (c) -2.5(5) (c) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: -2.5 (it: 5,time: 0.001999) -2.5 (it: 5,time: 0.001) -2.5 (it: 5,time: 0.002999) + Solution: -2.5(5) -2.5(5) -2.5(5) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: -2.5 (it: 5,time: 0.002) -2.5 (it: 5,time: 0.002) -2.5 (it: 5,time: 0.003) + Solution: -2.5(5) -2.5(5) -2.5(5) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: -2.5 (it: 5,time: 0.001) + Solution: -2.5(5) Processing: test_solver_data/derivatives/QP_Degenerate_rank_zero_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: -2.5 (it: 5,time: 0.002) + Solution: -2.5(5) Processing: test_solver_data/masters/cgal/QP_Degenerate_rank_zero_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: -2.5 (it: 4,time: 0.000999) -2.5 (it: 4,time: 0) -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0.001) (c) -2.5 (it: 4,time: 0.001) (c) -2.5 (it: 4,time: 0.001) (c) + Solution: -2.5(4) -2.5(4) -2.5(4) -2.5(4) (c) -2.5(4) (c) -2.5(4) (c) Processing: test_solver_data/masters/cgal/QP_Degenerate_rank_zero_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: -2.5 (it: 4,time: 0) -2.5 (it: 4,time: 0) -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0.001999) + Solution: -2.5(4) -2.5(4) -2.5(4) -2.5(4) -2.5(4) -2.5(4) Processing: test_solver_data/masters/cgal/QP_Degenerate_rank_zero_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0) -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0.001) + Solution: -2.5(4) -2.5(4) -2.5(4) -2.5(4) -2.5(4) -2.5(4) Processing: test_solver_data/masters/cgal/QP_Degenerate_rank_zero_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0.001) + Solution: -2.5(4) -2.5(4) Processing: test_solver_data/masters/cgal/QP_Degenerate_rank_zero_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: -2.5 (it: 4,time: 0.001) -2.5 (it: 4,time: 0.001) + Solution: -2.5(4) -2.5(4) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 7,time: 0.002) 0 (it: 7,time: 0.001999) 0 (it: 7,time: 0.002999) 0 (it: 7,time: 0.002999) (c) 0 (it: 7,time: 0.004999) (c) 0 (it: 7,time: 0.006998) (c) + Solution: 0(7) 0(7) 0(7) 0(7) (c) 0(7) (c) 0(7) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 8,time: 0.001999) 0 (it: 8,time: 0.002) 0 (it: 8,time: 0.003) 0 (it: 8,time: 0.004) 0 (it: 8,time: 0.004999) 0 (it: 8,time: 0.007999) + Solution: 0(8) 0(8) 0(8) 0(8) 0(8) 0(8) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 8,time: 0.002) 0 (it: 8,time: 0.002) 0 (it: 8,time: 0.003) 0 (it: 8,time: 0.003999) 0 (it: 8,time: 0.003999) 0 (it: 8,time: 0.006999) + Solution: 0(8) 0(8) 0(8) 0(8) 0(8) 0(8) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 7,time: 0.001999) 0 (it: 7,time: 0.001999) + Solution: 0(7) 0(7) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 8,time: 0.002) 0 (it: 8,time: 0.003999) + Solution: 0(8) 0(8) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: -24 (it: 11,time: 0.009999) -24 (it: 11,time: 0.011999) -24 (it: 11,time: 0.024996) -24 (it: 11,time: 0.028996) (c) -24 (it: 11,time: 0.033995) (c) -24 (it: 11,time: 0.077988) (c) + Solution: -24(11) -24(11) -24(11) -24(11) (c) -24(11) (c) -24(11) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: -24 (it: 11,time: 0.009999) -24 (it: 11,time: 0.011998) -24 (it: 11,time: 0.022996) -24 (it: 11,time: 0.029996) -24 (it: 11,time: 0.029995) -24 (it: 11,time: 0.079988) + Solution: -24(11) -24(11) -24(11) -24(11) -24(11) -24(11) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: -24 (it: 14,time: 0.012998) -24 (it: 14,time: 0.016998) -24 (it: 14,time: 0.031995) -24 (it: 14,time: 0.047993) -24 (it: 14,time: 0.051992) -24 (it: 14,time: 0.13398) + Solution: -24(14) -24(14) -24(14) -24(14) -24(14) -24(14) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: -24 (it: 11,time: 0.012998) -24 (it: 11,time: 0.032995) + Solution: -24(11) -24(11) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_a_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: -24 (it: 11,time: 0.011998) -24 (it: 11,time: 0.032995) + Solution: -24(11) -24(11) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_a_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: -24 (it: 7,time: 0.001999) -24 (it: 7,time: 0.003) -24 (it: 7,time: 0.003) -24 (it: 7,time: 0.003) (c) -24 (it: 7,time: 0.005) (c) -24 (it: 7,time: 0.006999) (c) + Solution: -24(7) -24(7) -24(7) -24(7) (c) -24(7) (c) -24(7) (c) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_a_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: -24 (it: 8,time: 0.001) -24 (it: 8,time: 0.002) -24 (it: 8,time: 0.003) -24 (it: 8,time: 0.002999) -24 (it: 8,time: 0.004999) -24 (it: 8,time: 0.006999) + Solution: -24(8) -24(8) -24(8) -24(8) -24(8) -24(8) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_a_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: -24 (it: 8,time: 0.001) -24 (it: 8,time: 0.001999) -24 (it: 8,time: 0.002) -24 (it: 8,time: 0.004) -24 (it: 8,time: 0.003999) -24 (it: 8,time: 0.006999) + Solution: -24(8) -24(8) -24(8) -24(8) -24(8) -24(8) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_a_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: -24 (it: 7,time: 0.002) -24 (it: 7,time: 0.003999) + Solution: -24(7) -24(7) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_a_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: -24 (it: 8,time: 0.001999) -24 (it: 8,time: 0.005) + Solution: -24(8) -24(8) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -51 (it: 4,time: 0) -51 (it: 4,time: 0.001999) -51 (it: 4,time: 0.002) -51 (it: 4,time: 0.001) (c) -51 (it: 4,time: 0.001999) (c) -51 (it: 4,time: 0.001999) (c) + Solution: -51(4) -51(4) -51(4) -51(4) (c) -51(4) (c) -51(4) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -87 (it: 5,time: 0.001) -87 (it: 5,time: 0.001) -87 (it: 5,time: 0.002) -87 (it: 5,time: 0.002) -87 (it: 5,time: 0.002) -87 (it: 5,time: 0.003999) + Solution: -87(5) -87(5) -87(5) -87(5) -87(5) -87(5) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -94 (it: 7,time: 0.001) -94 (it: 7,time: 0.001999) -94 (it: 7,time: 0.003) -94 (it: 7,time: 0.002) -94 (it: 7,time: 0.002) -94 (it: 7,time: 0.002999) + Solution: -94(7) -94(7) -94(7) -94(7) -94(7) -94(7) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -51 (it: 4,time: 0.001) -51 (it: 4,time: 0.001999) + Solution: -51(4) -51(4) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -87 (it: 5,time: 0.001) -87 (it: 5,time: 0.001) + Solution: -87(5) -87(5) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: -5 (it: 5,time: 0.002) -5 (it: 5,time: 0.002999) -5 (it: 5,time: 0.003999) -5 (it: 5,time: 0.003) (c) -5 (it: 5,time: 0.003999) (c) -5 (it: 5,time: 0.008999) (c) + Solution: -5(5) -5(5) -5(5) -5(5) (c) -5(5) (c) -5(5) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: -5 (it: 5,time: 0.002) -5 (it: 5,time: 0.002) -5 (it: 5,time: 0.004999) -5 (it: 5,time: 0.003) -5 (it: 5,time: 0.003999) -5 (it: 5,time: 0.008998) + Solution: -5(5) -5(5) -5(5) -5(5) -5(5) -5(5) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: -7 (it: 7,time: 0.002999) -7 (it: 7,time: 0.003999) -7 (it: 7,time: 0.007999) -7 (it: 7,time: 0.007999) -7 (it: 7,time: 0.007999) -7 (it: 7,time: 0.016998) + Solution: -7(7) -7(7) -7(7) -7(7) -7(7) -7(7) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: -5 (it: 5,time: 0.001999) -5 (it: 5,time: 0.003999) + Solution: -5(5) -5(5) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_c_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: -5 (it: 5,time: 0.003) -5 (it: 5,time: 0.004) + Solution: -5(5) -5(5) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_c_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: -5 (it: 3,time: 0) -5 (it: 3,time: 0.001) -5 (it: 3,time: 0.000999) -5 (it: 3,time: 0.002) (c) -5 (it: 3,time: 0.001) (c) -5 (it: 3,time: 0.002) (c) + Solution: -5(3) -5(3) -5(3) -5(3) (c) -5(3) (c) -5(3) (c) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_c_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: -11.5 (it: 3,time: 0.001) -11.5 (it: 3,time: 0.001) -11.5 (it: 3,time: 0.001) -11.5 (it: 3,time: 0.001) -11.5 (it: 3,time: 0.001) -11.5 (it: 3,time: 0.001999) + Solution: -11.5(3) -11.5(3) -11.5(3) -11.5(3) -11.5(3) -11.5(3) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_c_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: -14.2787 (it: 8,time: 0.002) -14.2787 (it: 8,time: 0.002999) -14.2787 (it: 8,time: 0.002999) -14.2787 (it: 8,time: 0.003999) -14.2787 (it: 8,time: 0.004999) -14.2787 (it: 8,time: 0.008999) + Solution: -14.2787(8) -14.2787(8) -14.2787(8) -14.2787(8) -14.2787(8) -14.2787(8) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_c_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: -5 (it: 3,time: 0.001) -5 (it: 3,time: 0.001) + Solution: -5(3) -5(3) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_c_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: -11.5 (it: 3,time: 0.001) -11.5 (it: 3,time: 0.001999) + Solution: -11.5(3) -11.5(3) Processing: test_solver_data/derivatives/Bernd3_shifted.mps Strategy: fe Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.001999) (c) -24.5 (it: 5,time: 0.002) (c) -24.5 (it: 5,time: 0.003) (c) + Solution: -24.5(5) (c) -24.5(5) (c) -24.5(5) (c) Processing: test_solver_data/derivatives/Bernd3_shifted.mps Strategy: pe Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.001999) -24.5 (it: 5,time: 0.002) -24.5 (it: 5,time: 0.002999) + Solution: -24.5(5) -24.5(5) -24.5(5) Processing: test_solver_data/derivatives/Bernd3_shifted.mps Strategy: eb Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.000999) -24.5 (it: 5,time: 0.002) -24.5 (it: 5,time: 0.002999) + Solution: -24.5(5) -24.5(5) -24.5(5) Processing: test_solver_data/derivatives/Bernd3_shifted.mps Strategy: ff Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.002999) + Solution: -24.5(5) Processing: test_solver_data/derivatives/Bernd3_shifted.mps Strategy: pf Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.002) + Solution: -24.5(5) Processing: test_solver_data/derivatives/Bernd3_free.mps Strategy: fe Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.002) (c) -7.5 (it: 5,time: 0.002) (c) -7.5 (it: 5,time: 0.004) (c) + Solution: -7.5(5) (c) -7.5(5) (c) -7.5(5) (c) Processing: test_solver_data/derivatives/Bernd3_free.mps Strategy: pe Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.003) + Solution: -7.5(5) -7.5(5) -7.5(5) Processing: test_solver_data/derivatives/Bernd3_free.mps Strategy: eb Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001999) -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.003) + Solution: -7.5(5) -7.5(5) -7.5(5) Processing: test_solver_data/derivatives/Bernd3_free.mps Strategy: ff Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.002) + Solution: -7.5(5) Processing: test_solver_data/derivatives/Bernd3_free.mps Strategy: pf Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.002) + Solution: -7.5(5) Processing: test_solver_data/masters/cgal/Bernd3.mps Strategy: fe Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.001) (c) -7.5 (it: 5,time: 0.002999) (c) -7.5 (it: 5,time: 0.001999) (c) + Solution: -7.5(5) -7.5(5) -7.5(5) -7.5(5) (c) -7.5(5) (c) -7.5(5) (c) Processing: test_solver_data/masters/cgal/Bernd3.mps Strategy: pe Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.002999) -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.001999) -7.5 (it: 5,time: 0.003) + Solution: -7.5(5) -7.5(5) -7.5(5) -7.5(5) -7.5(5) -7.5(5) Processing: test_solver_data/masters/cgal/Bernd3.mps Strategy: eb Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.002999) -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.002999) + Solution: -7.5(5) -7.5(5) -7.5(5) -7.5(5) -7.5(5) -7.5(5) Processing: test_solver_data/masters/cgal/Bernd3.mps Strategy: ff Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.002999) + Solution: -7.5(5) -7.5(5) Processing: test_solver_data/masters/cgal/Bernd3.mps Strategy: pf Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001999) -7.5 (it: 5,time: 0.002) + Solution: -7.5(5) -7.5(5) Processing: test_solver_data/derivatives/Bernd4_shifted.mps Strategy: fe Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.002) (c) -24.5 (it: 5,time: 0.001999) (c) -24.5 (it: 5,time: 0.001999) (c) + Solution: -24.5(5) (c) -24.5(5) (c) -24.5(5) (c) Processing: test_solver_data/derivatives/Bernd4_shifted.mps Strategy: pe Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.002) -24.5 (it: 5,time: 0.003999) -24.5 (it: 5,time: 0.004999) + Solution: -24.5(5) -24.5(5) -24.5(5) Processing: test_solver_data/derivatives/Bernd4_shifted.mps Strategy: eb Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.001999) -24.5 (it: 5,time: 0.002) -24.5 (it: 5,time: 0.003999) + Solution: -24.5(5) -24.5(5) -24.5(5) Processing: test_solver_data/derivatives/Bernd4_shifted.mps Strategy: ff Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.001) + Solution: -24.5(5) Processing: test_solver_data/derivatives/Bernd4_shifted.mps Strategy: pf Verbosity: 0 - Solution: -24.5 (it: 5,time: 0.002) + Solution: -24.5(5) Processing: test_solver_data/derivatives/Bernd4_free.mps Strategy: fe Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.002) (c) -7.5 (it: 5,time: 0.001) (c) -7.5 (it: 5,time: 0.003) (c) + Solution: -7.5(5) (c) -7.5(5) (c) -7.5(5) (c) Processing: test_solver_data/derivatives/Bernd4_free.mps Strategy: pe Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.001999) -7.5 (it: 5,time: 0.003) + Solution: -7.5(5) -7.5(5) -7.5(5) Processing: test_solver_data/derivatives/Bernd4_free.mps Strategy: eb Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.001999) -7.5 (it: 5,time: 0.003) + Solution: -7.5(5) -7.5(5) -7.5(5) Processing: test_solver_data/derivatives/Bernd4_free.mps Strategy: ff Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.002) + Solution: -7.5(5) Processing: test_solver_data/derivatives/Bernd4_free.mps Strategy: pf Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.002) + Solution: -7.5(5) Processing: test_solver_data/masters/cgal/Bernd4.mps Strategy: fe Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.002999) -7.5 (it: 5,time: 0.002) (c) -7.5 (it: 5,time: 0.001999) (c) -7.5 (it: 5,time: 0.002999) (c) + Solution: -7.5(5) -7.5(5) -7.5(5) -7.5(5) (c) -7.5(5) (c) -7.5(5) (c) Processing: test_solver_data/masters/cgal/Bernd4.mps Strategy: pe Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.000999) -7.5 (it: 5,time: 0.003) + Solution: -7.5(5) -7.5(5) -7.5(5) -7.5(5) -7.5(5) -7.5(5) Processing: test_solver_data/masters/cgal/Bernd4.mps Strategy: eb Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.001) -7.5 (it: 5,time: 0.001999) -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.000999) -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.001999) + Solution: -7.5(5) -7.5(5) -7.5(5) -7.5(5) -7.5(5) -7.5(5) Processing: test_solver_data/masters/cgal/Bernd4.mps Strategy: ff Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.000999) -7.5 (it: 5,time: 0.002) + Solution: -7.5(5) -7.5(5) Processing: test_solver_data/masters/cgal/Bernd4.mps Strategy: pf Verbosity: 0 - Solution: -7.5 (it: 5,time: 0.002) -7.5 (it: 5,time: 0.001999) + Solution: -7.5(5) -7.5(5) Processing: test_solver_data/derivatives/Bernd5_shifted.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001999) 0 (it: 4,time: 0.001) (c) 0 (it: 4,time: 0.000999) (c) 0 (it: 4,time: 0.002) (c) + Solution: 0(4) 0(4) 0(4) 0(4) (c) 0(4) (c) 0(4) (c) Processing: test_solver_data/derivatives/Bernd5_shifted.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/Bernd5_shifted.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.003) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/Bernd5_shifted.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) + Solution: 0(4) 0(4) Processing: test_solver_data/derivatives/Bernd5_shifted.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 4,time: 0.001999) 0 (it: 4,time: 0.001) + Solution: 0(4) 0(4) Processing: test_solver_data/derivatives/Bernd5_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001999) (c) 0 (it: 4,time: 0.001) (c) 0 (it: 4,time: 0.002999) (c) + Solution: 0(4) 0(4) 0(4) 0(4) (c) 0(4) (c) 0(4) (c) Processing: test_solver_data/derivatives/Bernd5_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.002999) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/Bernd5_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002999) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.003) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/Bernd5_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) Processing: test_solver_data/derivatives/Bernd5_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001999) + Solution: 0(4) 0(4) Processing: test_solver_data/masters/cgal/Bernd5.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) (c) 0 (it: 4,time: 0.000999) (c) 0 (it: 4,time: 0.002999) (c) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) (c) 0(4) (c) 0(4) (c) Processing: test_solver_data/masters/cgal/Bernd5.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 4,time: 0) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.003) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.003) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/masters/cgal/Bernd5.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001999) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/masters/cgal/Bernd5.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) + Solution: 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/masters/cgal/Bernd5.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001999) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) + Solution: 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 14 (it: 1,time: 0.001) 14 (it: 1,time: 0.001) 14 (it: 1,time: 0.001) 14 (it: 1,time: 0.001) (c) 14 (it: 1,time: 0.001) (c) 14 (it: 1,time: 0.000999) (c) + Solution: 14(1) 14(1) 14(1) 14(1) (c) 14(1) (c) 14(1) (c) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 14 (it: 1,time: 0) 14 (it: 1,time: 0.000999) 14 (it: 1,time: 0.001) 14 (it: 1,time: 0.001) 14 (it: 1,time: 0.001) 14 (it: 1,time: 0.001999) + Solution: 14(1) 14(1) 14(1) 14(1) 14(1) 14(1) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 14 (it: 1,time: 0) 14 (it: 1,time: 0) 14 (it: 1,time: 0.001) 14 (it: 1,time: 0.001) 14 (it: 1,time: 0.000999) 14 (it: 1,time: 0.002) + Solution: 14(1) 14(1) 14(1) 14(1) 14(1) 14(1) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 14 (it: 1,time: 0) 14 (it: 1,time: 0.001) + Solution: 14(1) 14(1) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 14 (it: 1,time: 0) 14 (it: 1,time: 0.001) + Solution: 14(1) 14(1) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 8,time: 0.004) 0 (it: 8,time: 0.005) 0 (it: 8,time: 0.009999) 0 (it: 8,time: 0.011998) (c) 0 (it: 8,time: 0.012998) (c) 0 (it: 8,time: 0.033995) (c) + Solution: 0(8) 0(8) 0(8) 0(8) (c) 0(8) (c) 0(8) (c) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 8,time: 0.003999) 0 (it: 8,time: 0.004999) 0 (it: 8,time: 0.009998) 0 (it: 8,time: 0.011998) 0 (it: 8,time: 0.013997) 0 (it: 8,time: 0.024996) + Solution: 0(8) 0(8) 0(8) 0(8) 0(8) 0(8) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 8,time: 0.003999) 0 (it: 8,time: 0.003999) 0 (it: 8,time: 0.008999) 0 (it: 8,time: 0.012998) 0 (it: 8,time: 0.012998) 0 (it: 8,time: 0.031995) + Solution: 0(8) 0(8) 0(8) 0(8) 0(8) 0(8) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 8,time: 0.004999) 0 (it: 8,time: 0.012998) + Solution: 0(8) 0(8) Processing: test_solver_data/derivatives/LP_Unbounded_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 8,time: 0.003999) 0 (it: 8,time: 0.012998) + Solution: 0(8) 0(8) Processing: test_solver_data/masters/cgal/LP_Unbounded_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0.000999) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) (c) 0 (it: 1,time: 0.001) (c) 0 (it: 1,time: 0.002) (c) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) (c) 0(1) (c) 0(1) (c) Processing: test_solver_data/masters/cgal/LP_Unbounded_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.002) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_Unbounded_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0.000999) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.002) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_Unbounded_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/LP_Unbounded_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/derivatives/QPTEST_shifted.mps Strategy: fe Verbosity: 0 - Solution: -26.1281 (it: 3,time: 0.000999) (c) -26.1281 (it: 3,time: 0.001) (c) + Solution: -26.1281(3) (c) -26.1281(3) (c) Processing: test_solver_data/derivatives/QPTEST_shifted.mps Strategy: pe Verbosity: 0 - Solution: -26.1281 (it: 3,time: 0.001) -26.1281 (it: 3,time: 0.001) + Solution: -26.1281(3) -26.1281(3) Processing: test_solver_data/derivatives/QPTEST_shifted.mps Strategy: eb Verbosity: 0 - Solution: -26.1281 (it: 3,time: 0.001) -26.1281 (it: 3,time: 0.002) + Solution: -26.1281(3) -26.1281(3) Processing: test_solver_data/derivatives/QPTEST_shifted.mps Strategy: ff Verbosity: 0 - Solution: -26.1281 (it: 3,time: 0.001) + Solution: -26.1281(3) Processing: test_solver_data/derivatives/QPTEST_shifted.mps Strategy: pf Verbosity: 0 - Solution: -26.1281 (it: 3,time: 0.000999) + Solution: -26.1281(3) Processing: test_solver_data/derivatives/QPTEST_free.mps Strategy: fe Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.001) (c) 4.37188 (it: 3,time: 0.001999) (c) + Solution: 4.37188(3) (c) 4.37188(3) (c) Processing: test_solver_data/derivatives/QPTEST_free.mps Strategy: pe Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.002) 4.37188 (it: 3,time: 0.002) + Solution: 4.37188(3) 4.37188(3) Processing: test_solver_data/derivatives/QPTEST_free.mps Strategy: eb Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.002) 4.37188 (it: 3,time: 0.001999) + Solution: 4.37188(3) 4.37188(3) Processing: test_solver_data/derivatives/QPTEST_free.mps Strategy: ff Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.000999) + Solution: 4.37188(3) Processing: test_solver_data/derivatives/QPTEST_free.mps Strategy: pf Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.001) + Solution: 4.37188(3) Processing: test_solver_data/masters/cgal/QPTEST.mps Strategy: fe Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.000999) (c) 4.37188 (it: 3,time: 0.001) (c) + Solution: 4.37188(3) (c) 4.37188(3) (c) Processing: test_solver_data/masters/cgal/QPTEST.mps Strategy: pe Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.001) 4.37188 (it: 3,time: 0.001) + Solution: 4.37188(3) 4.37188(3) Processing: test_solver_data/masters/cgal/QPTEST.mps Strategy: eb Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.001) 4.37188 (it: 3,time: 0.002) + Solution: 4.37188(3) 4.37188(3) Processing: test_solver_data/masters/cgal/QPTEST.mps Strategy: ff Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.001) + Solution: 4.37188(3) Processing: test_solver_data/masters/cgal/QPTEST.mps Strategy: pf Verbosity: 0 - Solution: 4.37188 (it: 3,time: 0.000999) + Solution: 4.37188(3) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) (c) -10000 (it: 2,time: 0.001999) (c) + Solution: -10000(2) -10000(2) -10000(2) (c) -10000(2) (c) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.000999) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.002) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: ff Verbosity: 0 - Solution: -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_float_shifted.mps Strategy: pf Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 3,time: 0) -10000 (it: 3,time: 0.002) -10000 (it: 3,time: 0.001) (c) -10000 (it: 3,time: 0.001999) (c) + Solution: -10000(3) -10000(3) -10000(3) (c) -10000(3) (c) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001999) -10000 (it: 3,time: 0.002) -10000 (it: 3,time: 0.001999) + Solution: -10000(3) -10000(3) -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 3,time: 0) -10000 (it: 3,time: 0.000999) -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001999) + Solution: -10000(3) -10000(3) -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: ff Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001999) + Solution: -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_float_free.mps Strategy: pf Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001999) + Solution: -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_shifted.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) (c) -10000 (it: 2,time: 0.001) (c) + Solution: -10000(2) -10000(2) -10000(2) (c) -10000(2) (c) Processing: test_solver_data/derivatives/b_shifted.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_shifted.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.000999) -10000 (it: 2,time: 0.002) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_shifted.mps Strategy: ff Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.000999) + Solution: -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_shifted.mps Strategy: pf Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) Processing: test_solver_data/derivatives/b_free.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001999) (c) -10000 (it: 3,time: 0.002) (c) + Solution: -10000(3) -10000(3) -10000(3) (c) -10000(3) (c) Processing: test_solver_data/derivatives/b_free.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.002) + Solution: -10000(3) -10000(3) -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_free.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.002) -10000 (it: 3,time: 0.002) -10000 (it: 3,time: 0.002) + Solution: -10000(3) -10000(3) -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_free.mps Strategy: ff Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001) + Solution: -10000(3) -10000(3) Processing: test_solver_data/derivatives/b_free.mps Strategy: pf Verbosity: 0 - Solution: -10000 (it: 3,time: 0.001) -10000 (it: 3,time: 0.001999) + Solution: -10000(3) -10000(3) Processing: test_solver_data/masters/cgal/b.mps Strategy: fe Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.000999) (c) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) (c) Processing: test_solver_data/masters/cgal/b.mps Strategy: pe Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.000999) -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/masters/cgal/b.mps Strategy: eb Verbosity: 0 - Solution: -10000 (it: 2,time: 0) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) -10000 (it: 2,time: 0.001) + Solution: -10000(2) -10000(2) -10000(2) -10000(2) Processing: test_solver_data/masters/cgal/b.mps Strategy: ff Verbosity: 0 @@ -1423,735 +1423,735 @@ Processing: test_solver_data/masters/cgal/b.mps Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -3 (it: 1,time: 0) (c) -3 (it: 1,time: 0.001) (c) -3 (it: 1,time: 0.001) (c) + Solution: -3(1) (c) -3(1) (c) -3(1) (c) Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -3 (it: 1,time: 0) -3 (it: 1,time: 0.001) -3 (it: 1,time: 0) + Solution: -3(1) -3(1) -3(1) Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -3 (it: 1,time: 0) -3 (it: 1,time: 0) -3 (it: 1,time: 0.001) + Solution: -3(1) -3(1) -3(1) Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -3 (it: 1,time: 0.000999) + Solution: -3(1) Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -3 (it: 1,time: 0.001) + Solution: -3(1) Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 1,time: 0) (c) 0 (it: 1,time: 0) (c) 0 (it: 1,time: 0.000999) (c) + Solution: 0(1) (c) 0(1) (c) 0(1) (c) Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) 0(1) Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 1,time: 0) + Solution: 0(1) Processing: test_solver_data/derivatives/QP_Unbounded_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 1,time: 0.001) + Solution: 0(1) Processing: test_solver_data/masters/cgal/QP_Unbounded_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) (c) 0 (it: 1,time: 0.000999) (c) 0 (it: 1,time: 0.001) (c) + Solution: 0(1) 0(1) 0(1) 0(1) (c) 0(1) (c) 0(1) (c) Processing: test_solver_data/masters/cgal/QP_Unbounded_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/QP_Unbounded_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) 0 (it: 1,time: 0) 0 (it: 1,time: 0) 0 (it: 1,time: 0.001) + Solution: 0(1) 0(1) 0(1) 0(1) 0(1) 0(1) Processing: test_solver_data/masters/cgal/QP_Unbounded_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) Processing: test_solver_data/masters/cgal/QP_Unbounded_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 1,time: 0) 0 (it: 1,time: 0) + Solution: 0(1) 0(1) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -2.78571 (it: 5,time: 0.001) -2.78571 (it: 5,time: 0.003) -2.78571 (it: 5,time: 0.003) -2.78571 (it: 5,time: 0.001999) (c) -2.78571 (it: 5,time: 0.003999) (c) -2.78571 (it: 5,time: 0.009999) (c) + Solution: -2.78571(5) -2.78571(5) -2.78571(5) -2.78571(5) (c) -2.78571(5) (c) -2.78571(5) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -2.78571 (it: 5,time: 0.001) -2.78571 (it: 5,time: 0.002999) -2.78571 (it: 5,time: 0.004) -2.78571 (it: 5,time: 0.002) -2.78571 (it: 5,time: 0.003999) -2.78571 (it: 5,time: 0.005999) + Solution: -2.78571(5) -2.78571(5) -2.78571(5) -2.78571(5) -2.78571(5) -2.78571(5) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -2.78571 (it: 7,time: 0.002) -2.78571 (it: 7,time: 0.003) -2.78571 (it: 7,time: 0.003999) -2.78571 (it: 7,time: 0.003999) -2.78571 (it: 7,time: 0.004) -2.78571 (it: 7,time: 0.006998) + Solution: -2.78571(7) -2.78571(7) -2.78571(7) -2.78571(7) -2.78571(7) -2.78571(7) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -2.78571 (it: 5,time: 0.001999) -2.78571 (it: 5,time: 0.003999) + Solution: -2.78571(5) -2.78571(5) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -2.78571 (it: 5,time: 0.001999) -2.78571 (it: 5,time: 0.003) + Solution: -2.78571(5) -2.78571(5) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: -1.78571 (it: 9,time: 0.003999) -1.78571 (it: 9,time: 0.005999) -1.78571 (it: 9,time: 0.010999) -1.78571 (it: 9,time: 0.012998) (c) -1.78571 (it: 9,time: 0.015998) (c) -1.78571 (it: 9,time: 0.034995) (c) + Solution: -1.78571(9) -1.78571(9) -1.78571(9) -1.78571(9) (c) -1.78571(9) (c) -1.78571(9) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: -1.78571 (it: 9,time: 0.005) -1.78571 (it: 9,time: 0.005) -1.78571 (it: 9,time: 0.009999) -1.78571 (it: 9,time: 0.012998) -1.78571 (it: 9,time: 0.014998) -1.78571 (it: 9,time: 0.033995) + Solution: -1.78571(9) -1.78571(9) -1.78571(9) -1.78571(9) -1.78571(9) -1.78571(9) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: -1.78571 (it: 10,time: 0.006999) -1.78571 (it: 10,time: 0.007999) -1.78571 (it: 10,time: 0.018997) -1.78571 (it: 10,time: 0.013998) -1.78571 (it: 10,time: 0.016997) -1.78571 (it: 10,time: 0.038994) + Solution: -1.78571(10) -1.78571(10) -1.78571(10) -1.78571(10) -1.78571(10) -1.78571(10) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: -1.78571 (it: 9,time: 0.005999) -1.78571 (it: 9,time: 0.012998) + Solution: -1.78571(9) -1.78571(9) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_e_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: -1.78571 (it: 9,time: 0.003999) -1.78571 (it: 9,time: 0.013998) + Solution: -1.78571(9) -1.78571(9) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_e_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: -1.78571 (it: 5,time: 0.000999) -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.002999) -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.003999) -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.003) -1.78571 (it: 5,time: 0.003999) -1.78571 (it: 5,time: 0.001999) (c) -1.78571 (it: 5,time: 0.003999) (c) -1.78571 (it: 5,time: 0.007999) (c) + Solution: -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) (c) -1.78571(5) (c) -1.78571(5) (c) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_e_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.003) -1.78571 (it: 5,time: 0.002999) -1.78571 (it: 5,time: 0.001) -1.78571 (it: 5,time: 0.002999) -1.78571 (it: 5,time: 0.003999) -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.002999) -1.78571 (it: 5,time: 0.003999) -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.003) -1.78571 (it: 5,time: 0.004999) + Solution: -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_e_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: -1.78571 (it: 7,time: 0.001999) -1.78571 (it: 7,time: 0.002) -1.78571 (it: 7,time: 0.002999) -1.78571 (it: 7,time: 0.002) -1.78571 (it: 7,time: 0.003) -1.78571 (it: 7,time: 0.003999) -1.78571 (it: 7,time: 0.001999) -1.78571 (it: 7,time: 0.003) -1.78571 (it: 7,time: 0.005) -1.78571 (it: 7,time: 0.001999) -1.78571 (it: 7,time: 0.004) -1.78571 (it: 7,time: 0.006999) + Solution: -1.78571(7) -1.78571(7) -1.78571(7) -1.78571(7) -1.78571(7) -1.78571(7) -1.78571(7) -1.78571(7) -1.78571(7) -1.78571(7) -1.78571(7) -1.78571(7) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_e_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.001999) -1.78571 (it: 5,time: 0.002) + Solution: -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_e_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: -1.78571 (it: 5,time: 0.002) -1.78571 (it: 5,time: 0.001999) -1.78571 (it: 5,time: 0.003) -1.78571 (it: 5,time: 0.003) + Solution: -1.78571(5) -1.78571(5) -1.78571(5) -1.78571(5) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 1 (it: 2,time: 0) (c) 1 (it: 2,time: 0.001) (c) 1 (it: 2,time: 0) (c) + Solution: 1(2) (c) 1(2) (c) 1(2) (c) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 1 (it: 2,time: 0) 1 (it: 2,time: 0.001) 1 (it: 2,time: 0.001) + Solution: 1(2) 1(2) 1(2) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 1 (it: 2,time: 0.001) 1 (it: 2,time: 0) 1 (it: 2,time: 0.000999) + Solution: 1(2) 1(2) 1(2) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 1 (it: 2,time: 0) + Solution: 1(2) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 1 (it: 2,time: 0.001) + Solution: 1(2) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 4 (it: 3,time: 0.001) (c) 4 (it: 3,time: 0.000999) (c) 4 (it: 3,time: 0.001) (c) + Solution: 4(3) (c) 4(3) (c) 4(3) (c) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 4 (it: 3,time: 0.001) 4 (it: 3,time: 0.001) 4 (it: 3,time: 0.001999) + Solution: 4(3) 4(3) 4(3) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 4 (it: 3,time: 0.001) 4 (it: 3,time: 0.001) 4 (it: 3,time: 0.001) + Solution: 4(3) 4(3) 4(3) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 4 (it: 3,time: 0.001) + Solution: 4(3) Processing: test_solver_data/derivatives/QP_Bounded_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 4 (it: 3,time: 0.001) + Solution: 4(3) Processing: test_solver_data/masters/cgal/QP_Bounded_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 4 (it: 2,time: 0) 4 (it: 2,time: 0) 4 (it: 2,time: 0.001) 4 (it: 2,time: 0) (c) 4 (it: 2,time: 0) (c) 4 (it: 2,time: 0.001) (c) + Solution: 4(2) 4(2) 4(2) 4(2) (c) 4(2) (c) 4(2) (c) Processing: test_solver_data/masters/cgal/QP_Bounded_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 4 (it: 2,time: 0.000999) 4 (it: 2,time: 0) 4 (it: 2,time: 0.001) 4 (it: 2,time: 0.001) 4 (it: 2,time: 0.001) 4 (it: 2,time: 0.001) + Solution: 4(2) 4(2) 4(2) 4(2) 4(2) 4(2) Processing: test_solver_data/masters/cgal/QP_Bounded_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 4 (it: 2,time: 0) 4 (it: 2,time: 0.000999) 4 (it: 2,time: 0) 4 (it: 2,time: 0.001) 4 (it: 2,time: 0) 4 (it: 2,time: 0.001) + Solution: 4(2) 4(2) 4(2) 4(2) 4(2) 4(2) Processing: test_solver_data/masters/cgal/QP_Bounded_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 4 (it: 2,time: 0.001) 4 (it: 2,time: 0) + Solution: 4(2) 4(2) Processing: test_solver_data/masters/cgal/QP_Bounded_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 4 (it: 2,time: 0) 4 (it: 2,time: 0.001) + Solution: 4(2) 4(2) Processing: test_solver_data/derivatives/ZECEVIC2_shifted.mps Strategy: fe Verbosity: 0 - Solution: -20.125 (it: 4,time: 0.001) (c) -20.125 (it: 4,time: 0.003) (c) + Solution: -20.125(4) (c) -20.125(4) (c) Processing: test_solver_data/derivatives/ZECEVIC2_shifted.mps Strategy: pe Verbosity: 0 - Solution: -20.125 (it: 4,time: 0.001999) -20.125 (it: 4,time: 0.002) + Solution: -20.125(4) -20.125(4) Processing: test_solver_data/derivatives/ZECEVIC2_shifted.mps Strategy: eb Verbosity: 0 - Solution: -20.125 (it: 3,time: 0.001) -20.125 (it: 3,time: 0.001) + Solution: -20.125(3) -20.125(3) Processing: test_solver_data/derivatives/ZECEVIC2_shifted.mps Strategy: ff Verbosity: 0 - Solution: -20.125 (it: 4,time: 0.001) + Solution: -20.125(4) Processing: test_solver_data/derivatives/ZECEVIC2_shifted.mps Strategy: pf Verbosity: 0 - Solution: -20.125 (it: 4,time: 0.000999) + Solution: -20.125(4) Processing: test_solver_data/derivatives/ZECEVIC2_free.mps Strategy: fe Verbosity: 0 - Solution: -4.125 (it: 4,time: 0.000999) (c) -4.125 (it: 4,time: 0.002999) (c) + Solution: -4.125(4) (c) -4.125(4) (c) Processing: test_solver_data/derivatives/ZECEVIC2_free.mps Strategy: pe Verbosity: 0 - Solution: -4.125 (it: 4,time: 0.001999) -4.125 (it: 4,time: 0.003) + Solution: -4.125(4) -4.125(4) Processing: test_solver_data/derivatives/ZECEVIC2_free.mps Strategy: eb Verbosity: 0 - Solution: -4.125 (it: 3,time: 0.001) -4.125 (it: 3,time: 0.002) + Solution: -4.125(3) -4.125(3) Processing: test_solver_data/derivatives/ZECEVIC2_free.mps Strategy: ff Verbosity: 0 - Solution: -4.125 (it: 4,time: 0.002) + Solution: -4.125(4) Processing: test_solver_data/derivatives/ZECEVIC2_free.mps Strategy: pf Verbosity: 0 - Solution: -4.125 (it: 4,time: 0.001999) + Solution: -4.125(4) Processing: test_solver_data/masters/cgal/ZECEVIC2.mps Strategy: fe Verbosity: 0 - Solution: -4.125 (it: 4,time: 0.001) (c) -4.125 (it: 4,time: 0.001999) (c) + Solution: -4.125(4) (c) -4.125(4) (c) Processing: test_solver_data/masters/cgal/ZECEVIC2.mps Strategy: pe Verbosity: 0 - Solution: -4.125 (it: 4,time: 0.001999) -4.125 (it: 4,time: 0.003) + Solution: -4.125(4) -4.125(4) Processing: test_solver_data/masters/cgal/ZECEVIC2.mps Strategy: eb Verbosity: 0 - Solution: -4.125 (it: 3,time: 0.000999) -4.125 (it: 3,time: 0.002) + Solution: -4.125(3) -4.125(3) Processing: test_solver_data/masters/cgal/ZECEVIC2.mps Strategy: ff Verbosity: 0 - Solution: -4.125 (it: 4,time: 0.001999) + Solution: -4.125(4) Processing: test_solver_data/masters/cgal/ZECEVIC2.mps Strategy: pf Verbosity: 0 - Solution: -4.125 (it: 4,time: 0.001999) + Solution: -4.125(4) Processing: test_solver_data/derivatives/HS118_shifted.mps Strategy: fe Verbosity: 0 - Solution: 912.172 (it: 20,time: 0.190971) (c) 912.172 (it: 20,time: 0.489925) (c) + Solution: 912.172(20) (c) 912.172(20) (c) Processing: test_solver_data/derivatives/HS118_shifted.mps Strategy: pe Verbosity: 0 - Solution: 912.172 (it: 20,time: 0.19497) 912.172 (it: 20,time: 0.483927) + Solution: 912.172(20) 912.172(20) Processing: test_solver_data/derivatives/HS118_shifted.mps Strategy: eb Verbosity: 0 - Solution: 912.172 (it: 21,time: 0.20097) 912.172 (it: 21,time: 0.52792) + Solution: 912.172(21) 912.172(21) Processing: test_solver_data/derivatives/HS118_shifted.mps Strategy: ff Verbosity: 0 - Solution: 912.172 (it: 20,time: 0.188971) + Solution: 912.172(20) Processing: test_solver_data/derivatives/HS118_shifted.mps Strategy: pf Verbosity: 0 - Solution: 912.172 (it: 20,time: 0.19897) + Solution: 912.172(20) Processing: test_solver_data/derivatives/HS118_free.mps Strategy: fe Verbosity: 0 - Solution: 664.82 (it: 23,time: 0.376943) (c) 664.82 (it: 23,time: 0.963853) (c) + Solution: 664.82(23) (c) 664.82(23) (c) Processing: test_solver_data/derivatives/HS118_free.mps Strategy: pe Verbosity: 0 - Solution: 664.82 (it: 23,time: 0.398939) 664.82 (it: 23,time: 0.971852) + Solution: 664.82(23) 664.82(23) Processing: test_solver_data/derivatives/HS118_free.mps Strategy: eb Verbosity: 0 - Solution: 664.82 (it: 29,time: 0.619905) 664.82 (it: 29,time: 1.63275) + Solution: 664.82(29) 664.82(29) Processing: test_solver_data/derivatives/HS118_free.mps Strategy: ff Verbosity: 0 - Solution: 664.82 (it: 23,time: 0.374943) + Solution: 664.82(23) Processing: test_solver_data/derivatives/HS118_free.mps Strategy: pf Verbosity: 0 - Solution: 664.82 (it: 23,time: 0.373943) + Solution: 664.82(23) Processing: test_solver_data/masters/cgal/HS118.mps Strategy: fe Verbosity: 0 - Solution: 664.82 (it: 20,time: 0.19597) (c) 664.82 (it: 20,time: 0.487925) (c) + Solution: 664.82(20) (c) 664.82(20) (c) Processing: test_solver_data/masters/cgal/HS118.mps Strategy: pe Verbosity: 0 - Solution: 664.82 (it: 20,time: 0.207968) 664.82 (it: 20,time: 0.498924) + Solution: 664.82(20) 664.82(20) Processing: test_solver_data/masters/cgal/HS118.mps Strategy: eb Verbosity: 0 - Solution: 664.82 (it: 21,time: 0.205968) 664.82 (it: 21,time: 0.52592) + Solution: 664.82(21) 664.82(21) Processing: test_solver_data/masters/cgal/HS118.mps Strategy: ff Verbosity: 0 - Solution: 664.82 (it: 20,time: 0.193971) + Solution: 664.82(20) Processing: test_solver_data/masters/cgal/HS118.mps Strategy: pf Verbosity: 0 - Solution: 664.82 (it: 20,time: 0.187971) + Solution: 664.82(20) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.004) 0 (it: 5,time: 0.002) (c) 0 (it: 5,time: 0.003) (c) 0 (it: 5,time: 0.004999) (c) + Solution: 0(5) 0(5) 0(5) 0(5) (c) 0(5) (c) 0(5) (c) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.002999) 0 (it: 5,time: 0.004) 0 (it: 5,time: 0.006) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.004) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.005) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002999) + Solution: 0(5) 0(5) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.004) + Solution: 0(5) 0(5) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.005) 0 (it: 5,time: 0.003) (c) 0 (it: 5,time: 0.002999) (c) 0 (it: 5,time: 0.005999) (c) + Solution: 0(5) 0(5) 0(5) 0(5) (c) 0(5) (c) 0(5) (c) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.002999) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.005999) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.002999) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.006999) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 5,time: 0.002999) 0 (it: 5,time: 0.003999) + Solution: 0(5) 0(5) Processing: test_solver_data/derivatives/QP_zero_obj_func_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.003) + Solution: 0(5) 0(5) Processing: test_solver_data/masters/cgal/QP_zero_obj_func_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002999) 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.005999) 0 (it: 5,time: 0.001999) (c) 0 (it: 5,time: 0.002999) (c) 0 (it: 5,time: 0.003999) (c) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) (c) 0(5) (c) 0(5) (c) Processing: test_solver_data/masters/cgal/QP_zero_obj_func_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.000999) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.005999) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.003) 0 (it: 5,time: 0.005999) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/masters/cgal/QP_zero_obj_func_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002999) 0 (it: 5,time: 0.005999) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.004999) + Solution: 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/masters/cgal/QP_zero_obj_func_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.001999) 0 (it: 5,time: 0.003999) 0 (it: 5,time: 0.002999) + Solution: 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/masters/cgal/QP_zero_obj_func_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 5,time: 0.001) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.002) 0 (it: 5,time: 0.003) + Solution: 0(5) 0(5) 0(5) 0(5) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -4.71429 (it: 4,time: 0.000999) -4.71429 (it: 4,time: 0.001) -4.71429 (it: 4,time: 0.002) -4.71429 (it: 4,time: 0.001) (c) -4.71429 (it: 4,time: 0.001999) (c) -4.71429 (it: 4,time: 0.003) (c) + Solution: -4.71429(4) -4.71429(4) -4.71429(4) -4.71429(4) (c) -4.71429(4) (c) -4.71429(4) (c) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -4.71429 (it: 4,time: 0.001) -4.71429 (it: 4,time: 0.000999) -4.71429 (it: 4,time: 0.002) -4.71429 (it: 4,time: 0.001) -4.71429 (it: 4,time: 0.001999) -4.71429 (it: 4,time: 0.003) + Solution: -4.71429(4) -4.71429(4) -4.71429(4) -4.71429(4) -4.71429(4) -4.71429(4) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -4.71429 (it: 4,time: 0.000999) -4.71429 (it: 4,time: 0.001) -4.71429 (it: 4,time: 0.001) -4.71429 (it: 4,time: 0.001) -4.71429 (it: 4,time: 0.001999) -4.71429 (it: 4,time: 0.003) + Solution: -4.71429(4) -4.71429(4) -4.71429(4) -4.71429(4) -4.71429(4) -4.71429(4) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -4.71429 (it: 4,time: 0) -4.71429 (it: 4,time: 0) + Solution: -4.71429(4) -4.71429(4) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -4.71429 (it: 4,time: 0.001) -4.71429 (it: 4,time: 0.002) + Solution: -4.71429(4) -4.71429(4) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.002) -1.71429 (it: 4,time: 0.001999) (c) -1.71429 (it: 4,time: 0.002) (c) -1.71429 (it: 4,time: 0.003) (c) + Solution: -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) (c) -1.71429(4) (c) -1.71429(4) (c) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001999) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001999) -1.71429 (it: 4,time: 0.004) + Solution: -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.000999) -1.71429 (it: 4,time: 0.003) + Solution: -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0.000999) -1.71429 (it: 4,time: 0.001) + Solution: -1.71429(4) -1.71429(4) Processing: test_solver_data/derivatives/LP_U6_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.002) + Solution: -1.71429(4) -1.71429(4) Processing: test_solver_data/masters/cgal/LP_U6_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0) -1.71429 (it: 4,time: 0) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001999) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.002999) -1.71429 (it: 4,time: 0.001) (c) -1.71429 (it: 4,time: 0.000999) (c) -1.71429 (it: 4,time: 0.002) (c) + Solution: -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) (c) -1.71429(4) (c) -1.71429(4) (c) Processing: test_solver_data/masters/cgal/LP_U6_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0) -1.71429 (it: 4,time: 0) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.002) -1.71429 (it: 4,time: 0.003) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001999) + Solution: -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) Processing: test_solver_data/masters/cgal/LP_U6_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.000999) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.002) -1.71429 (it: 4,time: 0.002999) -1.71429 (it: 4,time: 0.002) -1.71429 (it: 4,time: 0.002) -1.71429 (it: 4,time: 0.001999) + Solution: -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) Processing: test_solver_data/masters/cgal/LP_U6_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.000999) -1.71429 (it: 4,time: 0.002) + Solution: -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) Processing: test_solver_data/masters/cgal/LP_U6_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: -1.71429 (it: 4,time: 0) -1.71429 (it: 4,time: 0.001) -1.71429 (it: 4,time: 0.002) -1.71429 (it: 4,time: 0.001) + Solution: -1.71429(4) -1.71429(4) -1.71429(4) -1.71429(4) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -1.00123e+06 (it: 16,time: 0.003) -1.00123e+06 (it: 16,time: 0.003) -1.00123e+06 (it: 16,time: 0.005) -1.00123e+06 (it: 16,time: 0.007999) (c) -1.00123e+06 (it: 16,time: 0.008998) (c) -1.00123e+06 (it: 16,time: 0.016997) (c) + Solution: -1.00123e+06(16) -1.00123e+06(16) -1.00123e+06(16) -1.00123e+06(16) (c) -1.00123e+06(16) (c) -1.00123e+06(16) (c) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -1.00123e+06 (it: 16,time: 0.003) -1.00123e+06 (it: 16,time: 0.003999) -1.00123e+06 (it: 16,time: 0.005999) -1.00123e+06 (it: 16,time: 0.007998) -1.00123e+06 (it: 16,time: 0.008999) -1.00123e+06 (it: 16,time: 0.016997) + Solution: -1.00123e+06(16) -1.00123e+06(16) -1.00123e+06(16) -1.00123e+06(16) -1.00123e+06(16) -1.00123e+06(16) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -1.00123e+06 (it: 10,time: 0.002) -1.00123e+06 (it: 10,time: 0.002999) -1.00123e+06 (it: 10,time: 0.004) -1.00123e+06 (it: 10,time: 0.004999) -1.00123e+06 (it: 10,time: 0.005999) -1.00123e+06 (it: 10,time: 0.011998) + Solution: -1.00123e+06(10) -1.00123e+06(10) -1.00123e+06(10) -1.00123e+06(10) -1.00123e+06(10) -1.00123e+06(10) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -1.00123e+06 (it: 16,time: 0.003999) -1.00123e+06 (it: 16,time: 0.008999) + Solution: -1.00123e+06(16) -1.00123e+06(16) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -1.00123e+06 (it: 16,time: 0.004) -1.00123e+06 (it: 16,time: 0.007999) + Solution: -1.00123e+06(16) -1.00123e+06(16) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: -1e+06 (it: 16,time: 0.004) -1e+06 (it: 16,time: 0.004999) -1e+06 (it: 16,time: 0.009999) -1e+06 (it: 16,time: 0.012998) (c) -1e+06 (it: 16,time: 0.015997) (c) -1e+06 (it: 16,time: 0.036994) (c) + Solution: -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) (c) -1e+06(16) (c) -1e+06(16) (c) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: -1e+06 (it: 16,time: 0.004) -1e+06 (it: 16,time: 0.006) -1e+06 (it: 16,time: 0.009999) -1e+06 (it: 16,time: 0.013997) -1e+06 (it: 16,time: 0.016998) -1e+06 (it: 16,time: 0.035995) + Solution: -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: -1e+06 (it: 8,time: 0.002999) -1e+06 (it: 8,time: 0.003) -1e+06 (it: 8,time: 0.005) -1e+06 (it: 8,time: 0.006999) -1e+06 (it: 8,time: 0.007999) -1e+06 (it: 8,time: 0.015998) + Solution: -1e+06(8) -1e+06(8) -1e+06(8) -1e+06(8) -1e+06(8) -1e+06(8) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: -1e+06 (it: 16,time: 0.005) -1e+06 (it: 16,time: 0.014998) + Solution: -1e+06(16) -1e+06(16) Processing: test_solver_data/derivatives/LP_KM4_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: -1e+06 (it: 16,time: 0.004999) -1e+06 (it: 16,time: 0.015997) + Solution: -1e+06(16) -1e+06(16) Processing: test_solver_data/masters/cgal/LP_KM4_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: -1e+06 (it: 16,time: 0.002) -1e+06 (it: 16,time: 0.003) -1e+06 (it: 16,time: 0.004999) -1e+06 (it: 16,time: 0.004) -1e+06 (it: 16,time: 0.004) -1e+06 (it: 16,time: 0.006999) -1e+06 (it: 16,time: 0.005999) -1e+06 (it: 16,time: 0.007999) -1e+06 (it: 16,time: 0.014997) -1e+06 (it: 16,time: 0.006999) (c) -1e+06 (it: 16,time: 0.008999) (c) -1e+06 (it: 16,time: 0.017997) (c) + Solution: -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) (c) -1e+06(16) (c) -1e+06(16) (c) Processing: test_solver_data/masters/cgal/LP_KM4_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: -1e+06 (it: 16,time: 0.003) -1e+06 (it: 16,time: 0.002999) -1e+06 (it: 16,time: 0.005999) -1e+06 (it: 16,time: 0.003) -1e+06 (it: 16,time: 0.004999) -1e+06 (it: 16,time: 0.003999) -1e+06 (it: 16,time: 0.004999) -1e+06 (it: 16,time: 0.006999) -1e+06 (it: 16,time: 0.014997) -1e+06 (it: 16,time: 0.006999) -1e+06 (it: 16,time: 0.007999) -1e+06 (it: 16,time: 0.016998) + Solution: -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) Processing: test_solver_data/masters/cgal/LP_KM4_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: -1e+06 (it: 10,time: 0.001) -1e+06 (it: 10,time: 0.002999) -1e+06 (it: 10,time: 0.003999) -1e+06 (it: 10,time: 0.002) -1e+06 (it: 10,time: 0.001999) -1e+06 (it: 10,time: 0.004) -1e+06 (it: 10,time: 0.003999) -1e+06 (it: 10,time: 0.004999) -1e+06 (it: 10,time: 0.009998) -1e+06 (it: 10,time: 0.004999) -1e+06 (it: 10,time: 0.005999) -1e+06 (it: 10,time: 0.011998) + Solution: -1e+06(10) -1e+06(10) -1e+06(10) -1e+06(10) -1e+06(10) -1e+06(10) -1e+06(10) -1e+06(10) -1e+06(10) -1e+06(10) -1e+06(10) -1e+06(10) Processing: test_solver_data/masters/cgal/LP_KM4_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: -1e+06 (it: 16,time: 0.003) -1e+06 (it: 16,time: 0.003) -1e+06 (it: 16,time: 0.007999) -1e+06 (it: 16,time: 0.007999) + Solution: -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) Processing: test_solver_data/masters/cgal/LP_KM4_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: -1e+06 (it: 16,time: 0.002999) -1e+06 (it: 16,time: 0.003999) -1e+06 (it: 16,time: 0.007999) -1e+06 (it: 16,time: 0.007999) + Solution: -1e+06(16) -1e+06(16) -1e+06(16) -1e+06(16) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_shifted.mps Strategy: fe Verbosity: 0 - Solution: -1513.06 (it: 17,time: 0.046993) (c) -1513.06 (it: 17,time: 0.095985) (c) + Solution: -1513.06(17) (c) -1513.06(17) (c) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_shifted.mps Strategy: pe Verbosity: 0 - Solution: -1513.06 (it: 17,time: 0.046992) -1513.06 (it: 17,time: 0.094985) + Solution: -1513.06(17) -1513.06(17) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_shifted.mps Strategy: eb Verbosity: 0 - Solution: -1513.06 (it: 17,time: 0.041993) -1513.06 (it: 17,time: 0.088987) + Solution: -1513.06(17) -1513.06(17) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_shifted.mps Strategy: ff Verbosity: 0 - Solution: -1513.06 (it: 17,time: 0.041994) + Solution: -1513.06(17) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_shifted.mps Strategy: pf Verbosity: 0 - Solution: -1513.06 (it: 17,time: 0.043994) + Solution: -1513.06(17) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_free.mps Strategy: fe Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.054992) (c) -0.0625 (it: 17,time: 0.115983) (c) + Solution: -0.0625(17) (c) -0.0625(17) (c) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_free.mps Strategy: pe Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.050992) -0.0625 (it: 17,time: 0.117982) + Solution: -0.0625(17) -0.0625(17) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_free.mps Strategy: eb Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.053992) -0.0625 (it: 17,time: 0.106983) + Solution: -0.0625(17) -0.0625(17) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_free.mps Strategy: ff Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.052992) + Solution: -0.0625(17) Processing: test_solver_data/derivatives/QP_center_of_gravity_simplex_n_free.mps Strategy: pf Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.057991) + Solution: -0.0625(17) Processing: test_solver_data/masters/cgal/QP_center_of_gravity_simplex_n.mps Strategy: fe Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.040993) -0.0625 (it: 17,time: 0.089986) -0.0625 (it: 17,time: 0.044993) (c) -0.0625 (it: 17,time: 0.093986) (c) + Solution: -0.0625(17) -0.0625(17) -0.0625(17) (c) -0.0625(17) (c) Processing: test_solver_data/masters/cgal/QP_center_of_gravity_simplex_n.mps Strategy: pe Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.041993) -0.0625 (it: 17,time: 0.086987) -0.0625 (it: 17,time: 0.043993) -0.0625 (it: 17,time: 0.095985) + Solution: -0.0625(17) -0.0625(17) -0.0625(17) -0.0625(17) Processing: test_solver_data/masters/cgal/QP_center_of_gravity_simplex_n.mps Strategy: eb Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.035995) -0.0625 (it: 17,time: 0.085987) -0.0625 (it: 17,time: 0.041993) -0.0625 (it: 17,time: 0.089986) + Solution: -0.0625(17) -0.0625(17) -0.0625(17) -0.0625(17) Processing: test_solver_data/masters/cgal/QP_center_of_gravity_simplex_n.mps Strategy: ff Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.039994) -0.0625 (it: 17,time: 0.043993) + Solution: -0.0625(17) -0.0625(17) Processing: test_solver_data/masters/cgal/QP_center_of_gravity_simplex_n.mps Strategy: pf Verbosity: 0 - Solution: -0.0625 (it: 17,time: 0.039994) -0.0625 (it: 17,time: 0.041994) + Solution: -0.0625(17) -0.0625(17) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 40201 (it: 3,time: 0.001) 40201 (it: 3,time: 0.001) 40201 (it: 3,time: 0.001) 40201 (it: 3,time: 0.001) (c) 40201 (it: 3,time: 0.000999) (c) 40201 (it: 3,time: 0.002) (c) + Solution: 40201(3) 40201(3) 40201(3) 40201(3) (c) 40201(3) (c) 40201(3) (c) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 40201 (it: 3,time: 0.001) 40201 (it: 3,time: 0.001) 40201 (it: 3,time: 0.001) 40201 (it: 3,time: 0.001) 40201 (it: 3,time: 0.000999) 40201 (it: 3,time: 0.001) + Solution: 40201(3) 40201(3) 40201(3) 40201(3) 40201(3) 40201(3) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 40201 (it: 7,time: 0.001) 40201 (it: 7,time: 0.001999) 40201 (it: 7,time: 0.003) 40201 (it: 7,time: 0.001999) 40201 (it: 7,time: 0.002) 40201 (it: 7,time: 0.001999) + Solution: 40201(7) 40201(7) 40201(7) 40201(7) 40201(7) 40201(7) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 40201 (it: 3,time: 0) 40201 (it: 3,time: 0.001) + Solution: 40201(3) 40201(3) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 40201 (it: 3,time: 0.001) 40201 (it: 3,time: 0.001) + Solution: 40201(3) 40201(3) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 10000 (it: 5,time: 0.000999) 10000 (it: 5,time: 0.001) 10000 (it: 5,time: 0.002999) 10000 (it: 5,time: 0.001) (c) 10000 (it: 5,time: 0.002) (c) 10000 (it: 5,time: 0.004) (c) + Solution: 10000(5) 10000(5) 10000(5) 10000(5) (c) 10000(5) (c) 10000(5) (c) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 10000 (it: 5,time: 0.001999) 10000 (it: 5,time: 0.002) 10000 (it: 5,time: 0.003) 10000 (it: 5,time: 0.002) 10000 (it: 5,time: 0.003) 10000 (it: 5,time: 0.004) + Solution: 10000(5) 10000(5) 10000(5) 10000(5) 10000(5) 10000(5) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 10000 (it: 6,time: 0.001999) 10000 (it: 6,time: 0.002) 10000 (it: 6,time: 0.003999) 10000 (it: 6,time: 0.002) 10000 (it: 6,time: 0.002999) 10000 (it: 6,time: 0.004) + Solution: 10000(6) 10000(6) 10000(6) 10000(6) 10000(6) 10000(6) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 10000 (it: 5,time: 0.002) 10000 (it: 5,time: 0.001) + Solution: 10000(5) 10000(5) Processing: test_solver_data/derivatives/LP_KM3_Dual_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 10000 (it: 5,time: 0.001) 10000 (it: 5,time: 0.002) + Solution: 10000(5) 10000(5) Processing: test_solver_data/masters/cgal/LP_KM3_Dual_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 10000 (it: 3,time: 0) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0) 10000 (it: 3,time: 0) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0.000999) (c) 10000 (it: 3,time: 0.001) (c) 10000 (it: 3,time: 0.001) (c) + Solution: 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) (c) 10000(3) (c) 10000(3) (c) Processing: test_solver_data/masters/cgal/LP_KM3_Dual_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 10000 (it: 3,time: 0) 10000 (it: 3,time: 0) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0) 10000 (it: 3,time: 0.000999) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0) 10000 (it: 3,time: 0) 10000 (it: 3,time: 0.000999) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0.001) + Solution: 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) 10000(3) Processing: test_solver_data/masters/cgal/LP_KM3_Dual_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 10000 (it: 7,time: 0.001) 10000 (it: 7,time: 0.001) 10000 (it: 7,time: 0.001999) 10000 (it: 7,time: 0.001) 10000 (it: 7,time: 0.002) 10000 (it: 7,time: 0.001999) 10000 (it: 7,time: 0.001) 10000 (it: 7,time: 0.002) 10000 (it: 7,time: 0.001999) 10000 (it: 7,time: 0.002) 10000 (it: 7,time: 0.001) 10000 (it: 7,time: 0.003) + Solution: 10000(7) 10000(7) 10000(7) 10000(7) 10000(7) 10000(7) 10000(7) 10000(7) 10000(7) 10000(7) 10000(7) 10000(7) Processing: test_solver_data/masters/cgal/LP_KM3_Dual_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 10000 (it: 3,time: 0) 10000 (it: 3,time: 0.000999) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0.001) + Solution: 10000(3) 10000(3) 10000(3) 10000(3) Processing: test_solver_data/masters/cgal/LP_KM3_Dual_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 10000 (it: 3,time: 0.000999) 10000 (it: 3,time: 0.001) 10000 (it: 3,time: 0) 10000 (it: 3,time: 0.000999) + Solution: 10000(3) 10000(3) 10000(3) 10000(3) Processing: test_solver_data/derivatives/QP_translation_bug_shifted.mps Strategy: fe Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) (c) -6 (it: 4,time: 0.001) (c) -6 (it: 4,time: 0.001999) (c) + Solution: -6(4) (c) -6(4) (c) -6(4) (c) Processing: test_solver_data/derivatives/QP_translation_bug_shifted.mps Strategy: pe Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) -6 (it: 4,time: 0.002) -6 (it: 4,time: 0.002) + Solution: -6(4) -6(4) -6(4) Processing: test_solver_data/derivatives/QP_translation_bug_shifted.mps Strategy: eb Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) -6 (it: 4,time: 0.001999) -6 (it: 4,time: 0.002) + Solution: -6(4) -6(4) -6(4) Processing: test_solver_data/derivatives/QP_translation_bug_shifted.mps Strategy: ff Verbosity: 0 - Solution: -6 (it: 4,time: 0.000999) + Solution: -6(4) Processing: test_solver_data/derivatives/QP_translation_bug_shifted.mps Strategy: pf Verbosity: 0 - Solution: -6 (it: 4,time: 0.001) + Solution: -6(4) Processing: test_solver_data/derivatives/QP_translation_bug_free.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 4,time: 0.002) (c) 0 (it: 4,time: 0.002999) (c) 0 (it: 4,time: 0.003999) (c) + Solution: 0(4) (c) 0(4) (c) 0(4) (c) Processing: test_solver_data/derivatives/QP_translation_bug_free.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.003) 0 (it: 4,time: 0.003999) + Solution: 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/QP_translation_bug_free.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.003) + Solution: 0(4) 0(4) 0(4) Processing: test_solver_data/derivatives/QP_translation_bug_free.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 4,time: 0.002) + Solution: 0(4) Processing: test_solver_data/derivatives/QP_translation_bug_free.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 4,time: 0.003) + Solution: 0(4) Processing: test_solver_data/masters/cgal/QP_translation_bug.mps Strategy: fe Verbosity: 0 - Solution: 0 (it: 4,time: 0) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001999) 0 (it: 4,time: 0.001) (c) 0 (it: 4,time: 0.002) (c) 0 (it: 4,time: 0.002) (c) + Solution: 0(4) 0(4) 0(4) 0(4) (c) 0(4) (c) 0(4) (c) Processing: test_solver_data/masters/cgal/QP_translation_bug.mps Strategy: pe Verbosity: 0 - Solution: 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.003) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/masters/cgal/QP_translation_bug.mps Strategy: eb Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.002) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) 0(4) 0(4) 0(4) 0(4) Processing: test_solver_data/masters/cgal/QP_translation_bug.mps Strategy: ff Verbosity: 0 - Solution: 0 (it: 4,time: 0.001) 0 (it: 4,time: 0.002) + Solution: 0(4) 0(4) Processing: test_solver_data/masters/cgal/QP_translation_bug.mps Strategy: pf Verbosity: 0 - Solution: 0 (it: 4,time: 0.000999) 0 (it: 4,time: 0.001) + Solution: 0(4) 0(4) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 2 (it: 6,time: 0.002999) (c) 2 (it: 6,time: 0.006) (c) 2 (it: 6,time: 0.009998) (c) + Solution: 2(6) (c) 2(6) (c) 2(6) (c) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 2 (it: 6,time: 0.004) 2 (it: 6,time: 0.004999) 2 (it: 6,time: 0.009998) + Solution: 2(6) 2(6) 2(6) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 2 (it: 5,time: 0.001999) 2 (it: 5,time: 0.004) 2 (it: 5,time: 0.006) + Solution: 2(5) 2(5) 2(5) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 2 (it: 6,time: 0.004999) + Solution: 2(6) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 2 (it: 6,time: 0.004999) + Solution: 2(6) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 10 (it: 6,time: 0.004999) (c) 10 (it: 6,time: 0.005) (c) 10 (it: 6,time: 0.010999) (c) + Solution: 10(6) (c) 10(6) (c) 10(6) (c) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 10 (it: 6,time: 0.003999) 10 (it: 6,time: 0.004999) 10 (it: 6,time: 0.010999) + Solution: 10(6) 10(6) 10(6) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 10 (it: 5,time: 0.003) 10 (it: 5,time: 0.002999) 10 (it: 5,time: 0.006999) + Solution: 10(5) 10(5) 10(5) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 10 (it: 6,time: 0.005999) + Solution: 10(6) Processing: test_solver_data/derivatives/PD_Dual_Eq_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 10 (it: 6,time: 0.004999) + Solution: 10(6) Processing: test_solver_data/masters/cgal/PD_Dual_Eq_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 10 (it: 6,time: 0.002999) 10 (it: 6,time: 0.004999) 10 (it: 6,time: 0.007999) 10 (it: 6,time: 0.003999) (c) 10 (it: 6,time: 0.004999) (c) 10 (it: 6,time: 0.008999) (c) + Solution: 10(6) 10(6) 10(6) 10(6) (c) 10(6) (c) 10(6) (c) Processing: test_solver_data/masters/cgal/PD_Dual_Eq_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 10 (it: 6,time: 0.003999) 10 (it: 6,time: 0.003999) 10 (it: 6,time: 0.005999) 10 (it: 6,time: 0.003) 10 (it: 6,time: 0.004999) 10 (it: 6,time: 0.008999) + Solution: 10(6) 10(6) 10(6) 10(6) 10(6) 10(6) Processing: test_solver_data/masters/cgal/PD_Dual_Eq_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 10 (it: 5,time: 0.001999) 10 (it: 5,time: 0.003) 10 (it: 5,time: 0.005999) 10 (it: 5,time: 0.002) 10 (it: 5,time: 0.003999) 10 (it: 5,time: 0.006999) + Solution: 10(5) 10(5) 10(5) 10(5) 10(5) 10(5) Processing: test_solver_data/masters/cgal/PD_Dual_Eq_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 10 (it: 6,time: 0.004) 10 (it: 6,time: 0.005) + Solution: 10(6) 10(6) Processing: test_solver_data/masters/cgal/PD_Dual_Eq_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 10 (it: 6,time: 0.004999) 10 (it: 6,time: 0.004999) + Solution: 10(6) 10(6) Processing: test_solver_data/derivatives/mps_features_shifted.mps Strategy: fe Verbosity: 0 - Solution: -4 (it: 4,time: 0.002) (c) + Solution: -4(4) (c) Processing: test_solver_data/derivatives/mps_features_shifted.mps Strategy: pe Verbosity: 0 - Solution: -4 (it: 4,time: 0.002) + Solution: -4(4) Processing: test_solver_data/derivatives/mps_features_shifted.mps Strategy: eb Verbosity: 0 - Solution: -4 (it: 4,time: 0.002) + Solution: -4(4) Processing: test_solver_data/derivatives/mps_features_shifted.mps Strategy: ff Verbosity: 0 @@ -2163,15 +2163,15 @@ Processing: test_solver_data/derivatives/mps_features_shifted.mps Processing: test_solver_data/derivatives/mps_features_free.mps Strategy: fe Verbosity: 0 - Solution: 1 (it: 4,time: 0.001999) (c) + Solution: 1(4) (c) Processing: test_solver_data/derivatives/mps_features_free.mps Strategy: pe Verbosity: 0 - Solution: 1 (it: 4,time: 0.003) + Solution: 1(4) Processing: test_solver_data/derivatives/mps_features_free.mps Strategy: eb Verbosity: 0 - Solution: 1 (it: 4,time: 0.002) + Solution: 1(4) Processing: test_solver_data/derivatives/mps_features_free.mps Strategy: ff Verbosity: 0 @@ -2183,15 +2183,15 @@ Processing: test_solver_data/derivatives/mps_features_free.mps Processing: test_solver_data/masters/cgal/mps_features.mps Strategy: fe Verbosity: 0 - Solution: 1 (it: 4,time: 0.001) 1 (it: 4,time: 0.001999) (c) + Solution: 1(4) 1(4) (c) Processing: test_solver_data/masters/cgal/mps_features.mps Strategy: pe Verbosity: 0 - Solution: 1 (it: 4,time: 0.001999) 1 (it: 4,time: 0.002) + Solution: 1(4) 1(4) Processing: test_solver_data/masters/cgal/mps_features.mps Strategy: eb Verbosity: 0 - Solution: 1 (it: 4,time: 0.002) 1 (it: 4,time: 0.002) + Solution: 1(4) 1(4) Processing: test_solver_data/masters/cgal/mps_features.mps Strategy: ff Verbosity: 0 @@ -2203,301 +2203,301 @@ Processing: test_solver_data/masters/cgal/mps_features.mps Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -5.5 (it: 9,time: 0.004999) (c) -5.5 (it: 9,time: 0.007998) (c) -5.5 (it: 9,time: 0.016997) (c) + Solution: -5.5(9) (c) -5.5(9) (c) -5.5(9) (c) Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -5.5 (it: 9,time: 0.005999) -5.5 (it: 9,time: 0.007999) -5.5 (it: 9,time: 0.015998) + Solution: -5.5(9) -5.5(9) -5.5(9) Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -5.5 (it: 7,time: 0.005999) -5.5 (it: 7,time: 0.006998) -5.5 (it: 7,time: 0.011998) + Solution: -5.5(7) -5.5(7) -5.5(7) Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -5.5 (it: 9,time: 0.008998) + Solution: -5.5(9) Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -5.5 (it: 9,time: 0.007999) + Solution: -5.5(9) Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.007999) (c) 2.5 (it: 9,time: 0.009999) (c) 2.5 (it: 9,time: 0.019997) (c) + Solution: 2.5(9) (c) 2.5(9) (c) 2.5(9) (c) Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.007999) 2.5 (it: 9,time: 0.011999) 2.5 (it: 9,time: 0.019997) + Solution: 2.5(9) 2.5(9) 2.5(9) Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.007998) 2.5 (it: 7,time: 0.015998) + Solution: 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.009998) + Solution: 2.5(9) Processing: test_solver_data/derivatives/PD_Dual_y_shifted_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.009998) + Solution: 2.5(9) Processing: test_solver_data/masters/cgal/PD_Dual_y_shifted_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.005999) 2.5 (it: 9,time: 0.006999) 2.5 (it: 9,time: 0.015998) 2.5 (it: 9,time: 0.006999) (c) 2.5 (it: 9,time: 0.006999) (c) 2.5 (it: 9,time: 0.014998) (c) + Solution: 2.5(9) 2.5(9) 2.5(9) 2.5(9) (c) 2.5(9) (c) 2.5(9) (c) Processing: test_solver_data/masters/cgal/PD_Dual_y_shifted_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.005999) 2.5 (it: 9,time: 0.006999) 2.5 (it: 9,time: 0.016997) 2.5 (it: 9,time: 0.007999) 2.5 (it: 9,time: 0.008998) 2.5 (it: 9,time: 0.015998) + Solution: 2.5(9) 2.5(9) 2.5(9) 2.5(9) 2.5(9) 2.5(9) Processing: test_solver_data/masters/cgal/PD_Dual_y_shifted_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.003999) 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.011998) 2.5 (it: 7,time: 0.004999) 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.011998) + Solution: 2.5(7) 2.5(7) 2.5(7) 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/masters/cgal/PD_Dual_y_shifted_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.007998) 2.5 (it: 9,time: 0.007999) + Solution: 2.5(9) 2.5(9) Processing: test_solver_data/masters/cgal/PD_Dual_y_shifted_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.007999) 2.5 (it: 9,time: 0.007999) + Solution: 2.5(9) 2.5(9) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -5.5 (it: 9,time: 0.004999) (c) -5.5 (it: 9,time: 0.007999) (c) -5.5 (it: 9,time: 0.016998) (c) + Solution: -5.5(9) (c) -5.5(9) (c) -5.5(9) (c) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -5.5 (it: 9,time: 0.005999) -5.5 (it: 9,time: 0.008998) -5.5 (it: 9,time: 0.015997) + Solution: -5.5(9) -5.5(9) -5.5(9) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -5.5 (it: 7,time: 0.003999) -5.5 (it: 7,time: 0.007998) -5.5 (it: 7,time: 0.011998) + Solution: -5.5(7) -5.5(7) -5.5(7) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -5.5 (it: 9,time: 0.008999) + Solution: -5.5(9) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -5.5 (it: 9,time: 0.008999) + Solution: -5.5(9) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.009998) (c) 2.5 (it: 9,time: 0.009998) (c) 2.5 (it: 9,time: 0.020996) (c) + Solution: 2.5(9) (c) 2.5(9) (c) 2.5(9) (c) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.008999) 2.5 (it: 9,time: 0.009999) 2.5 (it: 9,time: 0.020996) + Solution: 2.5(9) 2.5(9) 2.5(9) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.007999) 2.5 (it: 7,time: 0.018997) + Solution: 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.009998) + Solution: 2.5(9) Processing: test_solver_data/derivatives/PD_Dual_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.009999) + Solution: 2.5(9) Processing: test_solver_data/masters/cgal/PD_Dual_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.008999) 2.5 (it: 9,time: 0.007999) 2.5 (it: 9,time: 0.014997) 2.5 (it: 9,time: 0.005999) (c) 2.5 (it: 9,time: 0.007999) (c) 2.5 (it: 9,time: 0.015998) (c) + Solution: 2.5(9) 2.5(9) 2.5(9) 2.5(9) (c) 2.5(9) (c) 2.5(9) (c) Processing: test_solver_data/masters/cgal/PD_Dual_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.005999) 2.5 (it: 9,time: 0.007999) 2.5 (it: 9,time: 0.016997) 2.5 (it: 9,time: 0.006999) 2.5 (it: 9,time: 0.007999) 2.5 (it: 9,time: 0.016998) + Solution: 2.5(9) 2.5(9) 2.5(9) 2.5(9) 2.5(9) 2.5(9) Processing: test_solver_data/masters/cgal/PD_Dual_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 2.5 (it: 7,time: 0.004) 2.5 (it: 7,time: 0.005999) 2.5 (it: 7,time: 0.010999) 2.5 (it: 7,time: 0.006) 2.5 (it: 7,time: 0.008999) 2.5 (it: 7,time: 0.011998) + Solution: 2.5(7) 2.5(7) 2.5(7) 2.5(7) 2.5(7) 2.5(7) Processing: test_solver_data/masters/cgal/PD_Dual_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.007999) 2.5 (it: 9,time: 0.007999) + Solution: 2.5(9) 2.5(9) Processing: test_solver_data/masters/cgal/PD_Dual_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 2.5 (it: 9,time: 0.006999) 2.5 (it: 9,time: 0.007998) + Solution: 2.5(9) 2.5(9) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: -64 (it: 4,time: 0.001) -64 (it: 4,time: 0.002) -64 (it: 4,time: 0.002) -64 (it: 4,time: 0.001) (c) -64 (it: 4,time: 0.002) (c) -64 (it: 4,time: 0.003) (c) + Solution: -64(4) -64(4) -64(4) -64(4) (c) -64(4) (c) -64(4) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: -64 (it: 4,time: 0.001) -64 (it: 4,time: 0.001) -64 (it: 4,time: 0.001) -64 (it: 4,time: 0.002) -64 (it: 4,time: 0.001999) -64 (it: 4,time: 0.003) + Solution: -64(4) -64(4) -64(4) -64(4) -64(4) -64(4) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: -64 (it: 3,time: 0) -64 (it: 3,time: 0) -64 (it: 3,time: 0.001) -64 (it: 3,time: 0.000999) -64 (it: 3,time: 0.002) -64 (it: 3,time: 0.001999) + Solution: -64(3) -64(3) -64(3) -64(3) -64(3) -64(3) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: -64 (it: 4,time: 0.001) -64 (it: 4,time: 0.002) + Solution: -64(4) -64(4) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: -64 (it: 4,time: 0.000999) -64 (it: 4,time: 0.002) + Solution: -64(4) -64(4) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: -39 (it: 8,time: 0.002) -39 (it: 8,time: 0.002) -39 (it: 8,time: 0.003999) -39 (it: 8,time: 0.003999) (c) -39 (it: 8,time: 0.006999) (c) -39 (it: 8,time: 0.010998) (c) + Solution: -39(8) -39(8) -39(8) -39(8) (c) -39(8) (c) -39(8) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: -39 (it: 8,time: 0.002) -39 (it: 8,time: 0.003) -39 (it: 8,time: 0.003999) -39 (it: 8,time: 0.003999) -39 (it: 8,time: 0.005999) -39 (it: 8,time: 0.011998) + Solution: -39(8) -39(8) -39(8) -39(8) -39(8) -39(8) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: -39 (it: 5,time: 0.001) -39 (it: 5,time: 0.002) -39 (it: 5,time: 0.002) -39 (it: 5,time: 0.003) -39 (it: 5,time: 0.002999) -39 (it: 5,time: 0.007999) + Solution: -39(5) -39(5) -39(5) -39(5) -39(5) -39(5) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: -39 (it: 8,time: 0.003) -39 (it: 8,time: 0.004999) + Solution: -39(8) -39(8) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_b_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: -39 (it: 8,time: 0.002) -39 (it: 8,time: 0.005999) + Solution: -39(8) -39(8) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_b_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: -39 (it: 7,time: 0.002) -39 (it: 7,time: 0.001999) -39 (it: 7,time: 0.002) -39 (it: 7,time: 0.003999) (c) -39 (it: 7,time: 0.003999) (c) -39 (it: 7,time: 0.006999) (c) + Solution: -39(7) -39(7) -39(7) -39(7) (c) -39(7) (c) -39(7) (c) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_b_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: -39 (it: 7,time: 0.002) -39 (it: 7,time: 0.002) -39 (it: 7,time: 0.003) -39 (it: 7,time: 0.002999) -39 (it: 7,time: 0.003999) -39 (it: 7,time: 0.006999) + Solution: -39(7) -39(7) -39(7) -39(7) -39(7) -39(7) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_b_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: -39 (it: 3,time: 0) -39 (it: 3,time: 0.001) -39 (it: 3,time: 0.001) -39 (it: 3,time: 0.001) -39 (it: 3,time: 0.001) -39 (it: 3,time: 0.002999) + Solution: -39(3) -39(3) -39(3) -39(3) -39(3) -39(3) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_b_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: -39 (it: 7,time: 0.001) -39 (it: 7,time: 0.004) + Solution: -39(7) -39(7) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_b_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: -39 (it: 7,time: 0.002) -39 (it: 7,time: 0.004) + Solution: -39(7) -39(7) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_shifted.mps Strategy: fe Verbosity: 0 - Solution: 2 (it: 6,time: 0.001999) 2 (it: 6,time: 0.003999) 2 (it: 6,time: 0.005999) 2 (it: 6,time: 0.002999) (c) 2 (it: 6,time: 0.004) (c) 2 (it: 6,time: 0.005999) (c) + Solution: 2(6) 2(6) 2(6) 2(6) (c) 2(6) (c) 2(6) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_shifted.mps Strategy: pe Verbosity: 0 - Solution: 2 (it: 6,time: 0.003) 2 (it: 6,time: 0.003999) 2 (it: 6,time: 0.005999) 2 (it: 6,time: 0.003) 2 (it: 6,time: 0.002999) 2 (it: 6,time: 0.005999) + Solution: 2(6) 2(6) 2(6) 2(6) 2(6) 2(6) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_shifted.mps Strategy: eb Verbosity: 0 - Solution: 5 (it: 5,time: 0.003) 5 (it: 5,time: 0.003) 5 (it: 5,time: 0.005) 5 (it: 5,time: 0.001999) 5 (it: 5,time: 0.003) 5 (it: 5,time: 0.004999) + Solution: 5(5) 5(5) 5(5) 5(5) 5(5) 5(5) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_shifted.mps Strategy: ff Verbosity: 0 - Solution: 2 (it: 6,time: 0.003999) 2 (it: 6,time: 0.002999) + Solution: 2(6) 2(6) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_shifted.mps Strategy: pf Verbosity: 0 - Solution: 2 (it: 6,time: 0.003) 2 (it: 6,time: 0.003) + Solution: 2(6) 2(6) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_free.mps Strategy: fe Verbosity: 0 - Solution: 5 (it: 8,time: 0.007999) 5 (it: 8,time: 0.005999) 5 (it: 8,time: 0.011999) 5 (it: 8,time: 0.004999) (c) 5 (it: 8,time: 0.005999) (c) 5 (it: 8,time: 0.014998) (c) + Solution: 5(8) 5(8) 5(8) 5(8) (c) 5(8) (c) 5(8) (c) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_free.mps Strategy: pe Verbosity: 0 - Solution: 5 (it: 8,time: 0.003999) 5 (it: 8,time: 0.006999) 5 (it: 8,time: 0.010998) 5 (it: 8,time: 0.004999) 5 (it: 8,time: 0.006999) 5 (it: 8,time: 0.015997) + Solution: 5(8) 5(8) 5(8) 5(8) 5(8) 5(8) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_free.mps Strategy: eb Verbosity: 0 - Solution: 5 (it: 6,time: 0.004999) 5 (it: 6,time: 0.003999) 5 (it: 6,time: 0.008998) 5 (it: 6,time: 0.003) 5 (it: 6,time: 0.004999) 5 (it: 6,time: 0.009998) + Solution: 5(6) 5(6) 5(6) 5(6) 5(6) 5(6) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_free.mps Strategy: ff Verbosity: 0 - Solution: 5 (it: 8,time: 0.005) 5 (it: 8,time: 0.003999) + Solution: 5(8) 5(8) Processing: test_solver_data/derivatives/Ub_LP_Chvatal_8_1_d_QPE_solver_free.mps Strategy: pf Verbosity: 0 - Solution: 5 (it: 8,time: 0.004999) 5 (it: 8,time: 0.005) + Solution: 5(8) 5(8) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_d_QPE_solver.mps Strategy: fe Verbosity: 0 - Solution: 5 (it: 4,time: 0.002) 5 (it: 4,time: 0.001999) 5 (it: 4,time: 0.003999) 5 (it: 4,time: 0.002) (c) 5 (it: 4,time: 0.002) (c) 5 (it: 4,time: 0.003999) (c) + Solution: 5(4) 5(4) 5(4) 5(4) (c) 5(4) (c) 5(4) (c) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_d_QPE_solver.mps Strategy: pe Verbosity: 0 - Solution: 5 (it: 4,time: 0.001) 5 (it: 4,time: 0.001999) 5 (it: 4,time: 0.004) 5 (it: 4,time: 0.002) 5 (it: 4,time: 0.003) 5 (it: 4,time: 0.003999) + Solution: 5(4) 5(4) 5(4) 5(4) 5(4) 5(4) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_d_QPE_solver.mps Strategy: eb Verbosity: 0 - Solution: 5 (it: 5,time: 0.002) 5 (it: 5,time: 0.002999) 5 (it: 5,time: 0.004999) 5 (it: 5,time: 0.001999) 5 (it: 5,time: 0.003) 5 (it: 5,time: 0.004999) + Solution: 5(5) 5(5) 5(5) 5(5) 5(5) 5(5) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_d_QPE_solver.mps Strategy: ff Verbosity: 0 - Solution: 5 (it: 4,time: 0.002999) 5 (it: 4,time: 0.002) + Solution: 5(4) 5(4) Processing: test_solver_data/masters/cgal/Ub_LP_Chvatal_8_1_d_QPE_solver.mps Strategy: pf Verbosity: 0 - Solution: 5 (it: 4,time: 0.003) 5 (it: 4,time: 0.002999) + Solution: 5(4) 5(4) Processing: test_solver_data/derivatives/Unbounded_asymmetric_shifted.mps Strategy: fe Verbosity: 0 - Solution: -60 (it: 4,time: 0.001) (c) -60 (it: 4,time: 0.001) (c) -60 (it: 4,time: 0.002) (c) + Solution: -60(4) (c) -60(4) (c) -60(4) (c) Processing: test_solver_data/derivatives/Unbounded_asymmetric_shifted.mps Strategy: pe Verbosity: 0 - Solution: -60 (it: 4,time: 0.001) -60 (it: 4,time: 0.001) -60 (it: 4,time: 0.001999) + Solution: -60(4) -60(4) -60(4) Processing: test_solver_data/derivatives/Unbounded_asymmetric_shifted.mps Strategy: eb Verbosity: 0 - Solution: -60 (it: 4,time: 0.000999) -60 (it: 4,time: 0.001) -60 (it: 4,time: 0.002) + Solution: -60(4) -60(4) -60(4) Processing: test_solver_data/derivatives/Unbounded_asymmetric_shifted.mps Strategy: ff Verbosity: 0 - Solution: -60 (it: 4,time: 0.001) + Solution: -60(4) Processing: test_solver_data/derivatives/Unbounded_asymmetric_shifted.mps Strategy: pf Verbosity: 0 - Solution: -60 (it: 4,time: 0.001) + Solution: -60(4) Processing: test_solver_data/derivatives/Unbounded_asymmetric_free.mps Strategy: fe Verbosity: 0 - Solution: -22 (it: 6,time: 0.002) (c) -22 (it: 6,time: 0.003) (c) -22 (it: 6,time: 0.005) (c) + Solution: -22(6) (c) -22(6) (c) -22(6) (c) Processing: test_solver_data/derivatives/Unbounded_asymmetric_free.mps Strategy: pe Verbosity: 0 - Solution: -22 (it: 6,time: 0.002) -22 (it: 6,time: 0.003) -22 (it: 6,time: 0.005999) + Solution: -22(6) -22(6) -22(6) Processing: test_solver_data/derivatives/Unbounded_asymmetric_free.mps Strategy: eb Verbosity: 0 - Solution: -22 (it: 6,time: 0.003) -22 (it: 6,time: 0.002999) -22 (it: 6,time: 0.005) + Solution: -22(6) -22(6) -22(6) Processing: test_solver_data/derivatives/Unbounded_asymmetric_free.mps Strategy: ff Verbosity: 0 - Solution: -22 (it: 6,time: 0.002999) + Solution: -22(6) Processing: test_solver_data/derivatives/Unbounded_asymmetric_free.mps Strategy: pf Verbosity: 0 - Solution: -22 (it: 6,time: 0.003) + Solution: -22(6) Processing: test_solver_data/masters/cgal/Unbounded_asymmetric.mps Strategy: fe Verbosity: 0 - Solution: -22 (it: 4,time: 0.001) (c) -22 (it: 4,time: 0.002) (c) -22 (it: 4,time: 0.002) (c) + Solution: -22(4) (c) -22(4) (c) -22(4) (c) Processing: test_solver_data/masters/cgal/Unbounded_asymmetric.mps Strategy: pe Verbosity: 0 - Solution: -22 (it: 4,time: 0.001) -22 (it: 4,time: 0.001) -22 (it: 4,time: 0.001) + Solution: -22(4) -22(4) -22(4) Processing: test_solver_data/masters/cgal/Unbounded_asymmetric.mps Strategy: eb Verbosity: 0 - Solution: -22 (it: 4,time: 0.001) -22 (it: 4,time: 0.001999) -22 (it: 4,time: 0.001) + Solution: -22(4) -22(4) -22(4) Processing: test_solver_data/masters/cgal/Unbounded_asymmetric.mps Strategy: ff Verbosity: 0 - Solution: -22 (it: 4,time: 0.002) + Solution: -22(4) Processing: test_solver_data/masters/cgal/Unbounded_asymmetric.mps Strategy: pf Verbosity: 0 - Solution: -22 (it: 4,time: 0.001999) + Solution: -22(4) All test cases were successfully passed. diff --git a/QP_solver/test/QP_solver/test_solver.cpp b/QP_solver/test/QP_solver/test_solver.cpp index 1380de65c74..e81c4afed0d 100644 --- a/QP_solver/test/QP_solver/test_solver.cpp +++ b/QP_solver/test/QP_solver/test_solver.cpp @@ -26,7 +26,6 @@ #include #include -#include #ifndef CGAL_USE_GMP #include // Quotient is too slow, even @@ -293,8 +292,6 @@ bool process(const std::string& filename, using std::cout; using std::endl; - CGAL::Timer timer; - // extract verbosity: const int verbosity = options.find("Verbosity")->second; @@ -425,13 +422,10 @@ bool process(const std::string& filename, (static_cast (options.find("Strategy")->second)); - timer.reset(); - timer.start(); CGAL::QP_solver solver(qp, solver_options); - timer.stop(); - // output solution + number of iterations + time - cout << CGAL::to_double(solver.solution()) << " (it: " - << solver.iterations() << ",time: " << timer.time() << ") "; + // output solution + number of iterations + cout << CGAL::to_double(solver.solution()) << "(" + << solver.iterations() << ") "; // the solver previously checked itself through an assertion const bool is_valid = true; diff --git a/QP_solver/test/QP_solver/test_solver_data/masters/additional/QSCORPIO.QPS b/QP_solver/test/QP_solver/test_solver_data/masters/additional/QSCORPIO.QPS new file mode 100644 index 00000000000..1672c8cab93 --- /dev/null +++ b/QP_solver/test/QP_solver/test_solver_data/masters/additional/QSCORPIO.QPS @@ -0,0 +1,1414 @@ +NAME SCORPION +ROWS + N C9999 + G C0361 + G C0355 + G C0349 + G C0343 + G C0337 + G C0331 + G C0325 + G C0319 + G C0313 + G C0307 + E C0301 + E C0295 + E C0289 + E C0283 + E C0277 + E C0271 + E C0265 + E C0259 + E C0253 + E C0247 + E C0241 + E C0235 + E C0229 + E C0223 + E C0217 + E C0211 + E C0205 + E C0199 + E C0193 + E C0187 + E C0181 + E C0175 + E C0169 + E C0163 + L C0157 + L C0151 + L C0140 + L C0139 + L C0133 + E C0127 + E C0121 + E C0115 + E C0109 + E C0103 + E C0097 + E C0091 + E C0085 + E C0079 + E C0073 + E C0067 + E C0061 + E C0055 + E C0049 + E C0043 + E C0037 + E C0031 + E C0025 + E C0019 + L C0013 + L C0007 + L C0001 + E C1134 + E C1141 + E C1142 + E C1152 + E C1158 + G C0362 + G C0356 + G C0350 + G C0344 + G C0338 + G C0332 + G C0326 + G C0320 + G C0314 + G C0308 + E C0302 + E C0296 + E C0290 + E C0284 + E C0278 + E C0272 + E C0266 + E C0260 + E C0254 + E C0248 + E C0242 + E C0236 + E C0230 + E C0224 + E C0218 + E C0212 + E C0206 + E C0200 + E C0194 + E C0188 + E C0182 + E C0176 + E C0170 + E C0164 + L C0158 + L C0152 + L C0142 + L C0141 + L C0134 + E C0128 + E C0122 + E C0116 + E C0110 + E C0104 + E C0098 + E C0092 + E C0086 + E C0080 + E C0074 + E C0068 + E C0062 + E C0056 + E C0050 + E C0044 + E C0038 + E C0032 + E C0026 + E C0020 + L C0014 + L C0008 + L C0002 + E C1135 + E C2135 + E C1143 + E C2143 + E C1144 + E C2144 + E C1153 + E C2153 + E C1159 + E C2159 + G C0363 + G C0357 + G C0351 + G C0345 + G C0339 + G C0333 + G C0327 + G C0321 + G C0315 + G C0309 + E C0303 + E C0297 + E C0291 + E C0285 + E C0279 + E C0273 + E C0267 + E C0261 + E C0255 + E C0249 + E C0243 + E C0237 + E C0231 + E C0225 + E C0219 + E C0213 + E C0207 + E C0201 + E C0195 + E C0189 + E C0183 + E C0177 + E C0171 + E C0165 + L C0159 + L C0153 + L C0144 + L C0143 + L C0135 + E C0129 + E C0123 + E C0117 + E C0111 + E C0105 + E C0099 + E C0093 + E C0087 + E C0081 + E C0075 + E C0069 + E C0063 + E C0057 + E C0051 + E C0045 + E C0039 + E C0033 + E C0027 + E C0021 + L C0015 + L C0009 + L C0003 + E C1136 + E C1154 + E C2154 + E C3154 + E C1160 + E C2160 + E C3160 + G C0364 + G C0358 + G C0352 + G C0346 + G C0340 + G C0334 + G C0328 + G C0322 + G C0316 + G C0310 + E C0304 + E C0298 + E C0292 + E C0286 + E C0280 + E C0274 + E C0268 + E C0262 + E C0256 + E C0250 + E C0244 + E C0238 + E C0232 + E C0226 + E C0220 + E C0214 + E C0208 + E C0202 + E C0196 + E C0190 + E C0184 + E C0178 + E C0172 + E C0166 + L C0160 + L C0154 + L C0146 + L C0145 + L C0136 + E C0130 + E C0124 + E C0118 + E C0112 + E C0106 + E C0100 + E C0094 + E C0088 + E C0082 + E C0076 + E C0070 + E C0064 + E C0058 + E C0052 + E C0046 + E C0040 + E C0034 + E C0028 + E C0022 + L C0016 + L C0010 + L C0004 + G C0365 + G C0359 + G C0353 + G C0347 + G C0341 + G C0335 + G C0329 + G C0323 + G C0317 + G C0311 + E C0305 + E C0299 + E C0293 + E C0287 + E C0281 + E C0275 + E C0269 + E C0263 + E C0257 + E C0251 + E C0245 + E C0239 + E C0233 + E C0227 + E C0221 + E C0215 + E C0209 + E C0203 + E C0197 + E C0191 + E C0185 + E C0179 + E C0173 + E C0167 + L C0161 + L C0155 + L C0148 + L C0147 + L C0137 + E C0131 + E C0125 + E C0119 + E C0113 + E C0107 + E C0101 + E C0095 + E C0089 + E C0083 + E C0077 + E C0071 + E C0065 + E C0059 + E C0053 + E C0047 + E C0041 + E C0035 + E C0029 + E C0023 + L C0017 + L C0011 + L C0005 + G C0366 + G C0360 + G C0354 + G C0348 + G C0342 + G C0336 + G C0330 + G C0324 + G C0318 + G C0312 + E C0306 + E C0300 + E C0294 + E C0288 + E C0282 + E C0276 + E C0270 + E C0264 + E C0258 + E C0252 + E C0246 + E C0240 + E C0234 + E C0228 + E C0222 + E C0216 + E C0210 + E C0204 + E C0198 + E C0192 + E C0186 + E C0180 + E C0174 + E C0168 + L C0162 + L C0156 + L C0150 + L C0149 + L C0138 + E C0132 + E C0126 + E C0120 + E C0114 + E C0108 + E C0102 + E C0096 + E C0090 + E C0084 + E C0078 + E C0072 + E C0066 + E C0060 + E C0054 + E C0048 + E C0042 + E C0036 + E C0030 + E C0024 + L C0018 + L C0012 + L C0006 +COLUMNS + X0001 C0001 1. C0019 -.94 + X0001 C0133 1. C9999 20.64 + X0007 C0007 1. C0019 -.94 + X0007 C0133 1. C9999 102.27 + X0013 C0013 1. C0019 -.94 + X0013 C0133 1. + X0019 C0025 -.94 C0133 1. + X0019 C9999 189.84 + X0025 C0031 -.94 C0133 1. + X0025 C9999 180.48 + X0031 C0037 -.94 C0133 1. + X0031 C9999 171.32 + X0037 C0019 1. C0079 -1. + X0037 C0151 .1 C0163 .985 + X0037 C0169 -.4 C0175 -.105 + X0037 C0181 -.48 C9999 .45 + X0043 C0019 1. C0049 -.99 + X0043 C0157 .25 C0163 -.015 + X0043 C0169 .6 C0175 -.105 + X0043 C0181 -.48 C9999 .45 + X0049 C0019 1. C0055 -.99 + X0049 C0157 .25 C0163 -.015 + X0049 C0169 -.4 C0175 .895 + X0049 C0181 -.48 C9999 .45 + X0055 C0019 1. C0073 -1. + X0055 C0163 -.015 C0169 -.4 + X0055 C0175 -.105 C0181 .52 + X0055 C9999 .45 + X0061 C0025 1. C0079 -1. + X0061 C0151 .1 C0187 .98 + X0061 C0193 -.39 C0199 -.2 + X0061 C0205 -.39 C9999 .45 + X0067 C0025 1. C0049 -.99 + X0067 C0157 .25 C0187 -.02 + X0067 C0193 .61 C0199 -.2 + X0067 C0205 -.39 C9999 .45 + X0073 C0025 1. C0055 -.99 + X0073 C0157 .25 C0187 -.02 + X0073 C0193 -.39 C0199 .8 + X0073 C0205 -.39 C9999 .45 + X0079 C0025 1. C0073 -1. + X0079 C0187 -.02 C0193 -.39 + X0079 C0199 -.2 C0205 .61 + X0079 C9999 .45 + X0085 C0031 1. C0079 -1. + X0085 C0151 .1 C0211 .985 + X0085 C0217 -.35 C0223 -.175 + X0085 C0229 -.46 C9999 .45 + X0091 C0031 1. C0049 -.99 + X0091 C0157 .25 C0211 -.015 + X0091 C0217 .65 C0223 -.175 + X0091 C0229 -.46 C9999 .45 + X0097 C0031 1. C0055 -.99 + X0097 C0157 .25 C0211 -.015 + X0097 C0217 -.35 C0223 .825 + X0097 C0229 -.46 C9999 .45 + X0103 C0031 1. C0073 -1. + X0103 C0211 -.015 C0217 -.35 + X0103 C0223 -.175 C0229 .54 + X0103 C9999 .45 + X0109 C0037 1. C0079 -1. + X0109 C0151 .1 C0235 .99 + X0109 C0241 -.27 C0247 -.016 + X0109 C0253 -.56 C9999 .45 + X0115 C0037 1. C0049 -.99 + X0115 C0157 .25 C0235 -.01 + X0115 C0241 .73 C0247 -.016 + X0115 C0253 -.56 C9999 .45 + X0121 C0037 1. C0055 -.99 + X0121 C0157 .25 C0235 -.01 + X0121 C0241 -.27 C0247 .984 + X0121 C0253 -.56 C9999 .45 + X0127 C0037 1. C0073 -1. + X0127 C0235 -.01 C0241 -.27 + X0127 C0247 -.016 C0253 .44 + X0127 C9999 .45 + X0133 C0043 -.94 C0073 1. + X0133 C0139 1. + X0139 C0061 -.94 C0073 1. + X0139 C0140 1. + X0145 C0067 -.99 C0073 1. + X0145 C0157 .25 + X0151 C0043 1. C0067 -.99 + X0151 C0157 .25 C0259 .765 + X0151 C0265 -.12 C0271 -.325 + X0151 C0277 -.32 C9999 .91 + X0157 C0043 1. C0079 -1. + X0157 C0151 .1 C0259 -.235 + X0157 C0265 .88 C0271 -.325 + X0157 C0277 -.32 C9999 .91 + X0163 C0043 1. C0049 -.99 + X0163 C0157 .25 C0259 -.235 + X0163 C0265 -.12 C0271 .675 + X0163 C0277 -.32 C9999 .91 + X0169 C0043 1. C0055 -.99 + X0169 C0157 .25 C0259 -.235 + X0169 C0265 -.12 C0271 -.325 + X0169 C0277 .68 C9999 .91 + X0175 C0061 1. C0067 -.99 + X0175 C0157 .25 C0283 1. + X0175 C0289 -.12 C0301 -.88 + X0175 C9999 1.81 + X0181 C0061 1. C0079 -1. + X0181 C0151 .1 C0289 .88 + X0181 C0301 -.88 C9999 1.81 + X0187 C0049 -.99 C0061 1. + X0187 C0157 .25 C0289 -.12 + X0187 C0295 1. C0301 -.88 + X0187 C9999 1.81 + X0193 C0055 -.99 C0061 1. + X0193 C0157 .25 C0289 -.12 + X0193 C0301 .12 C9999 1.81 + X0199 C0067 1. C0361 1. + X0205 C0067 1. C0085 -1. + X0211 C0067 1. C0091 -1. + X0217 C0049 1. C0097 -1. + X0223 C0055 1. C0103 -1. + X0229 C0097 1. C0109 -1. + X0229 C9999 4.54 + X0235 C0097 1. C0115 -1. + X0235 C9999 4.54 + X0241 C0097 1. C0121 -1. + X0241 C9999 4.54 + X0247 C0103 1. C0127 -1. + X0247 C9999 4.54 + X0253 C0085 1. C0355 1. + X0253 C9999 2.27 + X0259 C0091 1. C0349 1. + X0259 C9999 4.54 + X0265 C0091 1. C0343 1. + X0265 C9999 4.54 + X0271 C0079 1. C0337 1. + X0271 C9999 .45 + X0277 C0109 1. C0331 1. + X0277 C9999 4.54 + X0283 C0115 1. C0325 1. + X0283 C9999 56.69 + X0289 C0121 1. C0319 1. + X0289 C9999 25.62 + X0295 C0127 1. C0313 1. + X0295 C9999 56.69 + X0301 C0103 1. C0307 1. + X0301 C9999 4.54 + X0308 C0151 -1. C0152 -1. + X0308 C1152 1. C9999 200.96 + X0314 C0157 -1. C0158 -1. + X0314 C1158 1. C9999 74.45 + X0320 C0140 -.85 C0142 -.85 + X0320 C1142 1. C9999 184.65 + X0326 C0139 -.85 C0141 -.85 + X0326 C1141 1. C9999 118.7 + X0332 C0133 -.95 C0134 -.95 + X0332 C1134 1. C9999 35.91 + X0002 C0002 1. C0020 -.94 + X0002 C0134 1. C9999 17.57 + X0008 C0008 1. C0020 -.94 + X0008 C0134 1. C9999 87.05 + X0014 C0014 1. C0020 -.94 + X0014 C0134 1. + X0020 C0026 -.94 C0134 1. + X0020 C9999 177.18 + X0026 C0032 -.94 C0134 1. + X0026 C9999 168.44 + X0032 C0038 -.94 C0134 1. + X0032 C9999 160.06 + X0038 C0020 1. C0080 -1. + X0038 C0152 .1 C0164 .985 + X0038 C0170 -.4 C0176 -.105 + X0038 C0182 -.48 C9999 .39 + X0044 C0020 1. C0050 -.99 + X0044 C0158 .25 C0164 -.015 + X0044 C0170 .6 C0176 -.105 + X0044 C0182 -.48 C9999 .39 + X0050 C0020 1. C0056 -.99 + X0050 C0158 .25 C0164 -.015 + X0050 C0170 -.4 C0176 .895 + X0050 C0182 -.48 C9999 .39 + X0056 C0020 1. C0074 -1. + X0056 C0164 -.015 C0170 -.4 + X0056 C0176 -.105 C0182 .52 + X0056 C9999 .39 + X0062 C0026 1. C0080 -1. + X0062 C0152 .1 C0188 .98 + X0062 C0194 -.39 C0200 -.2 + X0062 C0206 -.39 C9999 .39 + X0068 C0026 1. C0050 -.99 + X0068 C0158 .25 C0188 -.02 + X0068 C0194 .61 C0200 -.2 + X0068 C0206 -.39 C9999 .39 + X0074 C0026 1. C0056 -.99 + X0074 C0158 .25 C0188 -.02 + X0074 C0194 -.39 C0200 .8 + X0074 C0206 -.39 C9999 .39 + X0080 C0026 1. C0074 -1. + X0080 C0188 -.02 C0194 -.39 + X0080 C0200 -.2 C0206 .61 + X0080 C9999 .39 + X0086 C0032 1. C0080 -1. + X0086 C0152 .1 C0212 .985 + X0086 C0218 -.35 C0224 -.175 + X0086 C0230 -.46 C9999 .39 + X0092 C0032 1. C0050 -.99 + X0092 C0158 .25 C0212 -.015 + X0092 C0218 .65 C0224 -.175 + X0092 C0230 -.46 C9999 .39 + X0098 C0032 1. C0056 -.99 + X0098 C0158 .25 C0212 -.015 + X0098 C0218 -.35 C0224 .825 + X0098 C0230 -.46 C9999 .39 + X0104 C0032 1. C0074 -1. + X0104 C0212 -.015 C0218 -.35 + X0104 C0224 -.175 C0230 .54 + X0104 C9999 .39 + X0110 C0038 1. C0080 -1. + X0110 C0152 .1 C0236 .99 + X0110 C0242 -.27 C0248 -.016 + X0110 C0254 -.56 C9999 .39 + X0116 C0038 1. C0050 -.99 + X0116 C0158 .25 C0236 -.01 + X0116 C0242 .73 C0248 -.016 + X0116 C0254 -.56 C9999 .39 + X0122 C0038 1. C0056 -.99 + X0122 C0158 .25 C0236 -.01 + X0122 C0242 -.27 C0248 .984 + X0122 C0254 -.56 C9999 .39 + X0128 C0038 1. C0074 -1. + X0128 C0236 -.01 C0242 -.27 + X0128 C0248 -.016 C0254 .44 + X0128 C9999 .39 + X0134 C0044 -.94 C0074 1. + X0134 C0141 1. + X0140 C0062 -.94 C0074 1. + X0140 C0142 1. + X0146 C0068 -.99 C0074 1. + X0146 C0158 .25 + X0152 C0044 1. C0068 -.99 + X0152 C0158 .25 C0260 .765 + X0152 C0266 -.12 C0272 -.325 + X0152 C0278 -.32 C9999 .77 + X0158 C0044 1. C0080 -1. + X0158 C0152 .1 C0260 -.235 + X0158 C0266 .88 C0272 -.325 + X0158 C0278 -.32 C9999 .77 + X0164 C0044 1. C0050 -.99 + X0164 C0158 .25 C0260 -.235 + X0164 C0266 -.12 C0272 .675 + X0164 C0278 -.32 C9999 .77 + X0170 C0044 1. C0056 -.99 + X0170 C0158 .25 C0260 -.235 + X0170 C0266 -.12 C0272 -.325 + X0170 C0278 .68 C9999 .77 + X0176 C0062 1. C0068 -.99 + X0176 C0158 .25 C0284 1. + X0176 C0290 -.12 C0302 -.88 + X0176 C9999 1.54 + X0182 C0062 1. C0080 -1. + X0182 C0152 .1 C0290 .88 + X0182 C0302 -.88 C9999 1.54 + X0188 C0050 -.99 C0062 1. + X0188 C0158 .25 C0290 -.12 + X0188 C0296 1. C0302 -.88 + X0188 C9999 1.54 + X0194 C0056 -.99 C0062 1. + X0194 C0158 .25 C0290 -.12 + X0194 C0302 .12 C9999 1.54 + X0200 C0068 1. C0362 1. + X0206 C0068 1. C0086 -1. + X0212 C0068 1. C0092 -1. + X0218 C0050 1. C0098 -1. + X0224 C0056 1. C0104 -1. + X0230 C0098 1. C0110 -1. + X0230 C9999 3.86 + X0236 C0098 1. C0116 -1. + X0236 C9999 3.86 + X0242 C0098 1. C0122 -1. + X0242 C9999 3.86 + X0248 C0104 1. C0128 -1. + X0248 C9999 3.86 + X0254 C0086 1. C0356 1. + X0254 C9999 1.93 + X0260 C0092 1. C0350 1. + X0260 C9999 3.86 + X0266 C0092 1. C0344 1. + X0266 C9999 3.86 + X0272 C0080 1. C0338 1. + X0272 C9999 .39 + X0278 C0110 1. C0332 1. + X0278 C9999 3.86 + X0284 C0116 1. C0326 1. + X0284 C9999 48.26 + X0290 C0122 1. C0320 1. + X0290 C9999 21.81 + X0296 C0128 1. C0314 1. + X0296 C9999 48.26 + X0302 C0104 1. C0308 1. + X0302 C9999 3.86 + X0309 C0152 -1. C0153 -1. + X0309 C2153 1. C9999 146.54 + X0315 C0158 -1. C0159 -1. + X0315 C2159 1. C9999 54.29 + X0321 C0142 -.85 C0144 -.85 + X0321 C2144 1. C9999 136.67 + X0327 C0141 -.85 C0143 -.85 + X0327 C2143 1. C9999 87.86 + X0333 C0134 -.95 C0135 -.95 + X0333 C2135 1. C9999 26.58 + X2308 C1152 -1. C0153 -1. + X2308 C1153 1. + X2314 C1158 -1. C0159 -1. + X2314 C1159 1. + X2320 C1142 -1. C0144 -.85 + X2320 C1144 1. + X2326 C1141 -1. C0143 -.85 + X2326 C1143 1. + X2332 C1134 -1. C0135 -.95 + X2332 C1135 1. + X0003 C0003 1. C0021 -.94 + X0003 C0135 1. C9999 15.52 + X0009 C0009 1. C0021 -.94 + X0009 C0135 1. C9999 76.91 + X0015 C0015 1. C0021 -.94 + X0015 C0135 1. + X0021 C0027 -.94 C0135 1. + X0021 C9999 173.26 + X0027 C0033 -.94 C0135 1. + X0027 C9999 164.72 + X0033 C0039 -.94 C0135 1. + X0033 C9999 156.5 + X0039 C0021 1. C0081 -1. + X0039 C0153 .1 C0165 .985 + X0039 C0171 -.4 C0177 -.105 + X0039 C0183 -.48 C9999 .34 + X0045 C0021 1. C0051 -.99 + X0045 C0159 .25 C0165 -.015 + X0045 C0171 .6 C0177 -.105 + X0045 C0183 -.48 C9999 .34 + X0051 C0021 1. C0057 -.99 + X0051 C0159 .25 C0165 -.015 + X0051 C0171 -.4 C0177 .895 + X0051 C0183 -.48 C9999 .34 + X0057 C0021 1. C0075 -1. + X0057 C0165 -.015 C0171 -.4 + X0057 C0177 -.105 C0183 .52 + X0057 C9999 .34 + X0063 C0027 1. C0081 -1. + X0063 C0153 .1 C0189 .98 + X0063 C0195 -.39 C0201 -.2 + X0063 C0207 -.39 C9999 .34 + X0069 C0027 1. C0051 -.99 + X0069 C0159 .25 C0189 -.02 + X0069 C0195 .61 C0201 -.2 + X0069 C0207 -.39 C9999 .34 + X0075 C0027 1. C0057 -.99 + X0075 C0159 .25 C0189 -.02 + X0075 C0195 -.39 C0201 .8 + X0075 C0207 -.39 C9999 .34 + X0081 C0027 1. C0075 -1. + X0081 C0189 -.02 C0195 -.39 + X0081 C0201 -.2 C0207 .61 + X0081 C9999 .34 + X0087 C0033 1. C0081 -1. + X0087 C0153 .1 C0213 .985 + X0087 C0219 -.35 C0225 -.175 + X0087 C0231 -.46 C9999 .34 + X0093 C0033 1. C0051 -.99 + X0093 C0159 .25 C0213 -.015 + X0093 C0219 .65 C0225 -.175 + X0093 C0231 -.46 C9999 .34 + X0099 C0033 1. C0057 -.99 + X0099 C0159 .25 C0213 -.015 + X0099 C0219 -.35 C0225 .825 + X0099 C0231 -.46 C9999 .34 + X0105 C0033 1. C0075 -1. + X0105 C0213 -.015 C0219 -.35 + X0105 C0225 -.175 C0231 .54 + X0105 C9999 .34 + X0111 C0039 1. C0081 -1. + X0111 C0153 .1 C0237 .99 + X0111 C0243 -.27 C0249 -.016 + X0111 C0255 -.56 C9999 .34 + X0117 C0039 1. C0051 -.99 + X0117 C0159 .25 C0237 -.01 + X0117 C0243 .73 C0249 -.016 + X0117 C0255 -.56 C9999 .34 + X0123 C0039 1. C0057 -.99 + X0123 C0159 .25 C0237 -.01 + X0123 C0243 -.27 C0249 .984 + X0123 C0255 -.56 C9999 .34 + X0129 C0039 1. C0075 -1. + X0129 C0237 -.01 C0243 -.27 + X0129 C0249 -.016 C0255 .44 + X0129 C9999 .34 + X0135 C0045 -.94 C0075 1. + X0135 C0143 1. + X0141 C0063 -.94 C0075 1. + X0141 C0144 1. + X0147 C0069 -.99 C0075 1. + X0147 C0159 .25 + X0153 C0045 1. C0069 -.99 + X0153 C0159 .25 C0261 .765 + X0153 C0267 -.12 C0273 -.325 + X0153 C0279 -.32 C9999 .68 + X0159 C0045 1. C0081 -1. + X0159 C0153 .1 C0261 -.235 + X0159 C0267 .88 C0273 -.325 + X0159 C0279 -.32 C9999 .68 + X0165 C0045 1. C0051 -.99 + X0165 C0159 .25 C0261 -.235 + X0165 C0267 -.12 C0273 .675 + X0165 C0279 -.32 C9999 .68 + X0171 C0045 1. C0057 -.99 + X0171 C0159 .25 C0261 -.235 + X0171 C0267 -.12 C0273 -.325 + X0171 C0279 .68 C9999 .68 + X0177 C0063 1. C0069 -.99 + X0177 C0159 .25 C0285 1. + X0177 C0291 -.12 C0303 -.88 + X0177 C9999 1.36 + X0183 C0063 1. C0081 -1. + X0183 C0153 .1 C0291 .88 + X0183 C0303 -.88 C9999 1.36 + X0189 C0051 -.99 C0063 1. + X0189 C0159 .25 C0291 -.12 + X0189 C0297 1. C0303 -.88 + X0189 C9999 1.36 + X0195 C0057 -.99 C0063 1. + X0195 C0159 .25 C0291 -.12 + X0195 C0303 .12 C9999 1.36 + X0201 C0069 1. C0363 1. + X0207 C0069 1. C0087 -1. + X0213 C0069 1. C0093 -1. + X0219 C0051 1. C0099 -1. + X0225 C0057 1. C0105 -1. + X0231 C0099 1. C0111 -1. + X0231 C9999 3.41 + X0237 C0099 1. C0117 -1. + X0237 C9999 3.41 + X0243 C0099 1. C0123 -1. + X0243 C9999 3.41 + X0249 C0105 1. C0129 -1. + X0249 C9999 3.41 + X0255 C0087 1. C0357 1. + X0255 C9999 1.71 + X0261 C0093 1. C0351 1. + X0261 C9999 3.41 + X0267 C0093 1. C0345 1. + X0267 C9999 3.41 + X0273 C0081 1. C0339 1. + X0273 C9999 .34 + X0279 C0111 1. C0333 1. + X0279 C9999 3.41 + X0285 C0117 1. C0327 1. + X0285 C9999 42.63 + X0291 C0123 1. C0321 1. + X0291 C9999 19.27 + X0297 C0129 1. C0315 1. + X0297 C9999 42.63 + X0303 C0105 1. C0309 1. + X0303 C9999 3.41 + X0310 C0153 -1. C0154 -1. + X0310 C3154 1. C9999 101.71 + X0316 C0159 -1. C0160 -1. + X0316 C3160 1. C9999 37.68 + X0322 C0144 -.85 C0146 -.85 + X0322 C9999 96.49 + X0328 C0143 -.85 C0145 -.85 + X0328 C9999 62.03 + X0334 C0135 -.95 C0136 -.95 + X0334 C1136 1. C9999 18.76 + X3308 C1153 -1. C0154 -1. + X3308 C1154 1. + X3309 C2153 -1. C0154 -1. + X3309 C2154 1. + X3314 C1159 -1. C0160 -1. + X3314 C2160 1. + X3315 C2159 -1. C0160 -1. + X3315 C2160 1. + X3320 C1144 -1. C0146 -.85 + X3321 C2144 -1. C0146 -.85 + X3326 C1143 -1. C0145 -.85 + X3327 C2143 -1. C0145 -.85 + X3332 C1135 -1. C0136 -.95 + X3333 C2135 -1. C0136 -.95 + X0004 C0004 1. C0022 -.94 + X0004 C0136 1. C9999 14.54 + X0010 C0010 1. C0022 -.94 + X0010 C0136 1. C9999 72.04 + X0016 C0016 1. C0022 -.94 + X0016 C0136 1. + X0022 C0028 -.94 C0136 1. + X0022 C9999 185.42 + X0028 C0034 -.94 C0136 1. + X0028 C9999 176.26 + X0034 C0040 -.94 C0136 1. + X0034 C9999 167.3 + X0040 C0022 1. C0082 -1. + X0040 C0154 .1 C0166 .985 + X0040 C0172 -.4 C0178 -.105 + X0040 C0184 -.48 C9999 .32 + X0046 C0022 1. C0052 -.99 + X0046 C0160 .25 C0166 -.015 + X0046 C0172 .6 C0178 -.105 + X0046 C0184 -.48 C9999 .32 + X0052 C0022 1. C0058 -.99 + X0052 C0160 .25 C0166 -.015 + X0052 C0172 -.4 C0178 .895 + X0052 C0184 -.48 C9999 .32 + X0058 C0022 1. C0076 -1. + X0058 C0166 -.015 C0172 -.4 + X0058 C0178 -.105 C0184 .52 + X0058 C9999 .32 + X0064 C0028 1. C0082 -1. + X0064 C0154 .1 C0190 .98 + X0064 C0196 -.39 C0202 -.2 + X0064 C0208 -.39 C9999 .32 + X0070 C0028 1. C0052 -.99 + X0070 C0160 .25 C0190 -.02 + X0070 C0196 .61 C0202 -.2 + X0070 C0208 -.39 C9999 .32 + X0076 C0028 1. C0058 -.99 + X0076 C0160 .25 C0190 -.02 + X0076 C0196 -.39 C0202 .8 + X0076 C0208 -.39 C9999 .32 + X0082 C0028 1. C0076 -1. + X0082 C0190 -.02 C0196 -.39 + X0082 C0202 -.2 C0208 .61 + X0082 C9999 .32 + X0088 C0034 1. C0082 -1. + X0088 C0154 .1 C0214 .985 + X0088 C0220 -.35 C0226 -.175 + X0088 C0232 -.46 C9999 .32 + X0094 C0034 1. C0052 -.99 + X0094 C0160 .25 C0214 -.015 + X0094 C0220 .65 C0226 -.175 + X0094 C0232 -.46 C9999 .32 + X0100 C0034 1. C0058 -.99 + X0100 C0160 .25 C0214 -.015 + X0100 C0220 -.35 C0226 .825 + X0100 C0232 -.46 C9999 .32 + X0106 C0034 1. C0076 -1. + X0106 C0214 -.015 C0220 -.35 + X0106 C0226 -.175 C0232 .54 + X0106 C9999 .32 + X0112 C0040 1. C0082 -1. + X0112 C0154 .1 C0238 .99 + X0112 C0244 -.27 C0250 -.016 + X0112 C0256 -.56 C9999 .32 + X0118 C0040 1. C0052 -.99 + X0118 C0160 .25 C0238 -.01 + X0118 C0244 .73 C0250 -.016 + X0118 C0256 -.56 C9999 .32 + X0124 C0040 1. C0058 -.99 + X0124 C0160 .25 C0238 -.01 + X0124 C0244 -.27 C0250 .984 + X0124 C0256 -.56 C9999 .32 + X0130 C0040 1. C0076 -1. + X0130 C0238 -.01 C0244 -.27 + X0130 C0250 -.016 C0256 .44 + X0130 C9999 .32 + X0136 C0046 -.94 C0076 1. + X0136 C0145 1. + X0142 C0064 -.94 C0076 1. + X0142 C0146 1. + X0148 C0070 -.99 C0076 1. + X0148 C0160 .25 + X0154 C0046 1. C0070 -.99 + X0154 C0160 .25 C0262 .765 + X0154 C0268 -.12 C0274 -.325 + X0154 C0280 -.32 C9999 .64 + X0160 C0046 1. C0082 -1. + X0160 C0154 .1 C0262 -.235 + X0160 C0268 .88 C0274 -.325 + X0160 C0280 -.32 C9999 .64 + X0166 C0046 1. C0052 -.99 + X0166 C0160 .25 C0262 -.235 + X0166 C0268 -.12 C0274 .675 + X0166 C0280 -.32 C9999 .64 + X0172 C0046 1. C0058 -.99 + X0172 C0160 .25 C0262 -.235 + X0172 C0268 -.12 C0274 -.325 + X0172 C0280 .68 C9999 .64 + X0178 C0064 1. C0070 -.99 + X0178 C0160 .25 C0286 1. + X0178 C0292 -.12 C0304 -.88 + X0178 C9999 1.28 + X0184 C0064 1. C0082 -1. + X0184 C0154 .1 C0292 .88 + X0184 C0304 -.88 C9999 1.28 + X0190 C0052 -.99 C0064 1. + X0190 C0160 .25 C0292 -.12 + X0190 C0298 1. C0304 -.88 + X0190 C9999 1.28 + X0196 C0058 -.99 C0064 1. + X0196 C0160 .25 C0292 -.12 + X0196 C0304 .12 C9999 1.28 + X0202 C0070 1. C0364 1. + X0208 C0070 1. C0088 -1. + X0214 C0070 1. C0094 -1. + X0220 C0052 1. C0100 -1. + X0226 C0058 1. C0106 -1. + X0232 C0100 1. C0112 -1. + X0232 C9999 3.19 + X0238 C0100 1. C0118 -1. + X0238 C9999 3.19 + X0244 C0100 1. C0124 -1. + X0244 C9999 3.19 + X0250 C0106 1. C0130 -1. + X0250 C9999 3.19 + X0256 C0088 1. C0358 1. + X0256 C9999 1.6 + X0262 C0094 1. C0352 1. + X0262 C9999 3.19 + X0268 C0094 1. C0346 1. + X0268 C9999 3.19 + X0274 C0082 1. C0340 1. + X0274 C9999 .32 + X0280 C0112 1. C0334 1. + X0280 C9999 3.19 + X0286 C0118 1. C0328 1. + X0286 C9999 39.93 + X0292 C0124 1. C0322 1. + X0292 C9999 18.05 + X0298 C0130 1. C0316 1. + X0298 C9999 39.93 + X0304 C0106 1. C0310 1. + X0304 C9999 3.19 + X0311 C0154 -1. C0155 -1. + X0311 C9999 63.6 + X0317 C0160 -1. C0161 -1. + X0317 C9999 23.56 + X0323 C0146 -.85 C0148 -.85 + X0323 C9999 61.67 + X0329 C0145 -.85 C0147 -.85 + X0329 C9999 39.65 + X0335 C0136 -.95 C0137 -.95 + X0335 C9999 11.99 + X4308 C1154 -1. C0155 -1. + X4309 C2154 -1. C0155 -1. + X4310 C3154 -1. C0155 -1. + X4314 C1160 -1. C0161 -1. + X4315 C2160 -1. C0161 -1. + X4316 C3160 -1. C0161 -1. + X4334 C1136 -1. C0137 -.95 + X0005 C0005 1. C0023 -.94 + X0005 C0137 1. C9999 10.79 + X0011 C0011 1. C0023 -.94 + X0011 C0137 1. C9999 53.48 + X0017 C0017 1. C0023 -.94 + X0017 C0137 1. + X0023 C0029 -.94 C0137 1. + X0023 C9999 159.51 + X0029 C0035 -.94 C0137 1. + X0029 C9999 151.62 + X0035 C0041 -.94 C0137 1. + X0035 C9999 143.96 + X0041 C0023 1. C0083 -1. + X0041 C0155 .1 C0167 .985 + X0041 C0173 -.4 C0179 -.105 + X0041 C0185 -.48 C9999 .24 + X0047 C0023 1. C0053 -.99 + X0047 C0161 .25 C0167 -.015 + X0047 C0173 .6 C0179 -.105 + X0047 C0185 -.48 C9999 .24 + X0053 C0023 1. C0059 -.99 + X0053 C0161 .25 C0167 -.015 + X0053 C0173 -.4 C0179 .895 + X0053 C0185 -.48 C9999 .24 + X0059 C0023 1. C0077 -1. + X0059 C0167 -.015 C0173 -.4 + X0059 C0179 -.105 C0185 .52 + X0059 C9999 .24 + X0065 C0029 1. C0083 -1. + X0065 C0155 .1 C0191 .98 + X0065 C0197 -.39 C0203 -.2 + X0065 C0209 -.39 C9999 .24 + X0071 C0029 1. C0053 -.99 + X0071 C0161 .25 C0191 -.02 + X0071 C0197 .61 C0203 -.2 + X0071 C0209 -.39 C9999 .24 + X0077 C0029 1. C0059 -.99 + X0077 C0161 .25 C0191 -.02 + X0077 C0197 -.39 C0203 .8 + X0077 C0209 -.39 C9999 .24 + X0083 C0029 1. C0077 -1. + X0083 C0191 -.02 C0197 -.39 + X0083 C0203 -.2 C0209 .61 + X0083 C9999 .24 + X0089 C0035 1. C0083 -1. + X0089 C0155 .1 C0215 .985 + X0089 C0221 -.35 C0227 -.175 + X0089 C0233 -.46 C9999 .24 + X0095 C0035 1. C0053 -.99 + X0095 C0161 .25 C0215 -.015 + X0095 C0221 .65 C0227 -.175 + X0095 C0233 -.46 C9999 .24 + X0101 C0035 1. C0059 -.99 + X0101 C0161 .25 C0215 -.015 + X0101 C0221 -.35 C0227 .825 + X0101 C0233 -.46 C9999 .24 + X0107 C0035 1. C0077 -1. + X0107 C0215 -.015 C0221 -.35 + X0107 C0227 -.175 C0233 .54 + X0107 C9999 .24 + X0113 C0041 1. C0083 -1. + X0113 C0155 .1 C0239 .99 + X0113 C0245 -.27 C0251 -.016 + X0113 C0257 -.56 C9999 .24 + X0119 C0041 1. C0053 -.99 + X0119 C0161 .25 C0239 -.01 + X0119 C0245 .73 C0251 -.016 + X0119 C0257 -.56 C9999 .24 + X0125 C0041 1. C0059 -.99 + X0125 C0161 .25 C0239 -.01 + X0125 C0245 -.27 C0251 .984 + X0125 C0257 -.56 C9999 .24 + X0131 C0041 1. C0077 -1. + X0131 C0239 -.01 C0245 -.27 + X0131 C0251 -.016 C0257 .44 + X0131 C9999 .24 + X0137 C0047 -.94 C0077 1. + X0137 C0147 1. + X0143 C0065 -.94 C0077 1. + X0143 C0148 1. + X0149 C0071 -.99 C0077 1. + X0149 C0161 .25 + X0155 C0047 1. C0071 -.99 + X0155 C0161 .25 C0263 .765 + X0155 C0269 -.12 C0275 -.325 + X0155 C0281 -.32 C9999 .47 + X0161 C0047 1. C0083 -1. + X0161 C0155 .1 C0263 -.235 + X0161 C0269 .88 C0275 -.325 + X0161 C0281 -.32 C9999 .47 + X0167 C0047 1. C0053 -.99 + X0167 C0161 .25 C0263 -.235 + X0167 C0269 -.12 C0275 .675 + X0167 C0281 -.32 C9999 .47 + X0173 C0047 1. C0059 -.99 + X0173 C0161 .25 C0263 -.235 + X0173 C0269 -.12 C0275 -.325 + X0173 C0281 .68 C9999 .47 + X0179 C0065 1. C0071 -.99 + X0179 C0161 .25 C0287 1. + X0179 C0293 -.12 C0305 -.88 + X0179 C9999 .95 + X0185 C0065 1. C0083 -1. + X0185 C0155 .1 C0293 .88 + X0185 C0305 -.88 C9999 .95 + X0191 C0053 -.99 C0065 1. + X0191 C0161 .25 C0293 -.12 + X0191 C0299 1. C0305 -.88 + X0191 C9999 .95 + X0197 C0059 -.99 C0065 1. + X0197 C0161 .25 C0293 -.12 + X0197 C0305 .12 C9999 .95 + X0203 C0071 1. C0365 1. + X0209 C0071 1. C0089 -1. + X0215 C0071 1. C0095 -1. + X0221 C0053 1. C0101 -1. + X0227 C0059 1. C0107 -1. + X0233 C0101 1. C0113 -1. + X0233 C9999 2.37 + X0239 C0101 1. C0119 -1. + X0239 C9999 2.37 + X0245 C0101 1. C0125 -1. + X0245 C9999 2.37 + X0251 C0107 1. C0131 -1. + X0251 C9999 2.37 + X0257 C0089 1. C0359 1. + X0257 C9999 1.19 + X0263 C0095 1. C0353 1. + X0263 C9999 2.37 + X0269 C0095 1. C0347 1. + X0269 C9999 2.37 + X0275 C0083 1. C0341 1. + X0275 C9999 .24 + X0281 C0113 1. C0335 1. + X0281 C9999 2.37 + X0287 C0119 1. C0329 1. + X0287 C9999 29.65 + X0293 C0125 1. C0323 1. + X0293 C9999 13.4 + X0299 C0131 1. C0317 1. + X0299 C9999 29.65 + X0305 C0107 1. C0311 1. + X0305 C9999 2.37 + X0312 C0155 -1. C0156 -1. + X0312 C9999 29.89 + X0318 C0161 -1. C0162 -1. + X0318 C9999 11.07 + X0324 C0148 -.85 C9999 29.99 + X0330 C0147 -.85 C9999 19.28 + X0336 C0137 -.95 C9999 5.83 + X0006 C0006 1. C0024 -.94 + X0006 C0138 1. C9999 2.68 + X0012 C0012 1. C0024 -.94 + X0012 C0138 1. C9999 13.3 + X0018 C0018 1. C0024 -.94 + X0018 C0138 1. + X0024 C0030 -.94 C0138 1. + X0024 C9999 45.39 + X0030 C0036 -.94 C0138 1. + X0030 C9999 43.14 + X0036 C0042 -.94 C0138 1. + X0036 C9999 40.98 + X0042 C0024 1. C0084 -1. + X0042 C0156 .1 C0168 .985 + X0042 C0174 -.4 C0180 -.105 + X0042 C0186 -.48 C9999 .06 + X0048 C0024 1. C0054 -.99 + X0048 C0162 .25 C0168 -.015 + X0048 C0174 .6 C0180 -.105 + X0048 C0186 -.48 C9999 .06 + X0054 C0024 1. C0060 -.99 + X0054 C0162 .25 C0168 -.015 + X0054 C0174 -.4 C0180 .895 + X0054 C0186 -.48 C9999 .06 + X0060 C0024 1. C0078 -1. + X0060 C0168 -.015 C0174 -.4 + X0060 C0180 -.105 C0186 .52 + X0060 C9999 .06 + X0066 C0030 1. C0084 -1. + X0066 C0156 .1 C0192 .98 + X0066 C0198 -.39 C0204 -.2 + X0066 C0210 -.39 C9999 .06 + X0072 C0030 1. C0054 -.99 + X0072 C0162 .25 C0192 -.02 + X0072 C0198 .61 C0204 -.2 + X0072 C0210 -.39 C9999 .06 + X0078 C0030 1. C0060 -.99 + X0078 C0162 .25 C0192 -.02 + X0078 C0198 -.39 C0204 .8 + X0078 C0210 -.39 C9999 .06 + X0084 C0030 1. C0078 -1. + X0084 C0192 -.02 C0198 -.39 + X0084 C0204 -.2 C0210 .61 + X0084 C9999 .06 + X0090 C0036 1. C0084 -1. + X0090 C0156 .1 C0216 .985 + X0090 C0222 -.35 C0228 -.175 + X0090 C0234 -.46 C9999 .06 + X0096 C0036 1. C0054 -.99 + X0096 C0162 .25 C0216 -.015 + X0096 C0222 .65 C0228 -.175 + X0096 C0234 -.46 C9999 .06 + X0102 C0036 1. C0060 -.99 + X0102 C0162 .25 C0216 -.015 + X0102 C0222 -.35 C0228 .825 + X0102 C0234 -.46 C9999 .06 + X0108 C0036 1. C0078 -1. + X0108 C0216 -.015 C0222 -.35 + X0108 C0228 -.175 C0234 .54 + X0108 C9999 .06 + X0114 C0042 1. C0084 -1. + X0114 C0156 .1 C0240 .99 + X0114 C0246 -.27 C0252 -.016 + X0114 C0258 -.56 C9999 .06 + X0120 C0042 1. C0054 -.99 + X0120 C0162 .25 C0240 -.01 + X0120 C0246 .73 C0252 -.016 + X0120 C0258 -.56 C9999 .06 + X0126 C0042 1. C0060 -.99 + X0126 C0162 .25 C0240 -.01 + X0126 C0246 -.27 C0252 .984 + X0126 C0258 -.56 C9999 .06 + X0132 C0042 1. C0078 -1. + X0132 C0240 -.01 C0246 -.27 + X0132 C0252 -.016 C0258 .44 + X0132 C9999 .06 + X0138 C0048 -.94 C0078 1. + X0138 C0149 1. + X0144 C0066 -.94 C0078 1. + X0144 C0150 1. + X0150 C0072 -.99 C0078 1. + X0150 C0162 .25 + X0156 C0048 1. C0072 -.99 + X0156 C0162 .25 C0264 .765 + X0156 C0270 -.12 C0276 -.325 + X0156 C0282 -.32 C9999 .12 + X0162 C0048 1. C0084 -1. + X0162 C0156 .1 C0264 -.235 + X0162 C0270 .88 C0276 -.325 + X0162 C0282 -.32 C9999 .12 + X0168 C0048 1. C0054 -.99 + X0168 C0162 .25 C0264 -.235 + X0168 C0270 -.12 C0276 .675 + X0168 C0282 -.32 C9999 .12 + X0174 C0048 1. C0060 -.99 + X0174 C0162 .25 C0264 -.235 + X0174 C0270 -.12 C0276 -.325 + X0174 C0282 .68 C9999 .12 + X0180 C0066 1. C0072 -.99 + X0180 C0162 .25 C0288 1. + X0180 C0294 -.12 C0306 -.88 + X0180 C9999 .24 + X0186 C0066 1. C0084 -1. + X0186 C0156 .1 C0294 .88 + X0186 C0306 -.88 C9999 .24 + X0192 C0054 -.99 C0066 1. + X0192 C0162 .25 C0294 -.12 + X0192 C0300 1. C0306 -.88 + X0192 C9999 .24 + X0198 C0060 -.99 C0066 1. + X0198 C0162 .25 C0294 -.12 + X0198 C0306 .12 C9999 .24 + X0204 C0072 1. C0366 1. + X0210 C0072 1. C0090 -1. + X0216 C0072 1. C0096 -1. + X0222 C0054 1. C0102 -1. + X0228 C0060 1. C0108 -1. + X0234 C0102 1. C0114 -1. + X0234 C9999 .59 + X0240 C0102 1. C0120 -1. + X0240 C9999 .59 + X0246 C0102 1. C0126 -1. + X0246 C9999 .59 + X0252 C0108 1. C0132 -1. + X0252 C9999 .59 + X0258 C0090 1. C0360 1. + X0258 C9999 .29 + X0264 C0096 1. C0354 1. + X0264 C9999 .59 + X0270 C0096 1. C0348 1. + X0270 C9999 .59 + X0276 C0084 1. C0342 1. + X0276 C9999 .06 + X0282 C0114 1. C0336 1. + X0282 C9999 .59 + X0288 C0120 1. C0330 1. + X0288 C9999 7.37 + X0294 C0126 1. C0324 1. + X0294 C9999 3.33 + X0300 C0132 1. C0318 1. + X0300 C9999 7.37 + X0306 C0108 1. C0312 1. + X0306 C9999 .59 + X0313 C0156 -1. C9999 7.04 + X0319 C0162 -1. C9999 2.61 + X0325 C0150 -.6375 C9999 7.52 + X0331 C0149 -.6375 C9999 4.83 + X0337 C0138 -.95 C9999 1.46 +RHS + SM C0001 .0085 C0002 .007 + SM C0003 .002 C0007 .002 + SM C0008 .006 C0009 .018 + SM C0010 .03 C0011 .01 + SM C0133 1.444 C0134 1.235 + SM C0135 .854999 C0136 .095 + SM C0139 .068 C0140 .0034 + SM C0141 .0459 C0142 .0034 + SM C0143 .0255 C0144 .0034 + SM C0146 .0034 C0157 .52 + SM C0158 .47 C0159 .39 + SM C0160 .2 C0307 .062 + SM C0308 .073 C0309 .087 + SM C0310 .11 C0311 .15 + SM C0312 .2 C0313 .25 + SM C0314 .29 C0315 .33 + SM C0316 .41 C0317 .5 + SM C0318 .68 C0319 .4 + SM C0320 .42 C0321 .45 + SM C0322 .5 C0323 .55 + SM C0324 .6 C0325 .12 + SM C0326 .129 C0327 .1468 + SM C0328 .168 C0329 .245 + SM C0330 .289 C0331 .07 + SM C0332 .08 C0333 .09 + SM C0334 .1 C0335 .11 + SM C0336 .12 C0337 .04 + SM C0338 .04 C0339 .05 + SM C0340 .05 C0341 .06 + SM C0342 .07 C0343 .05 + SM C0344 .055 C0345 .06 + SM C0346 .065 C0347 .07 + SM C0348 .08 C0349 .15 + SM C0350 .16 C0351 .18 + SM C0352 .2 C0353 .2 + SM C0354 .2 C0355 .13 + SM C0356 .12 C0357 .05 + SM C0358 .04 C0359 .04 +QUADOBJ + X0109 X0109 10. + X0109 X0115 1. + X0109 X0121 1. + X0109 X0127 1. + X0115 X0115 10. + X0115 X0121 1. + X0115 X0127 1. + X0121 X0121 10. + X0121 X0127 1. + X0127 X0127 10. + X0151 X0151 40. + X0151 X0157 4. + X0151 X0163 4. + X0151 X0169 4. + X0157 X0157 40. + X0157 X0163 4. + X0157 X0169 4. + X0163 X0163 40. + X0163 X0169 4. + X0169 X0169 40. + X0175 X0175 30. + X0175 X0181 2. + X0175 X0187 2. + X0175 X0193 2. + X0181 X0181 20. + X0181 X0187 2. + X0181 X0193 2. + X0187 X0187 30. + X0187 X0193 2. + X0193 X0193 20. + X0199 X0199 10. + X0253 X0253 10. + X0259 X0259 10. + X0265 X0265 10. + X0271 X0271 10. + X0277 X0277 10. + X0283 X0283 10. + X0289 X0289 10. + X0295 X0295 10. + X0301 X0301 10. +ENDATA