Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanup in log categories
authorSUTER Frederic <frederic.suter@cc.in2p3.fr>
Thu, 20 Jan 2022 13:25:02 +0000 (14:25 +0100)
committerSUTER Frederic <frederic.suter@cc.in2p3.fr>
Thu, 20 Jan 2022 14:17:58 +0000 (15:17 +0100)
52 files changed:
examples/c/app-token-ring/app-token-ring.c
examples/c/comm-waitall/comm-waitall.c
examples/cpp/replay-comm/s4u-replay-comm.cpp
examples/smpi/energy/energy.tesh
examples/smpi/replay/replay.cpp
examples/smpi/replay_multiple/replay_multiple.cpp
examples/smpi/replay_multiple/replay_multiple.tesh
examples/smpi/smpi_s4u_masterworker/masterworker_mailbox_smpi.cpp
examples/smpi/smpi_s4u_masterworker/s4u_smpi.tesh
src/kernel/activity/ActivityImpl.cpp
src/kernel/activity/CommImpl.cpp
src/kernel/activity/ExecImpl.cpp
src/kernel/activity/IoImpl.cpp
src/kernel/activity/MailboxImpl.cpp
src/kernel/lmm/fair_bottleneck.cpp
src/kernel/lmm/maxmin.cpp
src/kernel/routing/ClusterZone.cpp
src/kernel/routing/DijkstraZone.cpp
src/kernel/routing/DragonflyZone.cpp
src/kernel/routing/EmptyZone.cpp
src/kernel/routing/FatTreeZone.cpp
src/kernel/routing/FloydZone.cpp
src/kernel/routing/FullZone.cpp
src/kernel/routing/NetPoint.cpp
src/kernel/routing/NetZoneImpl.cpp
src/kernel/routing/RoutedZone.cpp
src/kernel/routing/StarZone.cpp
src/kernel/routing/TorusZone.cpp
src/kernel/routing/VivaldiZone.cpp
src/kernel/routing/WifiZone.cpp
src/plugins/host_dvfs.cpp
src/plugins/host_energy.cpp
src/plugins/host_load.cpp
src/plugins/link_energy.cpp
src/plugins/link_energy_wifi.cpp
src/plugins/link_load.cpp
src/s4u/s4u_Host.cpp
src/simix/libsmx.cpp
src/simix/popping.cpp
src/simix/popping_generated.cpp
src/simix/simcalls.py
teshsuite/mc/mutex-handling/mutex-handling.cpp
teshsuite/models/cloud-sharing/cloud-sharing.cpp
teshsuite/models/cloud-sharing/cloud-sharing.tesh
teshsuite/s4u/cloud-two-execs/cloud-two-execs.cpp
teshsuite/s4u/pid/pid.cpp
teshsuite/s4u/trace-integration/trace-integration.cpp
teshsuite/s4u/trace-integration/trace-integration.tesh
teshsuite/s4u/vm-live-migration/vm-live-migration.tesh
teshsuite/surf/maxmin_bench/maxmin_bench.cpp
teshsuite/surf/maxmin_bench/maxmin_bench_medium.tesh
teshsuite/surf/maxmin_bench/maxmin_bench_small.tesh

index 0ee1977..3eef350 100644 (file)
@@ -15,7 +15,7 @@
 #include <stddef.h>
 #include <stdio.h>
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(app_token_ring, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(app_token_ring, "Messages specific for this example");
 
 /* Main function of all actors used in this example */
 static void relay_runner(int argc, char* argv[])
index c4a8173..15257d9 100644 (file)
@@ -15,7 +15,7 @@
 
 #include <stdio.h> /* snprintf */
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(comm_waitall, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(comm_waitall, "Messages specific for this example");
 
 static void sender(int argc, char* argv[])
 {
index c9f854f..c9a6172 100644 (file)
@@ -10,7 +10,7 @@
 #include <cinttypes>
 #include <string>
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(replay_comm, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(replay_comm, "Messages specific for this example");
 
 #define ACT_DEBUG(...)                                                                                                 \
   if (XBT_LOG_ISENABLED(replay_comm, xbt_log_priority_verbose)) {                                                   \
index 8c7e204..2554c05 100644 (file)
@@ -15,7 +15,7 @@ $ ${bindir:=.}/../smpi_script/bin/smpirun -np 2 -hostfile ${srcdir:=.}/hostfile
 > [30.000000] [rank 1] Current pstate: 2; Current power: 20000000
 > [80.000000] [rank 0] Energy consumed: 8650 Joules.
 > [80.000000] [rank 1] Energy consumed: 12900 Joules.
-> [80.000000] [surf_energy/INFO] Total energy consumption: 29550.000000 Joules (used hosts: 21550.000000 Joules; unused/idle hosts: 8000.000000)
-> [80.000000] [surf_energy/INFO] Energy consumption of host MyHost1: 8650.000000 Joules
-> [80.000000] [surf_energy/INFO] Energy consumption of host MyHost2: 12900.000000 Joules
-> [80.000000] [surf_energy/INFO] Energy consumption of host MyHost3: 8000.000000 Joules
+> [80.000000] [host_energy/INFO] Total energy consumption: 29550.000000 Joules (used hosts: 21550.000000 Joules; unused/idle hosts: 8000.000000)
+> [80.000000] [host_energy/INFO] Energy consumption of host MyHost1: 8650.000000 Joules
+> [80.000000] [host_energy/INFO] Energy consumption of host MyHost2: 12900.000000 Joules
+> [80.000000] [host_energy/INFO] Energy consumption of host MyHost3: 8000.000000 Joules
index 1d37b5a..4fdc723 100644 (file)
@@ -10,7 +10,7 @@
 #include "xbt/str.h"
 
 #include "xbt/log.h"
-XBT_LOG_NEW_DEFAULT_CATEGORY(replay_test, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(replay_test, "Messages specific for this example");
 
 /* This shows how to extend the trace format by adding a new kind of events.
    This function is registered through xbt_replay_action_register() below. */
index bd985d1..2bf3e03 100644 (file)
@@ -14,7 +14,7 @@
 #include <sstream>
 #include <string>
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(replay_multiple, "Messages specific for this example");
 
 static void smpi_replay(int argc, char* argv[])
 {
index d41cac1..40ec3aa 100644 (file)
@@ -8,7 +8,7 @@ p This test needs maxmin/concurrency-limit=100 because it starts 64 hosts on 5 m
 $ ./replay_multiple description_file ${srcdir:=.}/../../platforms/small_platform_with_routers.xml ${bindir:=.}/deployment.xml --log=smpi.:info --cfg=maxmin/concurrency-limit:100
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'maxmin/concurrency-limit' to '100'
 > [0.000000] [smpi_config/INFO] You did not set the power of the host running the simulation.  The timings will certainly not be accurate.  Use the option "--cfg=smpi/host-speed:<flops>" to set its value.  Check https://simgrid.org/doc/latest/Configuring_SimGrid.html#automatic-benchmarking-of-smpi-code for more information.
-> [0.000000] [msg_test/INFO] Initializing instance 1 of size 32
-> [0.000000] [msg_test/INFO] Initializing instance 2 of size 32
+> [0.000000] [replay_multiple/INFO] Initializing instance 1 of size 32
+> [0.000000] [replay_multiple/INFO] Initializing instance 2 of size 32
 > [Ginette:2:(34) 37334.835108] [smpi_replay/INFO] Simulation time 10479.078382
-> [37334.835108] [msg_test/INFO] Simulation time 37334.8
+> [37334.835108] [replay_multiple/INFO] Simulation time 37334.8
index 99f1c6b..2dab28f 100644 (file)
@@ -9,7 +9,7 @@
 #include <array>
 #include <cstdio> /* snprintf */
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(smpi_masterworkers, "Messages specific for this example");
 
 static void master(std::vector<std::string> args)
 {
index 4e84d1b..554a3f7 100644 (file)
@@ -3,42 +3,42 @@ p Test the use of SMPI+MSG in the same file, as well as several different SMPI i
 $ ./masterworker_mailbox_smpi ${srcdir:=.}/../../platforms/small_platform_with_routers.xml ${srcdir:=.}/deployment_masterworker_mailbox_smpi.xml --log=smpi.:info --cfg=smpi/simulate-computation:no
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'smpi/simulate-computation' to 'no'
 > [0.000000] [smpi_config/INFO] You did not set the power of the host running the simulation.  The timings will certainly not be accurate.  Use the option "--cfg=smpi/host-speed:<flops>" to set its value.  Check https://simgrid.org/doc/latest/Configuring_SimGrid.html#automatic-benchmarking-of-smpi-code for more information.
-> [Ginette:master_mpi:(4) 0.000000] [msg_test/INFO] here for rank 0
-> [Bourassa:master_mpi:(5) 0.000000] [msg_test/INFO] here for rank 1
-> [Ginette:alltoall_mpi:(6) 0.000000] [msg_test/INFO] alltoall for rank 0
-> [Bourassa:alltoall_mpi:(7) 0.000000] [msg_test/INFO] alltoall for rank 1
-> [Jupiter:alltoall_mpi:(8) 0.000000] [msg_test/INFO] alltoall for rank 2
-> [Fafard:alltoall_mpi:(9) 0.000000] [msg_test/INFO] alltoall for rank 3
-> [Tremblay:master:(1) 0.000000] [msg_test/INFO] Got 2 workers and 20 tasks to process
-> [Tremblay:master:(1) 0.000000] [msg_test/INFO] Sending task 0 of 20 to mailbox 'Ginette'
-> [Ginette:master_mpi:(4) 0.000000] [msg_test/INFO] After comm 0
-> [Ginette:master_mpi:(4) 0.000000] [msg_test/INFO] After finalize 0 0
-> [Bourassa:master_mpi:(5) 0.016871] [msg_test/INFO] After comm 1
-> [Bourassa:master_mpi:(5) 0.016871] [msg_test/INFO] After finalize 1 0
-> [Ginette:alltoall_mpi:(6) 0.100236] [msg_test/INFO] after alltoall 0
-> [Fafard:alltoall_mpi:(9) 0.100642] [msg_test/INFO] after alltoall 3
-> [Tremblay:master:(1) 0.125471] [msg_test/INFO] Sending task 1 of 20 to mailbox 'Jupiter'
-> [Bourassa:alltoall_mpi:(7) 0.129102] [msg_test/INFO] after alltoall 1
-> [Jupiter:alltoall_mpi:(8) 0.129378] [msg_test/INFO] after alltoall 2
-> [Tremblay:master:(1) 0.294626] [msg_test/INFO] Sending task 2 of 20 to mailbox 'Ginette'
-> [Tremblay:master:(1) 1.280301] [msg_test/INFO] Sending task 3 of 20 to mailbox 'Jupiter'
-> [Tremblay:master:(1) 1.449456] [msg_test/INFO] Sending task 4 of 20 to mailbox 'Ginette'
-> [Tremblay:master:(1) 2.435131] [msg_test/INFO] Sending task 5 of 20 to mailbox 'Jupiter'
-> [Tremblay:master:(1) 2.604286] [msg_test/INFO] Sending task 6 of 20 to mailbox 'Ginette'
-> [Tremblay:master:(1) 3.589961] [msg_test/INFO] Sending task 7 of 20 to mailbox 'Jupiter'
-> [Tremblay:master:(1) 3.759116] [msg_test/INFO] Sending task 8 of 20 to mailbox 'Ginette'
-> [Tremblay:master:(1) 4.744791] [msg_test/INFO] Sending task 9 of 20 to mailbox 'Jupiter'
-> [Tremblay:master:(1) 4.913945] [msg_test/INFO] Sending task 10 of 20 to mailbox 'Ginette'
-> [Tremblay:master:(1) 5.899621] [msg_test/INFO] Sending task 11 of 20 to mailbox 'Jupiter'
-> [Tremblay:master:(1) 6.068775] [msg_test/INFO] Sending task 12 of 20 to mailbox 'Ginette'
-> [Tremblay:master:(1) 7.054451] [msg_test/INFO] Sending task 13 of 20 to mailbox 'Jupiter'
-> [Tremblay:master:(1) 7.223605] [msg_test/INFO] Sending task 14 of 20 to mailbox 'Ginette'
-> [Tremblay:master:(1) 8.209280] [msg_test/INFO] Sending task 15 of 20 to mailbox 'Jupiter'
-> [Tremblay:master:(1) 8.378435] [msg_test/INFO] Sending task 16 of 20 to mailbox 'Ginette'
-> [Tremblay:master:(1) 9.364110] [msg_test/INFO] Sending task 17 of 20 to mailbox 'Jupiter'
-> [Tremblay:master:(1) 9.533265] [msg_test/INFO] Sending task 18 of 20 to mailbox 'Ginette'
-> [Tremblay:master:(1) 10.518940] [msg_test/INFO] Sending task 19 of 20 to mailbox 'Jupiter'
-> [Tremblay:master:(1) 10.688095] [msg_test/INFO] All tasks have been dispatched. Request all workers to stop.
-> [Ginette:worker:(2) 11.566591] [msg_test/INFO] Exiting now.
-> [Jupiter:worker:(3) 11.585605] [msg_test/INFO] Exiting now.
-> [11.585605] [msg_test/INFO] Simulation time 11.5856
+> [Ginette:master_mpi:(4) 0.000000] [smpi_masterworkers/INFO] here for rank 0
+> [Bourassa:master_mpi:(5) 0.000000] [smpi_masterworkers/INFO] here for rank 1
+> [Ginette:alltoall_mpi:(6) 0.000000] [smpi_masterworkers/INFO] alltoall for rank 0
+> [Bourassa:alltoall_mpi:(7) 0.000000] [smpi_masterworkers/INFO] alltoall for rank 1
+> [Jupiter:alltoall_mpi:(8) 0.000000] [smpi_masterworkers/INFO] alltoall for rank 2
+> [Fafard:alltoall_mpi:(9) 0.000000] [smpi_masterworkers/INFO] alltoall for rank 3
+> [Tremblay:master:(1) 0.000000] [smpi_masterworkers/INFO] Got 2 workers and 20 tasks to process
+> [Tremblay:master:(1) 0.000000] [smpi_masterworkers/INFO] Sending task 0 of 20 to mailbox 'Ginette'
+> [Ginette:master_mpi:(4) 0.000000] [smpi_masterworkers/INFO] After comm 0
+> [Ginette:master_mpi:(4) 0.000000] [smpi_masterworkers/INFO] After finalize 0 0
+> [Bourassa:master_mpi:(5) 0.016871] [smpi_masterworkers/INFO] After comm 1
+> [Bourassa:master_mpi:(5) 0.016871] [smpi_masterworkers/INFO] After finalize 1 0
+> [Ginette:alltoall_mpi:(6) 0.100236] [smpi_masterworkers/INFO] after alltoall 0
+> [Fafard:alltoall_mpi:(9) 0.100642] [smpi_masterworkers/INFO] after alltoall 3
+> [Tremblay:master:(1) 0.125471] [smpi_masterworkers/INFO] Sending task 1 of 20 to mailbox 'Jupiter'
+> [Bourassa:alltoall_mpi:(7) 0.129102] [smpi_masterworkers/INFO] after alltoall 1
+> [Jupiter:alltoall_mpi:(8) 0.129378] [smpi_masterworkers/INFO] after alltoall 2
+> [Tremblay:master:(1) 0.294626] [smpi_masterworkers/INFO] Sending task 2 of 20 to mailbox 'Ginette'
+> [Tremblay:master:(1) 1.280301] [smpi_masterworkers/INFO] Sending task 3 of 20 to mailbox 'Jupiter'
+> [Tremblay:master:(1) 1.449456] [smpi_masterworkers/INFO] Sending task 4 of 20 to mailbox 'Ginette'
+> [Tremblay:master:(1) 2.435131] [smpi_masterworkers/INFO] Sending task 5 of 20 to mailbox 'Jupiter'
+> [Tremblay:master:(1) 2.604286] [smpi_masterworkers/INFO] Sending task 6 of 20 to mailbox 'Ginette'
+> [Tremblay:master:(1) 3.589961] [smpi_masterworkers/INFO] Sending task 7 of 20 to mailbox 'Jupiter'
+> [Tremblay:master:(1) 3.759116] [smpi_masterworkers/INFO] Sending task 8 of 20 to mailbox 'Ginette'
+> [Tremblay:master:(1) 4.744791] [smpi_masterworkers/INFO] Sending task 9 of 20 to mailbox 'Jupiter'
+> [Tremblay:master:(1) 4.913945] [smpi_masterworkers/INFO] Sending task 10 of 20 to mailbox 'Ginette'
+> [Tremblay:master:(1) 5.899621] [smpi_masterworkers/INFO] Sending task 11 of 20 to mailbox 'Jupiter'
+> [Tremblay:master:(1) 6.068775] [smpi_masterworkers/INFO] Sending task 12 of 20 to mailbox 'Ginette'
+> [Tremblay:master:(1) 7.054451] [smpi_masterworkers/INFO] Sending task 13 of 20 to mailbox 'Jupiter'
+> [Tremblay:master:(1) 7.223605] [smpi_masterworkers/INFO] Sending task 14 of 20 to mailbox 'Ginette'
+> [Tremblay:master:(1) 8.209280] [smpi_masterworkers/INFO] Sending task 15 of 20 to mailbox 'Jupiter'
+> [Tremblay:master:(1) 8.378435] [smpi_masterworkers/INFO] Sending task 16 of 20 to mailbox 'Ginette'
+> [Tremblay:master:(1) 9.364110] [smpi_masterworkers/INFO] Sending task 17 of 20 to mailbox 'Jupiter'
+> [Tremblay:master:(1) 9.533265] [smpi_masterworkers/INFO] Sending task 18 of 20 to mailbox 'Ginette'
+> [Tremblay:master:(1) 10.518940] [smpi_masterworkers/INFO] Sending task 19 of 20 to mailbox 'Jupiter'
+> [Tremblay:master:(1) 10.688095] [smpi_masterworkers/INFO] All tasks have been dispatched. Request all workers to stop.
+> [Ginette:worker:(2) 11.566591] [smpi_masterworkers/INFO] Exiting now.
+> [Jupiter:worker:(3) 11.585605] [smpi_masterworkers/INFO] Exiting now.
+> [11.585605] [smpi_masterworkers/INFO] Simulation time 11.5856
index 15d184a..ea59bd5 100644 (file)
@@ -14,7 +14,7 @@
 #include <boost/range/algorithm.hpp>
 #include <cmath> // isfinite()
 
-XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ker_actor);
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_activity, kernel, "Kernel activity-related synchronization");
 
 namespace simgrid {
 namespace kernel {
index 651167b..39fe618 100644 (file)
@@ -16,7 +16,7 @@
 #include "src/kernel/resource/StandardLinkImpl.hpp"
 #include "src/mc/mc_replay.hpp"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_network, simix, "SIMIX network-related synchronization");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_network, kernel, "Kernel network-related synchronization");
 
 XBT_PRIVATE void simcall_HANDLER_comm_send(smx_simcall_t simcall, smx_actor_t src, smx_mailbox_t mbox, double task_size,
                                            double rate, unsigned char* src_buff, size_t src_buff_size,
index 6bfc2b7..85ab1e9 100644 (file)
@@ -15,7 +15,7 @@
 #include "src/mc/mc_replay.hpp"
 #include "src/surf/HostImpl.hpp"
 
-XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ker_actor);
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_cpu, kernel, "Kernel cpu-related synchronization");
 
 namespace simgrid {
 namespace kernel {
index f2c5bdc..8d96916 100644 (file)
@@ -17,7 +17,7 @@
 #include "src/kernel/resource/DiskImpl.hpp"
 #include "src/mc/mc_replay.hpp"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_io, simix, "Logging specific to SIMIX (io)");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_io, kernel, "Kernel io-related synchronization");
 
 namespace simgrid {
 namespace kernel {
index 93b1a19..4c672cb 100644 (file)
@@ -8,7 +8,7 @@
 
 #include <unordered_map>
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_mailbox, simix, "Mailbox implementation");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_mailbox, kernel, "Mailbox implementation");
 
 /******************************************************************************/
 /*                           Rendez-Vous Points                               */
index ffc1c05..951e8db 100644 (file)
@@ -13,7 +13,7 @@
 #include <cstdlib>
 #include <xbt/utility.hpp>
 
-XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_maxmin);
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ker_lmm);
 
 void simgrid::kernel::lmm::FairBottleneck::bottleneck_solve()
 {
@@ -51,7 +51,7 @@ void simgrid::kernel::lmm::FairBottleneck::bottleneck_solve()
   auto& var_list  = saturated_variable_set;
   auto& cnst_list = saturated_constraint_set;
   do {
-    if (XBT_LOG_ISENABLED(surf_maxmin, xbt_log_priority_debug)) {
+    if (XBT_LOG_ISENABLED(ker_lmm, xbt_log_priority_debug)) {
       XBT_DEBUG("Fair bottleneck done");
       print();
     }
@@ -140,7 +140,7 @@ void simgrid::kernel::lmm::FairBottleneck::bottleneck_solve()
 
   cnst_list.clear();
   modified_ = true;
-  if (XBT_LOG_ISENABLED(surf_maxmin, xbt_log_priority_debug)) {
+  if (XBT_LOG_ISENABLED(ker_lmm, xbt_log_priority_debug)) {
     XBT_DEBUG("Fair bottleneck done");
     print();
   }
index 6b86fe0..485159d 100644 (file)
@@ -7,7 +7,7 @@
 #include <boost/core/demangle.hpp>
 #include <typeinfo>
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_maxmin, surf, "Logging specific to SURF (maxmin)");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_lmm, kernel, "Kernel Linear Max-Min solver");
 
 double sg_maxmin_precision = 1E-5; /* Change this with --cfg=maxmin/precision:VALUE */
 double sg_surf_precision   = 1E-9; /* Change this with --cfg=surf/precision:VALUE */
@@ -55,7 +55,7 @@ void Element::increase_concurrency()
 void System::check_concurrency() const
 {
   // These checks are very expensive, so do them only if we want to debug SURF LMM
-  if (not XBT_LOG_ISENABLED(surf_maxmin, xbt_log_priority_debug))
+  if (not XBT_LOG_ISENABLED(ker_lmm, xbt_log_priority_debug))
     return;
 
   for (Constraint const& cnst : constraint_set) {
@@ -657,7 +657,7 @@ template <class CnstList> void System::lmm_solve(CnstList& cnst_list)
   if (selective_update_active)
     remove_all_modified_set();
 
-  if (XBT_LOG_ISENABLED(surf_maxmin, xbt_log_priority_debug)) {
+  if (XBT_LOG_ISENABLED(ker_lmm, xbt_log_priority_debug)) {
     print();
   }
 
@@ -720,7 +720,7 @@ int Variable::get_min_concurrency_slack() const
 // loops (after doing the first for enabling==1, and before doing the last for disabling==1)
 void System::enable_var(Variable* var)
 {
-  xbt_assert(not XBT_LOG_ISENABLED(surf_maxmin, xbt_log_priority_debug) || var->can_enable());
+  xbt_assert(not XBT_LOG_ISENABLED(ker_lmm, xbt_log_priority_debug) || var->can_enable());
 
   var->sharing_penalty_ = var->staged_penalty_;
   var->staged_penalty_  = 0;
index 17dd8c8..4a51f60 100644 (file)
@@ -8,7 +8,7 @@
 #include "simgrid/kernel/routing/RoutedZone.hpp"
 #include "src/kernel/resource/StandardLinkImpl.hpp"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_cluster, surf, "Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_cluster, ker_routing, "Kernel Cluster Routing");
 
 /* This routing is specifically setup to represent clusters, aka homogeneous sets of machines
  * Note that a router is created, easing the interconnection with the rest of the world. */
index 9654a49..c46b5f3 100644 (file)
@@ -13,7 +13,7 @@
 #include <queue>
 #include <vector>
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_dijkstra, surf, "Routing part of surf -- dijkstra routing logic");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_dijkstra, ker_routing, "Kernel Dijkstra Routing");
 
 namespace simgrid {
 namespace kernel {
index d9bc3ff..8273672 100644 (file)
@@ -12,7 +12,7 @@
 #include <numeric>
 #include <string>
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_cluster_dragonfly, surf_route_cluster, "Dragonfly Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_dragonfly, ker_routing, "Kernel Dragonfly Routing");
 
 namespace simgrid {
 namespace kernel {
index c0c0ff1..9489a8b 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "simgrid/kernel/routing/EmptyZone.hpp"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_none, surf, "Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_none, ker_routing, "Kernel No Routing");
 
 namespace simgrid {
 namespace kernel {
index 0218b3b..2183e2f 100644 (file)
@@ -17,7 +17,7 @@
 #include <boost/algorithm/string/classification.hpp>
 #include <boost/algorithm/string/split.hpp>
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_fat_tree, surf, "Routing for fat trees");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_fat_tree, ker_routing, "Kernel Fat-Tree Routing");
 
 namespace simgrid {
 namespace kernel {
@@ -135,7 +135,7 @@ void FatTreeZone::do_seal()
   if (this->levels_ == 0) {
     return;
   }
-  if (not XBT_LOG_ISENABLED(surf_route_fat_tree, xbt_log_priority_debug)) {
+  if (not XBT_LOG_ISENABLED(ker_routing_fat_tree, xbt_log_priority_debug)) {
     return;
   }
 
@@ -192,7 +192,7 @@ bool FatTreeZone::are_related(FatTreeNode* parent, FatTreeNode* child) const
 {
   std::stringstream msgBuffer;
 
-  if (XBT_LOG_ISENABLED(surf_route_fat_tree, xbt_log_priority_debug)) {
+  if (XBT_LOG_ISENABLED(ker_routing_fat_tree, xbt_log_priority_debug)) {
     msgBuffer << "Are " << child->id << "(" << child->level << "," << child->position << ") <";
 
     for (unsigned int i = 0; i < this->levels_; i++) {
@@ -291,7 +291,7 @@ void FatTreeZone::generate_labels()
     }
 
     for (unsigned int j = 0; j < this->nodes_by_level_[i]; j++) {
-      if (XBT_LOG_ISENABLED(surf_route_fat_tree, xbt_log_priority_debug)) {
+      if (XBT_LOG_ISENABLED(ker_routing_fat_tree, xbt_log_priority_debug)) {
         std::stringstream msgBuffer;
 
         msgBuffer << "Assigning label <";
index a37f01a..0fea4c0 100644 (file)
@@ -11,7 +11,7 @@
 
 #include <climits>
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_floyd, surf, "Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_floyd, ker_routing, "Kernel Floyd Routing");
 
 namespace simgrid {
 namespace kernel {
index d38853a..c716b8f 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "src/kernel/resource/StandardLinkImpl.hpp"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_full, surf, "Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_full, ker_routing, "Kernel Full Routing");
 
 namespace simgrid {
 namespace kernel {
index 2a0aeef..003a87f 100644 (file)
@@ -9,7 +9,7 @@
 #include "simgrid/s4u/Host.hpp"
 #include "xbt/log.h"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_netpoint, ker_routing, "Kernel implementation of netpoints");
 
 namespace simgrid {
 
index 78d5afd..39b6936 100644 (file)
@@ -16,7 +16,8 @@
 #include "src/surf/HostImpl.hpp"
 
 #include "src/kernel/resource/StandardLinkImpl.hpp"
-XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_route);
+
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing, kernel, "Kernel routing-related information");
 
 namespace simgrid {
 namespace kernel {
index 236df2b..021c7b8 100644 (file)
@@ -11,7 +11,7 @@
 #include "xbt/log.h"
 #include "xbt/sysdep.h"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_routing_generic, surf_route, "Generic implementation of the surf routing");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_generic, ker_routing, "Kernel Generic Routing");
 
 /* ***************************************************************** */
 /* *********************** GENERIC METHODS ************************* */
index e180ff0..ddbbd50 100644 (file)
@@ -9,7 +9,7 @@
 #include "src/kernel/resource/StandardLinkImpl.hpp"
 #include "xbt/string.hpp"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_star, surf, "Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_star, ker_routing, "Kernel Star Routing");
 
 namespace simgrid {
 namespace kernel {
index a2007bb..4e19277 100644 (file)
@@ -14,7 +14,7 @@
 #include <string>
 #include <vector>
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_cluster_torus, surf_route_cluster, "Torus Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_torus, ker_routing, "Kernel Torus Routing");
 
 namespace simgrid {
 namespace kernel {
index 2150b24..e8b8117 100644 (file)
@@ -12,7 +12,7 @@
 
 #include <boost/algorithm/string.hpp>
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_vivaldi, surf, "Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_vivaldi, ker_routing, "Kernel Vivaldi Routing");
 
 namespace simgrid {
 namespace kernel {
index 413c0e7..b5925e3 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "src/kernel/resource/StandardLinkImpl.hpp"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_wifi, surf, "Routing part of surf");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_routing_wifi, ker_routing, "Kernel Wifi Routing");
 
 namespace simgrid {
 namespace kernel {
index 8d3ef16..e378837 100644 (file)
@@ -63,7 +63,7 @@ static simgrid::config::Flag<int>
 
 */
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_plugin_dvfs, surf, "Logging specific to the SURF HostDvfs plugin");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(host_dvfs, kernel, "Logging specific to the HostDvfs plugin");
 
 namespace simgrid {
 namespace plugin {
index b01fc31..4fbb275 100644 (file)
@@ -110,7 +110,7 @@ before you can get accurate energy predictions.
   @endrst
  */
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_energy, surf, "Logging specific to the SURF energy plugin");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(host_energy, kernel, "Logging specific to the host energy plugin");
 
 // Forwards declaration needed to make this function a friend (because friends have external linkage by default)
 static void on_simulation_end();
index 5ec7671..1d7282d 100644 (file)
@@ -32,7 +32,7 @@ It attaches an extension to each host to store some data, and places callbacks i
   @endrst
 */
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_plugin_load, surf, "Logging specific to the HostLoad plugin");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(host_load, kernel, "Logging specific to the HostLoad plugin");
 
 namespace simgrid {
 namespace plugin {
index e528c0d..23f6de0 100644 (file)
@@ -39,7 +39,7 @@ SIMGRID_REGISTER_PLUGIN(link_energy, "Link energy consumption.", &sg_link_energy
  and then use the following function to retrieve the consumption of a given link: sg_link_get_consumed_energy().
  */
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(link_energy, surf, "Logging specific to the SURF LinkEnergy plugin");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(link_energy, kernel, "Logging specific to the LinkEnergy plugin");
 
 namespace simgrid {
 namespace plugin {
index de7c075..2a57a2b 100644 (file)
@@ -20,7 +20,7 @@ SIMGRID_REGISTER_PLUGIN(link_energy_wifi, "Energy wifi test", &sg_wifi_energy_pl
  * This is the WiFi energy plugin, accounting for the dissipated energy of WiFi links.
  */
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(link_energy_wifi, surf, "Logging specific to the link energy wifi plugin");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(link_energy_wifi, kernel, "Logging specific to the link energy wifi plugin");
 
 namespace simgrid {
 namespace plugin {
index 9ecd464..d29e708 100644 (file)
@@ -32,7 +32,7 @@ SIMGRID_REGISTER_PLUGIN(link_load, "Link cumulated load.", &sg_link_load_plugin_
  - Reset the counters on any tracked link via sg_link_load_reset().
 */
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(link_load, surf, "Logging specific to the SURF LinkLoad plugin");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(link_load, kernel, "Logging specific to the LinkLoad plugin");
 
 namespace simgrid {
 namespace plugin {
index 00f359e..17b7f43 100644 (file)
@@ -20,7 +20,7 @@
 #include <string>
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_host, s4u, "Logging specific to the S4U hosts");
-XBT_LOG_EXTERNAL_CATEGORY(surf_route);
+XBT_LOG_EXTERNAL_CATEGORY(ker_routing);
 
 namespace simgrid {
 
@@ -171,11 +171,11 @@ void Host::route_to(const Host* dest, std::vector<Link*>& links, double* latency
 void Host::route_to(const Host* dest, std::vector<kernel::resource::StandardLinkImpl*>& links, double* latency) const
 {
   kernel::routing::NetZoneImpl::get_global_route(pimpl_netpoint_, dest->get_netpoint(), links, latency);
-  if (XBT_LOG_ISENABLED(surf_route, xbt_log_priority_debug)) {
-    XBT_CDEBUG(surf_route, "Route from '%s' to '%s' (latency: %f):", get_cname(), dest->get_cname(),
+  if (XBT_LOG_ISENABLED(ker_routing, xbt_log_priority_debug)) {
+    XBT_CDEBUG(ker_routing, "Route from '%s' to '%s' (latency: %f):", get_cname(), dest->get_cname(),
                (latency == nullptr ? -1 : *latency));
     for (auto const* link : links)
-      XBT_CDEBUG(surf_route, "  Link '%s'", link->get_cname());
+      XBT_CDEBUG(ker_routing, "  Link '%s'", link->get_cname());
   }
 }
 
index c9d23dc..198250b 100644 (file)
@@ -24,7 +24,6 @@
 #include <boost/core/demangle.hpp>
 #include <string>
 #include <typeinfo>
-XBT_LOG_NEW_CATEGORY(simix, "All SIMIX categories");
 
 unsigned int simcall_execution_waitany_for(simgrid::kernel::activity::ExecImpl* execs[], size_t count,
                                            double timeout) // XBT_ATTRIB_DEPRECATED_v331
index 090b1b2..b32b394 100644 (file)
@@ -6,8 +6,7 @@
 #include "src/simix/popping_private.hpp"
 #include "xbt/log.h"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_popping, simix,
-                                "Popping part of SIMIX (transmuting from user request into kernel handlers)");
+XBT_LOG_NEW_DEFAULT_CATEGORY(simix, "transmuting from user request into kernel handlers");
 
 void SIMIX_run_kernel(std::function<void()> const* code)
 {
index 8ac5571..b5e566d 100644 (file)
@@ -24,7 +24,7 @@
 #include "src/kernel/actor/SimcallObserver.hpp"
 #include "src/kernel/context/Context.hpp"
 
-XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_popping);
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix);
 
 using simgrid::simix::Simcall;
 /** @brief Simcalls' names (generated from src/simix/simcalls.in) */
index 62358d0..ef75a13 100755 (executable)
@@ -318,7 +318,7 @@ if __name__ == '__main__':
     fd.write('#include "src/kernel/context/Context.hpp"\n')
 
     fd.write('\n')
-    fd.write('XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_popping);\n\n')
+    fd.write('XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix);\n\n')
 
     fd.write('using simgrid::simix::Simcall;')
     fd.write('\n')
index 7c12bc8..cd09206 100644 (file)
@@ -24,7 +24,7 @@
 #include "simgrid/s4u/Mailbox.hpp"
 #include "simgrid/s4u/Mutex.hpp"
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(mutex_handling, "Messages specific for this test");
 
 static int receiver(const char* box_name)
 {
index 5aa5d0a..9ceadae 100644 (file)
@@ -9,7 +9,7 @@
 #include "simgrid/s4u/VirtualMachine.hpp"
 #include <cmath>
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this test");
 
 const int FAIL_ON_ERROR = 0;
 const int flop_amount   = 100000000; // 100Mf, so that computing this on a 1Gf core takes exactly 0.1s
index 2a84d83..acca33b 100644 (file)
@@ -210,28 +210,28 @@ $ ./cloud-sharing ${platfdir}/cluster_multi.xml
 >[node-0.1core.org:master:(1) 86.000000] [s4u_test/INFO] .
 >[node-0.1core.org:master:(1) 86.000000] [s4u_test/INFO] ## 0 test failed
 >[node-0.1core.org:master:(1) 86.000000] [s4u_test/INFO] .
->[86.000000] [surf_energy/INFO] Total energy consumption: 8.200000 Joules (used hosts: 8.200000 Joules; unused/idle hosts: 0.000000)
->[86.000000] [surf_energy/INFO] Energy consumption of host node-0.1core.org: 0.800000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-0.2cores.org: 3.700000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-0.4cores.org: 3.600000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-1.1core.org: 0.100000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-1.2cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-1.4cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-2.1core.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-2.2cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-2.4cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-3.1core.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-3.2cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-3.4cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-4.1core.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-4.2cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-4.4cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-5.1core.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-5.2cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-5.4cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-6.1core.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-6.2cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-6.4cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-7.1core.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-7.2cores.org: 0.000000 Joules
->[86.000000] [surf_energy/INFO] Energy consumption of host node-7.4cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Total energy consumption: 8.200000 Joules (used hosts: 8.200000 Joules; unused/idle hosts: 0.000000)
+>[86.000000] [host_energy/INFO] Energy consumption of host node-0.1core.org: 0.800000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-0.2cores.org: 3.700000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-0.4cores.org: 3.600000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-1.1core.org: 0.100000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-1.2cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-1.4cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-2.1core.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-2.2cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-2.4cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-3.1core.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-3.2cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-3.4cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-4.1core.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-4.2cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-4.4cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-5.1core.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-5.2cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-5.4cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-6.1core.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-6.2cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-6.4cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-7.1core.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-7.2cores.org: 0.000000 Joules
+>[86.000000] [host_energy/INFO] Energy consumption of host node-7.4cores.org: 0.000000 Joules
index 5621a8c..adfd0f4 100644 (file)
@@ -5,7 +5,7 @@
 
 #include "simgrid/s4u.hpp"
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this example");
 
 simgrid::s4u::ExecPtr exec;
 
index f9aa7e8..6e18870 100644 (file)
@@ -5,7 +5,7 @@
 
 #include "simgrid/s4u.hpp"
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this example");
 
 static void sendpid()
 {
index dc24e39..0c7e384 100644 (file)
@@ -6,7 +6,7 @@
 
 #include "simgrid/s4u.hpp"
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(test_trace_integration, "Messages specific for this msg example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(test_trace_integration, "Messages specific for this example");
 
 /** test the trace integration cpu model */
 static void test_trace(std::vector<std::string> args)
index 0db4220..6899622 100644 (file)
@@ -4,7 +4,7 @@ p c=cycle s=step p=priority h=host
 p Testing trace integration using trace_B.txt and test-hbp1-c0s0-c0s1.xml, test_trace:start == trace_cycle_0_step_0, test_trace:end < trace_cycle_0_step_1
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s0-c0s1.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s0-c0s1.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -16,7 +16,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1-c0s1-c0s2.xml, test_trace:start == trace_cycle_0_step_1, test_trace:end < trace_cycle_0_step_2
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s1-c0s2.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s1-c0s2.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -28,7 +28,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1-c0s2-c1s0.xml, test_trace:start == trace_cycle_0_step_2, test_trace:end < trace_cycle_1_step_0
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s2-c1s0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s2-c1s0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -40,7 +40,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1-c0s0-c1s0.xml, test_trace:start == trace_cycle_0_step_0, test_trace:end < trace_cycle_1_step_0
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s0-c1s0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s0-c1s0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -52,7 +52,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1-c0s2-c1s1.xml, test_trace:start == trace_cycle_0_step_2, test_trace:end < trace_cycle_1_step_1
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s2-c1s1.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s2-c1s1.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -64,7 +64,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1-c0s1-c2s2.xml, test_trace:start == trace_cycle_0_step_1, test_trace:end < trace_cycle_2_step_2
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s1-c2s2.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c0s1-c2s2.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -76,7 +76,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1-c1s1-c1s2.xml, test_trace:start == trace_cycle_1_step_1, test_trace:end < trace_cycle_1_step_2
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c1s1-c1s2.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c1s1-c1s2.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -88,7 +88,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1-c1s1-c3s2.xml, test_trace:start == trace_cycle_1_step_1, test_trace:end < trace_cycle_3_step_2
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c1s1-c3s2.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1-c1s1-c3s2.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -100,7 +100,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1.5-hbp1.5.xml, two process with same priority
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1.5-hbp1.5.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1.5-hbp1.5.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -116,7 +116,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp2.5-hbp1.5.xml, two process with different priority
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp2.5-hbp1.5.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp2.5-hbp1.5.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -132,7 +132,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp2
 p Testing trace integration using trace_B.txt and test-hbp2.5-hbp1.5.xml, two process with different priority (included)
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_platform_with_availability_included.xml  ${srcdir:=.}/test-hbp2.5-hbp1.5.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_platform_with_availability_included.xml  ${srcdir:=.}/test-hbp2.5-hbp1.5.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -148,7 +148,7 @@ $ ./trace-integration ${platfdir}/two_hosts_platform_with_availability_included.
 p Testing trace integration using trace_B.txt and test-hbp1.0-hbp1.0-hbp1.0.xml, three process with same priority
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1.0-hbp1.0-hbp1.0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1.0-hbp1.0-hbp1.0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -168,7 +168,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1.0-hbp3.0-hbp4.0.xml, three process with different priority
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1.0-hbp3.0-hbp4.0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1.0-hbp3.0-hbp4.0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
@@ -188,7 +188,7 @@ $ ./trace-integration ${platfdir}/two_hosts_profiles.xml  ${srcdir:=.}/test-hbp1
 p Testing trace integration using trace_B.txt and test-hbp1.0-hbp3.0-hbp4.0.xml, three process with different priority (included)
 
 ! output sort
-$ ./trace-integration ${platfdir}/two_hosts_platform_with_availability_included.xml  ${srcdir:=.}/test-hbp1.0-hbp3.0-hbp4.0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI --log=simix.thresh:warning "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
+$ ./trace-integration ${platfdir}/two_hosts_platform_with_availability_included.xml  ${srcdir:=.}/test-hbp1.0-hbp3.0-hbp4.0.xml --cfg=host/model:compound --cfg=network/model:CM02 --cfg=cpu/optim:TI  "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
 > [  0.000000] (0:maestro@) Configuration change: Set 'host/model' to 'compound'
 > [  0.000000] (0:maestro@) Configuration change: Set 'network/model' to 'CM02'
 > [  0.000000] (0:maestro@) Configuration change: Set 'cpu/optim' to 'TI'
index 9b40676..ea04da4 100644 (file)
@@ -4,6 +4,6 @@ $ ./vm-live-migration ${srcdir}/platform.xml
 > [host1:migration:(2) 0.000000] [example/INFO] VM0 migration started
 > [host1:migration:(2) 1.000000] [example/INFO] VM 'VM0' migrated from 'host1' to 'host2'
 > [VM0:executor:(1) 3.000000] [example/INFO] Task done. It's running on VM0@host2 that runs at 2e+09f/s. host2 runs at 2e+09f/s
-> [3.000000] [surf_energy/INFO] Total energy consumption: 12.000000 Joules (used hosts: 12.000000 Joules; unused/idle hosts: 0.000000)
-> [3.000000] [surf_energy/INFO] Energy consumption of host host1: 4.000000 Joules
-> [3.000000] [surf_energy/INFO] Energy consumption of host host2: 8.000000 Joules
+> [3.000000] [host_energy/INFO] Total energy consumption: 12.000000 Joules (used hosts: 12.000000 Joules; unused/idle hosts: 0.000000)
+> [3.000000] [host_energy/INFO] Energy consumption of host host1: 4.000000 Joules
+> [3.000000] [host_energy/INFO] Energy consumption of host host2: 8.000000 Joules
index a2cc1ff..67717de 100644 (file)
@@ -137,11 +137,11 @@ int main(int argc, char **argv)
     mode=3;
 
   if(mode==1)
-    xbt_log_control_set("surf/maxmin.threshold:DEBUG surf/maxmin.fmt:\'[%r]: [%c/%p] %m%n\' "
-                        "surf.threshold:DEBUG surf.fmt:\'[%r]: [%c/%p] %m%n\' ");
+    xbt_log_control_set("ker_lmm.threshold:DEBUG ker_lmm.fmt:\'[%r]: [%c/%p] %m%n\' "
+                        "kernel.threshold:DEBUG kernel.fmt:\'[%r]: [%c/%p] %m%n\' ");
 
   if(mode==2)
-    xbt_log_control_set("surf/maxmin.threshold:DEBUG surf.threshold:DEBUG");
+    xbt_log_control_set("ker_lmm.threshold:DEBUG kernel.threshold:DEBUG");
 
   unsigned int nb_cnst= TestClasses[testclass][0];
   unsigned int nb_var= TestClasses[testclass][1];
index 5490940..98a0ab1 100644 (file)
 ! output sort
 $ ${bindir:=.}/maxmin_bench medium 5 test
 > Starting 0: (845)
-> [0.000000]: [surf_maxmin/DEBUG] Setting selective_update_active flag to 0
+> [0.000000]: [ker_lmm/DEBUG] Setting selective_update_active flag to 0
 > Starting to solve(353)
-> [0.000000]: [surf_maxmin/DEBUG] Active constraints : 100
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '39' usage: 23.134932 remaining: 2.116281 concurrency: 12<=13<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '75' usage: 18.507712 remaining: 3.572698 concurrency: 9<=10<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '46' usage: 17.325345 remaining: 6.944002 concurrency: 9<=10<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '25' usage: 17.916255 remaining: 5.331653 concurrency: 10<=10<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '71' usage: 19.481303 remaining: 3.013605 concurrency: 10<=10<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '1' usage: 16.318483 remaining: 9.971848 concurrency: 9<=10<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '93' usage: 18.188539 remaining: 2.336225 concurrency: 8<=9<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '73' usage: 16.269828 remaining: 3.266449 concurrency: 9<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '23' usage: 21.489847 remaining: 0.983468 concurrency: 11<=11<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '16' usage: 27.198881 remaining: 9.682616 concurrency: 13<=13<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '27' usage: 22.688002 remaining: 1.421201 concurrency: 12<=12<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '44' usage: 9.873107 remaining: 6.997584 concurrency: 4<=5<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '100' usage: 21.423903 remaining: 7.471216 concurrency: 11<=11<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '76' usage: 13.241625 remaining: 7.645926 concurrency: 7<=7<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '9' usage: 12.559901 remaining: 6.852195 concurrency: 5<=6<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '66' usage: 13.416108 remaining: 1.147460 concurrency: 9<=10<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '88' usage: 16.930558 remaining: 1.073653 concurrency: 8<=9<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '53' usage: 18.251764 remaining: 4.479802 concurrency: 9<=9<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '19' usage: 26.380432 remaining: 8.291469 concurrency: 14<=14<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '81' usage: 11.991138 remaining: 7.427648 concurrency: 5<=6<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '91' usage: 18.434739 remaining: 2.317585 concurrency: 10<=10<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '38' usage: 13.708452 remaining: 0.836230 concurrency: 8<=9<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '63' usage: 13.424493 remaining: 4.280912 concurrency: 8<=8<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '10' usage: 18.696579 remaining: 4.434529 concurrency: 8<=8<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '67' usage: 19.999816 remaining: 0.640673 concurrency: 9<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '51' usage: 14.712297 remaining: 0.298014 concurrency: 6<=7<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '30' usage: 14.801724 remaining: 9.888611 concurrency: 8<=8<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '24' usage: 18.525588 remaining: 6.716541 concurrency: 8<=10<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '37' usage: 18.052819 remaining: 5.247994 concurrency: 10<=10<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '87' usage: 16.333892 remaining: 0.198801 concurrency: 8<=9<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '84' usage: 34.348424 remaining: 7.538762 concurrency: 16<=16<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '40' usage: 8.193396 remaining: 2.989301 concurrency: 5<=7<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '64' usage: 15.628260 remaining: 0.116692 concurrency: 7<=7<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '7' usage: 8.249304 remaining: 3.967675 concurrency: 5<=6<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '54' usage: 17.788866 remaining: 8.921359 concurrency: 10<=10<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '35' usage: 32.641928 remaining: 2.936141 concurrency: 14<=15<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '41' usage: 18.516281 remaining: 0.533625 concurrency: 9<=9<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '83' usage: 15.609811 remaining: 2.303628 concurrency: 7<=7<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '57' usage: 12.924504 remaining: 3.477659 concurrency: 8<=9<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '48' usage: 17.931797 remaining: 7.654851 concurrency: 10<=10<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '82' usage: 26.165544 remaining: 6.968182 concurrency: 12<=12<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '28' usage: 17.959518 remaining: 8.346257 concurrency: 9<=10<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '74' usage: 17.407032 remaining: 0.090080 concurrency: 9<=9<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '62' usage: 18.270413 remaining: 3.565317 concurrency: 10<=10<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '86' usage: 14.202920 remaining: 1.242710 concurrency: 8<=8<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '11' usage: 17.989341 remaining: 0.273876 concurrency: 9<=9<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '17' usage: 22.905113 remaining: 0.928008 concurrency: 12<=12<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '45' usage: 16.114813 remaining: 5.334485 concurrency: 9<=9<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '12' usage: 16.089920 remaining: 9.139620 concurrency: 7<=8<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '61' usage: 13.715399 remaining: 3.488983 concurrency: 7<=8<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '26' usage: 18.319263 remaining: 6.918771 concurrency: 8<=9<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '34' usage: 18.482103 remaining: 9.085955 concurrency: 9<=9<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '90' usage: 16.443610 remaining: 8.600280 concurrency: 9<=9<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '15' usage: 19.961355 remaining: 7.783892 concurrency: 9<=10<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '69' usage: 18.386372 remaining: 3.798033 concurrency: 11<=11<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '72' usage: 16.960812 remaining: 7.727391 concurrency: 9<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '85' usage: 11.127546 remaining: 0.493042 concurrency: 6<=7<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '96' usage: 20.695537 remaining: 0.186473 concurrency: 10<=10<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '80' usage: 13.919767 remaining: 1.723405 concurrency: 8<=9<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '77' usage: 11.925941 remaining: 0.158212 concurrency: 5<=5<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '49' usage: 19.880942 remaining: 6.637946 concurrency: 10<=11<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '22' usage: 16.457289 remaining: 0.592432 concurrency: 8<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '79' usage: 15.738209 remaining: 9.973229 concurrency: 8<=8<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '56' usage: 10.937220 remaining: 6.522989 concurrency: 5<=6<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '21' usage: 15.809084 remaining: 2.730500 concurrency: 9<=10<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '31' usage: 14.616326 remaining: 2.984953 concurrency: 9<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '50' usage: 14.571069 remaining: 5.148891 concurrency: 9<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '20' usage: 14.337953 remaining: 8.296034 concurrency: 7<=8<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '43' usage: 18.424293 remaining: 9.565357 concurrency: 8<=8<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '70' usage: 18.920879 remaining: 9.033795 concurrency: 9<=10<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '3' usage: 23.763083 remaining: 3.023326 concurrency: 10<=11<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '32' usage: 19.844135 remaining: 7.892793 concurrency: 10<=10<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '78' usage: 21.962911 remaining: 8.316926 concurrency: 13<=13<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '58' usage: 12.467034 remaining: 6.378365 concurrency: 6<=6<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '8' usage: 19.379024 remaining: 8.463109 concurrency: 10<=11<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '65' usage: 3.001397 remaining: 6.216957 concurrency: 1<=2<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '29' usage: 19.844852 remaining: 0.341713 concurrency: 8<=8<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '68' usage: 20.473362 remaining: 5.783896 concurrency: 11<=12<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '18' usage: 14.893985 remaining: 8.763891 concurrency: 7<=8<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '47' usage: 17.464384 remaining: 5.406005 concurrency: 8<=8<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '59' usage: 22.388769 remaining: 8.833061 concurrency: 10<=11<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '4' usage: 15.502642 remaining: 2.360890 concurrency: 8<=9<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '14' usage: 19.880304 remaining: 9.391278 concurrency: 10<=10<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '98' usage: 16.729254 remaining: 8.071052 concurrency: 9<=10<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '33' usage: 11.603431 remaining: 0.733642 concurrency: 5<=5<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '36' usage: 21.608644 remaining: 1.194905 concurrency: 12<=13<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '60' usage: 19.699461 remaining: 6.477494 concurrency: 11<=11<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '99' usage: 22.508714 remaining: 4.269098 concurrency: 13<=13<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '42' usage: 15.704632 remaining: 6.139383 concurrency: 9<=10<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '94' usage: 15.529033 remaining: 5.857593 concurrency: 9<=9<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '92' usage: 15.425894 remaining: 8.420309 concurrency: 8<=8<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '52' usage: 16.677947 remaining: 9.034019 concurrency: 9<=10<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '5' usage: 15.074478 remaining: 3.965807 concurrency: 8<=9<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '95' usage: 6.911922 remaining: 4.179265 concurrency: 3<=3<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '6' usage: 10.581602 remaining: 3.879107 concurrency: 6<=6<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '13' usage: 14.565305 remaining: 5.586898 concurrency: 7<=8<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '55' usage: 13.880336 remaining: 3.976768 concurrency: 7<=8<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '89' usage: 18.295998 remaining: 5.098103 concurrency: 9<=9<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '97' usage: 8.983573 remaining: 2.897600 concurrency: 5<=6<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '2' usage: 16.593753 remaining: 0.001144 concurrency: 6<=6<=-1
-> [0.000000]: [surf_maxmin/DEBUG] var=28, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=30, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=36, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=39, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=42, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=50, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=76, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=78, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=88, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (28) value to 0.000069
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.000069, Var(28).penalty: 1.000000, Var(28).value: 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (30) value to 0.000069
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.000069, Var(30).penalty: 1.000000, Var(30).value: 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (36) value to 0.000069
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.000069, Var(36).penalty: 1.000000, Var(36).value: 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (39) value to 0.000069
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.000069, Var(39).penalty: 1.000000, Var(39).value: 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (42) value to 0.000069
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.000069, Var(42).penalty: 1.000000, Var(42).value: 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (50) value to 0.000069
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.000069, Var(50).penalty: 1.000000, Var(50).value: 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (76) value to 0.000069
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.000069, Var(76).penalty: 1.000000, Var(76).value: 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (78) value to 0.000069
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.000069, Var(78).penalty: 1.000000, Var(78).value: 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (88) value to 0.000069
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.000069, Var(88).penalty: 1.000000, Var(88).value: 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] index: 99     cnst_light_num: 100     || usage: 0.000000 remaining: 0.000000 bound: 0.001144
-> [0.000000]: [surf_maxmin/DEBUG] var=3, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=8, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=9, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=10, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=11, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=13, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=14, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=18, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=26, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=82, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (3) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(3).penalty: 1.000000, Var(3).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (8) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(8).penalty: 1.000000, Var(8).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (9) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(9).penalty: 1.000000, Var(9).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (10) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(10).penalty: 1.000000, Var(10).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (11) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(11).penalty: 1.000000, Var(11).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (13) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(13).penalty: 1.000000, Var(13).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (14) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(14).penalty: 1.000000, Var(14).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (18) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(18).penalty: 1.000000, Var(18).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (26) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(26).penalty: 1.000000, Var(26).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (82) value to 0.006163
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006163, Var(82).penalty: 1.000000, Var(82).value: 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] index: 42     cnst_light_num: 99      || usage: 0.000000 remaining: 0.000000 bound: 0.090080
-> [0.000000]: [surf_maxmin/DEBUG] var=7, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=12, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=21, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=31, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=40, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=49, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (7) value to 0.012099
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.012099, Var(7).penalty: 1.000000, Var(7).value: 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (12) value to 0.012099
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.012099, Var(12).penalty: 1.000000, Var(12).value: 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (21) value to 0.012099
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.012099, Var(21).penalty: 1.000000, Var(21).value: 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (31) value to 0.012099
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.012099, Var(31).penalty: 1.000000, Var(31).value: 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (40) value to 0.012099
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.012099, Var(40).penalty: 1.000000, Var(40).value: 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (49) value to 0.012099
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.012099, Var(49).penalty: 1.000000, Var(49).value: 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] index: 57     cnst_light_num: 98      || usage: 0.000000 remaining: 0.000000 bound: 0.186473
-> [0.000000]: [surf_maxmin/DEBUG] var=2, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.019293, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=19, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.019293, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (2) value to 0.019293
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.019293, Var(2).penalty: 1.000000, Var(2).value: 0.019293
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (19) value to 0.019293
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.019293, Var(19).penalty: 1.000000, Var(19).value: 0.019293
-> [0.000000]: [surf_maxmin/DEBUG] index: 32     cnst_light_num: 97      || usage: 0.000000 remaining: 0.000000 bound: 0.116692
-> [0.000000]: [surf_maxmin/DEBUG] index: 42     cnst_light_num: 96      || usage: 0.000000 remaining: 2.783556 bound: 2.897600
-> [0.000000]: [surf_maxmin/DEBUG] var=4, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.020365, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=22, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.020365, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=25, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.020365, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=38, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.020365, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (4) value to 0.020365
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.020365, Var(4).penalty: 1.000000, Var(4).value: 0.020365
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (22) value to 0.020365
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.020365, Var(22).penalty: 1.000000, Var(22).value: 0.020365
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (25) value to 0.020365
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.020365, Var(25).penalty: 1.000000, Var(25).value: 0.020365
-> [0.000000]: [surf_maxmin/DEBUG] index: 84     cnst_light_num: 95      || usage: 0.000000 remaining: 0.638113 bound: 0.733642
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (38) value to 0.020365
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.020365, Var(38).penalty: 1.000000, Var(38).value: 0.020365
-> [0.000000]: [surf_maxmin/DEBUG] index: 59     cnst_light_num: 94      || usage: 0.000000 remaining: 0.000000 bound: 0.158212
-> [0.000000]: [surf_maxmin/DEBUG] var=23, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.027475, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=29, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.027475, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=34, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.027475, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (23) value to 0.027475
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.027475, Var(23).penalty: 1.000000, Var(23).value: 0.027475
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (29) value to 0.027475
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.027475, Var(29).penalty: 1.000000, Var(29).value: 0.027475
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (34) value to 0.027475
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.027475, Var(34).penalty: 1.000000, Var(34).value: 0.027475
-> [0.000000]: [surf_maxmin/DEBUG] index: 25     cnst_light_num: 93      || usage: 0.000000 remaining: 0.000000 bound: 0.298014
-> [0.000000]: [surf_maxmin/DEBUG] var=5, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.030572, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=15, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.030572, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=20, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.030572, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (5) value to 0.030572
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.030572, Var(5).penalty: 1.000000, Var(5).value: 0.030572
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (15) value to 0.030572
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.030572, Var(15).penalty: 1.000000, Var(15).value: 0.030572
-> [0.000000]: [surf_maxmin/DEBUG] index: 36     cnst_light_num: 92      || usage: 0.000000 remaining: 0.267956 bound: 0.533625
-> [0.000000]: [surf_maxmin/DEBUG] index: 62     cnst_light_num: 91      || usage: 0.000000 remaining: 9.779088 bound: 9.973229
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (20) value to 0.030572
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.030572, Var(20).penalty: 1.000000, Var(20).value: 0.030572
-> [0.000000]: [surf_maxmin/DEBUG] index: 31     cnst_light_num: 90      || usage: 0.000000 remaining: 2.851407 bound: 2.989301
-> [0.000000]: [surf_maxmin/DEBUG] index: 76     cnst_light_num: 89      || usage: 0.000000 remaining: 0.000000 bound: 0.341713
-> [0.000000]: [surf_maxmin/DEBUG] var=87, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044062, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (87) value to 0.044062
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.044062, Var(87).penalty: 1.000000, Var(87).value: 0.044062
-> [0.000000]: [surf_maxmin/DEBUG] index: 45     cnst_light_num: 88      || usage: 0.000000 remaining: 0.000000 bound: 0.273876
-> [0.000000]: [surf_maxmin/DEBUG] index: 76     cnst_light_num: 87      || usage: 0.000000 remaining: 5.886658 bound: 6.139383
-> [0.000000]: [surf_maxmin/DEBUG] var=24, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.063103, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (24) value to 0.063103
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.063103, Var(24).penalty: 1.000000, Var(24).value: 0.063103
-> [0.000000]: [surf_maxmin/DEBUG] index: 62     cnst_light_num: 86      || usage: 0.000000 remaining: 8.159271 bound: 8.420309
-> [0.000000]: [surf_maxmin/DEBUG] index: 28     cnst_light_num: 85      || usage: 0.000000 remaining: 4.818691 bound: 5.247994
-> [0.000000]: [surf_maxmin/DEBUG] index: 31     cnst_light_num: 84      || usage: 0.000000 remaining: 5.607641 bound: 5.857593
-> [0.000000]: [surf_maxmin/DEBUG] index: 29     cnst_light_num: 83      || usage: 0.000000 remaining: 0.000000 bound: 0.198801
-> [0.000000]: [surf_maxmin/DEBUG] index: 67     cnst_light_num: 82      || usage: 0.000000 remaining: 8.057214 bound: 8.296034
-> [0.000000]: [surf_maxmin/DEBUG] var=6, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.113551, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=17, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.113551, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=27, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.113551, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=100, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.113551, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (6) value to 0.113551
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.113551, Var(6).penalty: 1.000000, Var(6).value: 0.113551
-> [0.000000]: [surf_maxmin/DEBUG] index: 77     cnst_light_num: 81      || usage: 0.000000 remaining: 5.218475 bound: 5.783896
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (17) value to 0.113551
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.113551, Var(17).penalty: 1.000000, Var(17).value: 0.113551
-> [0.000000]: [surf_maxmin/DEBUG] index: 21     cnst_light_num: 80      || usage: 0.000000 remaining: 0.388630 bound: 0.836230
-> [0.000000]: [surf_maxmin/DEBUG] index: 75     cnst_light_num: 79      || usage: 0.000000 remaining: 6.017457 bound: 6.216957
-> [0.000000]: [surf_maxmin/DEBUG] index: 31     cnst_light_num: 78      || usage: 0.000000 remaining: 7.606683 bound: 8.071052
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (27) value to 0.113551
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.113551, Var(27).penalty: 1.000000, Var(27).value: 0.113551
-> [0.000000]: [surf_maxmin/DEBUG] index: 51     cnst_light_num: 77      || usage: 0.000000 remaining: 8.718926 bound: 9.085955
-> [0.000000]: [surf_maxmin/DEBUG] index: 66     cnst_light_num: 76      || usage: 0.000000 remaining: 4.794121 bound: 5.148891
-> [0.000000]: [surf_maxmin/DEBUG] index: 50     cnst_light_num: 75      || usage: 0.000000 remaining: 6.460026 bound: 6.918771
-> [0.000000]: [surf_maxmin/DEBUG] index: 60     cnst_light_num: 74      || usage: 0.000000 remaining: 6.067488 bound: 6.637946
-> [0.000000]: [surf_maxmin/DEBUG] index: 43     cnst_light_num: 73      || usage: 0.000000 remaining: 3.146097 bound: 3.565317
-> [0.000000]: [surf_maxmin/DEBUG] index: 25     cnst_light_num: 72      || usage: 0.000000 remaining: 3.602642 bound: 3.965807
-> [0.000000]: [surf_maxmin/DEBUG] index: 52     cnst_light_num: 71      || usage: 0.000000 remaining: 8.198326 bound: 8.600280
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (100) value to 0.113551
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.113551, Var(100).penalty: 1.000000, Var(100).value: 0.113551
-> [0.000000]: [surf_maxmin/DEBUG] index: 68     cnst_light_num: 70      || usage: 0.000000 remaining: 9.103700 bound: 9.565357
-> [0.000000]: [surf_maxmin/DEBUG] index: 21     cnst_light_num: 69      || usage: 0.000000 remaining: 4.752302 bound: 5.406005
-> [0.000000]: [surf_maxmin/DEBUG] index: 51     cnst_light_num: 68      || usage: 0.000000 remaining: 5.995961 bound: 6.477494
-> [0.000000]: [surf_maxmin/DEBUG] index: 34     cnst_light_num: 67      || usage: 0.000000 remaining: 8.390153 bound: 8.921359
-> [0.000000]: [surf_maxmin/DEBUG] index: 22     cnst_light_num: 66      || usage: 0.000000 remaining: 3.919797 bound: 4.280912
-> [0.000000]: [surf_maxmin/DEBUG] index: 43     cnst_light_num: 65      || usage: 0.000000 remaining: 7.833335 bound: 8.316926
-> [0.000000]: [surf_maxmin/DEBUG] index: 60     cnst_light_num: 64      || usage: 0.000000 remaining: 6.178238 bound: 6.378365
-> [0.000000]: [surf_maxmin/DEBUG] index: 46     cnst_light_num: 63      || usage: 0.000000 remaining: 0.000000 bound: 0.928008
-> [0.000000]: [surf_maxmin/DEBUG] var=16, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.129552, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (16) value to 0.129552
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.129552, Var(16).penalty: 1.000000, Var(16).value: 0.129552
-> [0.000000]: [surf_maxmin/DEBUG] index: 59     cnst_light_num: 62      || usage: 0.000000 remaining: 3.478739 bound: 4.179265
-> [0.000000]: [surf_maxmin/DEBUG] index: 58     cnst_light_num: 61      || usage: 0.000000 remaining: 1.386297 bound: 1.723405
-> [0.000000]: [surf_maxmin/DEBUG] index: 49     cnst_light_num: 60      || usage: 0.000000 remaining: 3.121491 bound: 3.488983
-> [0.000000]: [surf_maxmin/DEBUG] index: 31     cnst_light_num: 59      || usage: 0.000000 remaining: 8.191805 bound: 8.833061
-> [0.000000]: [surf_maxmin/DEBUG] index: 57     cnst_light_num: 58      || usage: 0.000000 remaining: 4.410861 bound: 5.098103
-> [0.000000]: [surf_maxmin/DEBUG] index: 49     cnst_light_num: 57      || usage: 0.000000 remaining: 0.000000 bound: 0.592432
-> [0.000000]: [surf_maxmin/DEBUG] index: 25     cnst_light_num: 56      || usage: 0.000000 remaining: 7.334506 bound: 7.892793
-> [0.000000]: [surf_maxmin/DEBUG] index: 38     cnst_light_num: 55      || usage: 0.000000 remaining: 3.071667 bound: 3.477659
-> [0.000000]: [surf_maxmin/DEBUG] index: 36     cnst_light_num: 54      || usage: 0.000000 remaining: 8.569378 bound: 9.034019
-> [0.000000]: [surf_maxmin/DEBUG] index: 29     cnst_light_num: 53      || usage: 0.000000 remaining: 8.800536 bound: 9.391278
-> [0.000000]: [surf_maxmin/DEBUG] var=32, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.178987, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (32) value to 0.178987
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.178987, Var(32).penalty: 1.000000, Var(32).value: 0.178987
-> [0.000000]: [surf_maxmin/DEBUG] index: 36     cnst_light_num: 52      || usage: 0.000000 remaining: 7.287142 bound: 7.783892
-> [0.000000]: [surf_maxmin/DEBUG] index: 24     cnst_light_num: 51      || usage: 0.000000 remaining: 0.066420 bound: 0.640673
-> [0.000000]: [surf_maxmin/DEBUG] index: 49     cnst_light_num: 50      || usage: 0.000000 remaining: 0.000000 bound: 0.493042
-> [0.000000]: [surf_maxmin/DEBUG] index: 42     cnst_light_num: 49      || usage: 0.000000 remaining: 4.998275 bound: 5.586898
-> [0.000000]: [surf_maxmin/DEBUG] index: 33     cnst_light_num: 48      || usage: 0.000000 remaining: 3.581372 bound: 3.967675
-> [0.000000]: [surf_maxmin/DEBUG] index: 32     cnst_light_num: 47      || usage: 0.000000 remaining: 3.263646 bound: 3.976768
-> [0.000000]: [surf_maxmin/DEBUG] index: 40     cnst_light_num: 46      || usage: 0.000000 remaining: 6.250569 bound: 6.968182
-> [0.000000]: [surf_maxmin/DEBUG] index: 36     cnst_light_num: 45      || usage: 0.000000 remaining: 1.526940 bound: 2.360890
-> [0.000000]: [surf_maxmin/DEBUG] index: 24     cnst_light_num: 44      || usage: 0.000000 remaining: 7.111978 bound: 8.463109
-> [0.000000]: [surf_maxmin/DEBUG] index: 36     cnst_light_num: 43      || usage: 0.000000 remaining: 0.392880 bound: 1.242710
-> [0.000000]: [surf_maxmin/DEBUG] index: 26     cnst_light_num: 42      || usage: 0.000000 remaining: 9.193374 bound: 9.888611
-> [0.000000]: [surf_maxmin/DEBUG] index: 25     cnst_light_num: 41      || usage: 0.000000 remaining: 6.847590 bound: 7.727391
-> [0.000000]: [surf_maxmin/DEBUG] index: 22     cnst_light_num: 40      || usage: 0.000000 remaining: 2.505546 bound: 2.984953
-> [0.000000]: [surf_maxmin/DEBUG] index: 25     cnst_light_num: 39      || usage: 0.000000 remaining: 3.505253 bound: 4.269098
-> [0.000000]: [surf_maxmin/DEBUG] index: 32     cnst_light_num: 38      || usage: 0.000000 remaining: 0.735570 bound: 1.194905
-> [0.000000]: [surf_maxmin/DEBUG] var=1, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.240619, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=90, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.240619, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (1) value to 0.240619
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.240619, Var(1).penalty: 1.000000, Var(1).value: 0.240619
-> [0.000000]: [surf_maxmin/DEBUG] index: 0      cnst_light_num: 37      || usage: 0.000000 remaining: 1.067608 bound: 2.116281
-> [0.000000]: [surf_maxmin/DEBUG] index: 1      cnst_light_num: 36      || usage: 0.000000 remaining: 2.660215 bound: 3.572698
-> [0.000000]: [surf_maxmin/DEBUG] index: 2      cnst_light_num: 35      || usage: 0.000000 remaining: 6.051824 bound: 6.944002
-> [0.000000]: [surf_maxmin/DEBUG] index: 3      cnst_light_num: 34      || usage: 0.000000 remaining: 4.142217 bound: 5.331653
-> [0.000000]: [surf_maxmin/DEBUG] index: 4      cnst_light_num: 33      || usage: 0.000000 remaining: 2.089471 bound: 3.013605
-> [0.000000]: [surf_maxmin/DEBUG] index: 5      cnst_light_num: 32      || usage: 0.000000 remaining: 9.675459 bound: 9.971848
-> [0.000000]: [surf_maxmin/DEBUG] index: 6      cnst_light_num: 31      || usage: 0.000000 remaining: 1.464022 bound: 2.336225
-> [0.000000]: [surf_maxmin/DEBUG] index: 7      cnst_light_num: 30      || usage: 0.000000 remaining: 2.361413 bound: 3.266449
-> [0.000000]: [surf_maxmin/DEBUG] index: 10     cnst_light_num: 29      || usage: 0.000000 remaining: 0.206981 bound: 1.421201
-> [0.000000]: [surf_maxmin/DEBUG] index: 14     cnst_light_num: 28      || usage: 0.000000 remaining: 5.925434 bound: 6.852195
-> [0.000000]: [surf_maxmin/DEBUG] index: 12     cnst_light_num: 27      || usage: 0.000000 remaining: 6.467453 bound: 7.471216
-> [0.000000]: [surf_maxmin/DEBUG] index: 15     cnst_light_num: 26      || usage: 0.000000 remaining: 0.528882 bound: 1.147460
-> [0.000000]: [surf_maxmin/DEBUG] index: 11     cnst_light_num: 25      || usage: 0.000000 remaining: 6.043090 bound: 6.997584
-> [0.000000]: [surf_maxmin/DEBUG] index: 16     cnst_light_num: 24      || usage: 0.000000 remaining: 0.137015 bound: 1.073653
-> [0.000000]: [surf_maxmin/DEBUG] index: 18     cnst_light_num: 23      || usage: 0.000000 remaining: 7.156679 bound: 8.291469
-> [0.000000]: [surf_maxmin/DEBUG] index: 19     cnst_light_num: 22      || usage: 0.000000 remaining: 6.445574 bound: 7.427648
-> [0.000000]: [surf_maxmin/DEBUG] index: 20     cnst_light_num: 21      || usage: 0.000000 remaining: 1.709186 bound: 2.317585
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (90) value to 0.240619
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.240619, Var(90).penalty: 1.000000, Var(90).value: 0.240619
-> [0.000000]: [surf_maxmin/DEBUG] index: 5      cnst_light_num: 20      || usage: 0.000000 remaining: 6.067744 bound: 6.522989
-> [0.000000]: [surf_maxmin/DEBUG] index: 11     cnst_light_num: 19      || usage: 0.000000 remaining: 1.774307 bound: 2.730500
-> [0.000000]: [surf_maxmin/DEBUG] index: 17     cnst_light_num: 18      || usage: 0.000000 remaining: 2.879034 bound: 4.479802
-> [0.000000]: [surf_maxmin/DEBUG] index: 8      cnst_light_num: 17      || usage: 0.000000 remaining: 0.000000 bound: 0.983468
-> [0.000000]: [surf_maxmin/DEBUG] index: 14     cnst_light_num: 16      || usage: 0.000000 remaining: 5.759572 bound: 6.716541
-> [0.000000]: [surf_maxmin/DEBUG] index: 8      cnst_light_num: 15      || usage: 0.000000 remaining: 3.484649 bound: 4.434529
-> [0.000000]: [surf_maxmin/DEBUG] index: 11     cnst_light_num: 14      || usage: 0.000000 remaining: 7.266561 bound: 7.654851
-> [0.000000]: [surf_maxmin/DEBUG] index: 7      cnst_light_num: 13      || usage: 0.000000 remaining: 1.997650 bound: 3.023326
-> [0.000000]: [surf_maxmin/DEBUG] index: 1      cnst_light_num: 12      || usage: 0.000000 remaining: 1.639393 bound: 2.936141
-> [0.000000]: [surf_maxmin/DEBUG] index: 5      cnst_light_num: 11      || usage: 0.000000 remaining: 8.141912 bound: 9.033795
-> [0.000000]: [surf_maxmin/DEBUG] index: 8      cnst_light_num: 10      || usage: 0.000000 remaining: 2.797747 bound: 3.798033
-> [0.000000]: [surf_maxmin/DEBUG] index: 6      cnst_light_num: 9       || usage: 0.000000 remaining: 4.925453 bound: 7.538762
-> [0.000000]: [surf_maxmin/DEBUG] index: 3      cnst_light_num: 8       || usage: 0.000000 remaining: 4.119743 bound: 5.334485
-> [0.000000]: [surf_maxmin/DEBUG] index: 6      cnst_light_num: 7       || usage: 0.000000 remaining: 8.191982 bound: 9.682616
-> [0.000000]: [surf_maxmin/DEBUG] index: 2      cnst_light_num: 6       || usage: 0.000000 remaining: 8.252791 bound: 8.763891
-> [0.000000]: [surf_maxmin/DEBUG] index: 3      cnst_light_num: 5       || usage: 0.000000 remaining: 7.340042 bound: 8.346257
-> [0.000000]: [surf_maxmin/DEBUG] index: 1      cnst_light_num: 4       || usage: 0.000000 remaining: 6.272851 bound: 7.645926
-> [0.000000]: [surf_maxmin/DEBUG] index: 1      cnst_light_num: 3       || usage: 0.000000 remaining: 1.448255 bound: 2.303628
-> [0.000000]: [surf_maxmin/DEBUG] index: 1      cnst_light_num: 2       || usage: 0.000000 remaining: 3.095332 bound: 3.879107
-> [0.000000]: [surf_maxmin/DEBUG] index: 0      cnst_light_num: 1       || usage: 0.000000 remaining: 8.573010 bound: 9.139620
-> [0.000000]: [surf_maxmin/DEBUG] MAX-MIN ( '100'(1.000000) '90'(1.000000) '88'(1.000000) '87'(1.000000) '82'(1.000000) '78'(1.000000) '76'(1.000000) '50'(1.000000) '49'(1.000000) '42'(1.000000) '40'(1.000000) '39'(1.000000) '38'(1.000000) '36'(1.000000) '34'(1.000000) '32'(1.000000) '31'(1.000000) '30'(1.000000) '29'(1.000000) '28'(1.000000) '27'(1.000000) '26'(1.000000) '25'(1.000000) '24'(1.000000) '23'(1.000000) '22'(1.000000) '21'(1.000000) '20'(1.000000) '19'(1.000000) '18'(1.000000) '17'(1.000000) '16'(1.000000) '15'(1.000000) '14'(1.000000) '13'(1.000000) '12'(1.000000) '11'(1.000000) '10'(1.000000) '9'(1.000000) '8'(1.000000) '7'(1.000000) '6'(1.000000) '5'(1.000000) '4'(1.000000) '3'(1.000000) '2'(1.000000) '1'(1.000000) '33'(0.000000) '35'(0.000000) '37'(0.000000) '41'(0.000000) '43'(0.000000) '44'(0.000000) '45'(0.000000) '46'(0.000000) '47'(0.000000) '48'(0.000000) '51'(0.000000) '52'(0.000000) '53'(0.000000) '54'(0.000000) '55'(0.000000) '56'(0.000000) '57'(0.000000) '58'(0.000000) '59'(0.000000) '60'(0.000000) '61'(0.000000) '62'(0.000000) '63'(0.000000) '64'(0.000000) '65'(0.000000) '66'(0.000000) '67'(0.000000) '68'(0.000000) '69'(0.000000) '70'(0.000000) '71'(0.000000) '72'(0.000000) '73'(0.000000) '74'(0.000000) '75'(0.000000) '77'(0.000000) '79'(0.000000) '80'(0.000000) '81'(0.000000) '83'(0.000000) '84'(0.000000) '85'(0.000000) '86'(0.000000) '89'(0.000000) '91'(0.000000) '92'(0.000000) '93'(0.000000) '94'(0.000000) '95'(0.000000) '96'(0.000000) '97'(0.000000) '98'(0.000000) '99'(0.000000) )
-> [0.000000]: [surf_maxmin/DEBUG] Constraints
-> [0.000000]: [surf_maxmin/DEBUG]      (1.297879.'88'(0.000069) + 0.916271.'49'(0.012099) + 1.526967.'39'(0.000069) + 1.729887.'38'(0.020365) + 1.281100.'32'(0.178987) + 1.748356.'31'(0.012099) + 1.891618.'28'(0.000069) + 1.124029.'27'(0.113551) + 0.518519.'26'(0.006163) + 2.988088.'26'(0.006163) + 1.347184.'22'(0.020365) + 0.840580.'18'(0.006163) + 1.088904.'17'(0.113551) + 1.016175.'15'(0.030572) + 0.354314.'13'(0.006163) + 2.177278.'6'(0.113551) + 0.655051.'4'(0.020365) + 0.632733.'1'(0.240619) + 0.621028.'51'(0.000000) + 1.671412.'64'(0.000000) + 1.239743.'66'(0.000000) + 1.417212.'70'(0.000000) + 2.377538.'71'(0.000000) + 0.244423.'71'(0.000000) + 2.098518.'77'(0.000000) + 2.145691.'80'(0.000000) + 0.752112.'83'(0.000000) + 1.911794.'84'(0.000000) + 1.866781.'85'(0.000000) + 0.721991.'91'(0.000000) + 2.444267.'97'(0.000000) + 0.989651.'98'(0.000000) + 0) <= 2.116281 ('39')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.909797.'82'(0.006163) + 1.823013.'42'(0.000069) + 2.107213.'34'(0.027475) + 1.607995.'18'(0.006163) + 2.613369.'12'(0.012099) + 2.067163.'7'(0.012099) + 0.216818.'6'(0.113551) + 2.697628.'6'(0.113551) + 1.225033.'5'(0.030572) + 1.651882.'2'(0.019293) + 1.587801.'1'(0.240619) + 0.362909.'48'(0.000000) + 0.976717.'57'(0.000000) + 1.189523.'58'(0.000000) + 1.301711.'65'(0.000000) + 2.025516.'68'(0.000000) + 1.272786.'69'(0.000000) + 1.872021.'71'(0.000000) + 0.356784.'71'(0.000000) + 1.923451.'73'(0.000000) + 1.852550.'75'(0.000000) + 1.771579.'85'(0.000000) + 0.813574.'86'(0.000000) + 0.080435.'91'(0.000000) + 1.428175.'97'(0.000000) + 1.659642.'99'(0.000000) + 0) <= 3.572698 ('75')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.068549.'34'(0.027475) + 1.615785.'29'(0.027475) + 1.576644.'27'(0.113551) + 2.358442.'13'(0.006163) + 2.863593.'9'(0.006163) + 1.554199.'6'(0.113551) + 2.323730.'3'(0.006163) + 2.428546.'2'(0.019293) + 1.535856.'1'(0.240619) + 1.478849.'35'(0.000000) + 0.338710.'35'(0.000000) + 1.265801.'44'(0.000000) + 0.608467.'46'(0.000000) + 2.096804.'52'(0.000000) + 0.534833.'52'(0.000000) + 1.145875.'54'(0.000000) + 1.089862.'57'(0.000000) + 2.321734.'59'(0.000000) + 1.361919.'80'(0.000000) + 1.134466.'81'(0.000000) + 0.561975.'86'(0.000000) + 1.314230.'91'(0.000000) + 0.739081.'93'(0.000000) + 1.132757.'94'(0.000000) + 0) <= 6.944002 ('46')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.471157.'100'(0.113551) + 1.827448.'49'(0.012099) + 2.088986.'38'(0.020365) + 1.520193.'32'(0.178987) + 1.817948.'27'(0.113551) + 1.649740.'24'(0.063103) + 1.180135.'22'(0.020365) + 0.650011.'21'(0.012099) + 2.001106.'12'(0.012099) + 2.446473.'9'(0.006163) + 1.263057.'1'(0.240619) + 2.161355.'37'(0.000000) + 1.551889.'43'(0.000000) + 0.556812.'57'(0.000000) + 2.037451.'80'(0.000000) + 2.396411.'91'(0.000000) + 1.530804.'94'(0.000000) + 0) <= 5.331653 ('25')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.628480.'100'(0.113551) + 1.955050.'88'(0.000069) + 0.570097.'87'(0.044062) + 1.925527.'36'(0.000069) + 1.738056.'27'(0.113551) + 1.081955.'26'(0.006163) + 1.234649.'26'(0.006163) + 1.845992.'25'(0.020365) + 1.927213.'22'(0.020365) + 1.261680.'17'(0.113551) + 0.308714.'12'(0.012099) + 0.329799.'4'(0.020365) + 2.780516.'4'(0.020365) + 0.893575.'1'(0.240619) + 1.296498.'45'(0.000000) + 1.096067.'54'(0.000000) + 1.654531.'59'(0.000000) + 1.625805.'65'(0.000000) + 1.592879.'70'(0.000000) + 0.678078.'83'(0.000000) + 1.635282.'85'(0.000000) + 1.083636.'86'(0.000000) + 1.579435.'94'(0.000000) + 0) <= 3.013605 ('71')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.293046.'88'(0.000069) + 1.506159.'50'(0.000069) + 0.175789.'39'(0.000069) + 0.745875.'30'(0.000069) + 1.993478.'29'(0.027475) + 1.139358.'26'(0.006163) + 1.166618.'25'(0.020365) + 0.837716.'16'(0.129552) + 1.607368.'13'(0.006163) + 2.034158.'10'(0.006163) + 2.591113.'9'(0.006163) + 1.014317.'7'(0.012099) + 0.213488.'1'(0.240619) + 2.970221.'41'(0.000000) + 1.037448.'43'(0.000000) + 1.354941.'45'(0.000000) + 0.671782.'47'(0.000000) + 2.419070.'54'(0.000000) + 1.013054.'55'(0.000000) + 0.961739.'58'(0.000000) + 1.457930.'59'(0.000000) + 0.203310.'62'(0.000000) + 1.251378.'69'(0.000000) + 1.659311.'72'(0.000000) + 1.466975.'74'(0.000000) + 2.040489.'77'(0.000000) + 1.931628.'79'(0.000000) + 1.788263.'80'(0.000000) + 1.620051.'84'(0.000000) + 1.207535.'95'(0.000000) + 0.910275.'96'(0.000000) + 0) <= 9.971848 ('1')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.990586.'39'(0.000069) + 2.131411.'24'(0.063103) + 0.621902.'22'(0.020365) + 2.086164.'20'(0.030572) + 0.210336.'16'(0.129552) + 1.491874.'9'(0.006163) + 2.003255.'7'(0.012099) + 1.106248.'5'(0.030572) + 2.092315.'4'(0.020365) + 0.824322.'2'(0.019293) + 2.737673.'2'(0.019293) + 1.892454.'1'(0.240619) + 1.528484.'47'(0.000000) + 1.803000.'68'(0.000000) + 0.922888.'85'(0.000000) + 0.955092.'97'(0.000000) + 2.198722.'99'(0.000000) + 0) <= 2.336225 ('93')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.967166.'49'(0.012099) + 1.346883.'40'(0.012099) + 1.787764.'34'(0.027475) + 0.939045.'29'(0.027475) + 1.520401.'23'(0.027475) + 1.264815.'17'(0.113551) + 1.877503.'14'(0.006163) + 0.163844.'9'(0.006163) + 2.127624.'6'(0.113551) + 0.522525.'5'(0.030572) + 1.488141.'4'(0.020365) + 1.264118.'1'(0.240619) + 2.480001.'35'(0.000000) + 2.116358.'44'(0.000000) + 1.342816.'46'(0.000000) + 0.375253.'70'(0.000000) + 1.241586.'83'(0.000000) + 2.342744.'85'(0.000000) + 2.789068.'91'(0.000000) + 0.846732.'93'(0.000000) + 1.820806.'94'(0.000000) + 0.822933.'95'(0.000000) + 0) <= 3.266449 ('73')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.374460.'100'(0.113551) + 1.271968.'90'(0.240619) + 1.031001.'82'(0.006163) + 2.651630.'78'(0.000069) + 1.115624.'39'(0.000069) + 1.987671.'39'(0.000069) + 0.744092.'34'(0.027475) + 2.409392.'16'(0.129552) + 1.960181.'14'(0.006163) + 2.084344.'12'(0.012099) + 2.195351.'10'(0.006163) + 2.174691.'8'(0.006163) + 0.489442.'1'(0.240619) + 2.295264.'41'(0.000000) + 0.706952.'44'(0.000000) + 1.310850.'47'(0.000000) + 1.295424.'55'(0.000000) + 1.681472.'57'(0.000000) + 2.626108.'64'(0.000000) + 1.059154.'75'(0.000000) + 1.711404.'79'(0.000000) + 1.423176.'81'(0.000000) + 1.259892.'89'(0.000000) + 2.882970.'95'(0.000000) + 0.062303.'95'(0.000000) + 1.901460.'97'(0.000000) + 0) <= 0.983468 ('23')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.089073.'90'(0.240619) + 1.377723.'82'(0.006163) + 1.501099.'36'(0.000069) + 1.566816.'32'(0.178987) + 0.455171.'31'(0.012099) + 2.400881.'25'(0.020365) + 1.312747.'24'(0.063103) + 1.333604.'22'(0.020365) + 2.079396.'21'(0.012099) + 0.966348.'20'(0.030572) + 2.973575.'20'(0.030572) + 2.552978.'9'(0.006163) + 2.848576.'8'(0.006163) + 2.382727.'7'(0.012099) + 1.358167.'1'(0.240619) + 2.252873.'41'(0.000000) + 0.938153.'41'(0.000000) + 1.442083.'48'(0.000000) + 1.705100.'51'(0.000000) + 0.760684.'53'(0.000000) + 1.453240.'57'(0.000000) + 1.171455.'62'(0.000000) + 1.009564.'64'(0.000000) + 0.996080.'67'(0.000000) + 0.826062.'68'(0.000000) + 1.170504.'69'(0.000000) + 2.283628.'71'(0.000000) + 1.412631.'74'(0.000000) + 1.289621.'75'(0.000000) + 1.770571.'94'(0.000000) + 1.934213.'96'(0.000000) + 0) <= 9.682616 ('16')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.451938.'34'(0.027475) + 2.348301.'28'(0.000069) + 2.321913.'25'(0.020365) + 1.166203.'21'(0.012099) + 1.928864.'21'(0.012099) + 1.152245.'19'(0.019293) + 1.176884.'17'(0.113551) + 2.231214.'16'(0.129552) + 1.380075.'13'(0.006163) + 0.200704.'11'(0.006163) + 2.402722.'9'(0.006163) + 1.009861.'5'(0.030572) + 0.636972.'4'(0.020365) + 2.280106.'1'(0.240619) + 0.407059.'47'(0.000000) + 2.136955.'48'(0.000000) + 0.624151.'51'(0.000000) + 1.138944.'56'(0.000000) + 0.044674.'56'(0.000000) + 0.611510.'57'(0.000000) + 1.517609.'59'(0.000000) + 0.005066.'61'(0.000000) + 0.172940.'62'(0.000000) + 0.361219.'63'(0.000000) + 1.196244.'63'(0.000000) + 1.653000.'67'(0.000000) + 1.867473.'72'(0.000000) + 0.063037.'74'(0.000000) + 1.022687.'83'(0.000000) + 0.843967.'86'(0.000000) + 0.273728.'96'(0.000000) + 1.121571.'99'(0.000000) + 0) <= 1.421201 ('27')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.282944.'38'(0.020365) + 0.875056.'21'(0.012099) + 1.880093.'20'(0.030572) + 0.949451.'11'(0.006163) + 1.405174.'7'(0.012099) + 0.729518.'1'(0.240619) + 2.750872.'1'(0.240619) + 0.967214.'33'(0.000000) + 1.786924.'45'(0.000000) + 2.669057.'48'(0.000000) + 1.502766.'51'(0.000000) + 0.635543.'66'(0.000000) + 1.400005.'80'(0.000000) + 1.908932.'92'(0.000000) + 0.911225.'95'(0.000000) + 0) <= 6.997584 ('44')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.859435.'87'(0.044062) + 1.112539.'82'(0.006163) + 1.942066.'78'(0.000069) + 1.226852.'76'(0.000069) + 2.203665.'49'(0.012099) + 0.609859.'34'(0.027475) + 1.055293.'23'(0.027475) + 1.321830.'21'(0.012099) + 0.426936.'20'(0.030572) + 3.184384.'20'(0.030572) + 1.882636.'11'(0.006163) + 0.256845.'10'(0.006163) + 1.496148.'7'(0.012099) + 0.235187.'1'(0.240619) + 2.610228.'1'(0.240619) + 0.808781.'35'(0.000000) + 0.398358.'43'(0.000000) + 3.052329.'44'(0.000000) + 0.159341.'44'(0.000000) + 2.742266.'53'(0.000000) + 0.666959.'56'(0.000000) + 0.906072.'59'(0.000000) + 2.693020.'63'(0.000000) + 0.618776.'63'(0.000000) + 1.759322.'64'(0.000000) + 1.797596.'69'(0.000000) + 1.546218.'79'(0.000000) + 1.361142.'84'(0.000000) + 2.094517.'93'(0.000000) + 1.048093.'94'(0.000000) + 1.477117.'98'(0.000000) + 0) <= 7.471216 ('100')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.696311.'90'(0.240619) + 2.710744.'90'(0.240619) + 1.714649.'76'(0.000069) + 0.850707.'49'(0.012099) + 1.123535.'19'(0.019293) + 1.420998.'15'(0.030572) + 1.786187.'8'(0.006163) + 1.891303.'6'(0.113551) + 1.047192.'1'(0.240619) + 2.245833.'47'(0.000000) + 2.881645.'48'(0.000000) + 0.949332.'48'(0.000000) + 2.402856.'52'(0.000000) + 1.900451.'53'(0.000000) + 1.893361.'60'(0.000000) + 1.495817.'63'(0.000000) + 1.778625.'64'(0.000000) + 1.468467.'68'(0.000000) + 1.411231.'93'(0.000000) + 2.184968.'94'(0.000000) + 0.224696.'96'(0.000000) + 0.623887.'98'(0.000000) + 0) <= 7.645926 ('76')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.017429.'34'(0.027475) + 0.157783.'29'(0.027475) + 0.973398.'29'(0.027475) + 2.126873.'25'(0.020365) + 1.606617.'20'(0.030572) + 0.550112.'6'(0.113551) + 0.694245.'5'(0.030572) + 1.717338.'3'(0.006163) + 2.716106.'1'(0.240619) + 2.037810.'43'(0.000000) + 0.583833.'44'(0.000000) + 1.786650.'47'(0.000000) + 0.774482.'51'(0.000000) + 0.701641.'52'(0.000000) + 1.507556.'56'(0.000000) + 0.280515.'62'(0.000000) + 1.627654.'65'(0.000000) + 2.305341.'73'(0.000000) + 1.410695.'92'(0.000000) + 1.369417.'96'(0.000000) + 2.442714.'99'(0.000000) + 1.137198.'99'(0.000000) + 0) <= 6.852195 ('9')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.437753.'76'(0.000069) + 2.572019.'40'(0.012099) + 1.273060.'38'(0.020365) + 1.346666.'30'(0.000069) + 1.344666.'29'(0.027475) + 1.635187.'24'(0.063103) + 0.418773.'20'(0.030572) + 1.247009.'17'(0.113551) + 1.059261.'8'(0.006163) + 1.081714.'1'(0.240619) + 1.916068.'43'(0.000000) + 1.314464.'46'(0.000000) + 0.606001.'61'(0.000000) + 0.953358.'62'(0.000000) + 1.466826.'66'(0.000000) + 1.898705.'67'(0.000000) + 2.367769.'68'(0.000000) + 1.802833.'70'(0.000000) + 2.513629.'84'(0.000000) + 0.655352.'85'(0.000000) + 1.159274.'89'(0.000000) + 0.346980.'94'(0.000000) + 0) <= 1.147460 ('66')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.706985.'49'(0.012099) + 2.612417.'34'(0.027475) + 0.881196.'30'(0.000069) + 1.498422.'28'(0.000069) + 1.572255.'26'(0.006163) + 1.355517.'14'(0.006163) + 1.137912.'12'(0.012099) + 0.773891.'10'(0.006163) + 0.450373.'6'(0.113551) + 3.405388.'6'(0.113551) + 1.536201.'1'(0.240619) + 1.382135.'37'(0.000000) + 1.888770.'44'(0.000000) + 1.402926.'44'(0.000000) + 1.577593.'46'(0.000000) + 1.242118.'48'(0.000000) + 0.580563.'51'(0.000000) + 2.455880.'53'(0.000000) + 0.935311.'54'(0.000000) + 2.199448.'55'(0.000000) + 2.496439.'58'(0.000000) + 2.663869.'61'(0.000000) + 1.233912.'63'(0.000000) + 1.423775.'71'(0.000000) + 2.670074.'84'(0.000000) + 0.924323.'85'(0.000000) + 1.069458.'89'(0.000000) + 1.537240.'95'(0.000000) + 1.439465.'96'(0.000000) + 2.408669.'98'(0.000000) + 0) <= 1.073653 ('88')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.663073.'90'(0.240619) + 1.001294.'76'(0.000069) + 2.168043.'39'(0.000069) + 2.162021.'31'(0.012099) + 1.942576.'27'(0.113551) + 0.354202.'24'(0.063103) + 1.628371.'23'(0.027475) + 0.101710.'16'(0.129552) + 2.084462.'16'(0.129552) + 1.346757.'15'(0.030572) + 0.678199.'12'(0.012099) + 0.840391.'8'(0.006163) + 2.280664.'1'(0.240619) + 2.732283.'33'(0.000000) + 2.223195.'37'(0.000000) + 0.804671.'54'(0.000000) + 0.887144.'56'(0.000000) + 1.730982.'57'(0.000000) + 2.023500.'62'(0.000000) + 2.228252.'67'(0.000000) + 2.822322.'79'(0.000000) + 0.079089.'79'(0.000000) + 3.109280.'81'(0.000000) + 0.440574.'81'(0.000000) + 2.470764.'89'(0.000000) + 1.763442.'99'(0.000000) + 0) <= 4.479802 ('53')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.021160.'88'(0.000069) + 2.582079.'87'(0.044062) + 1.251955.'78'(0.000069) + 1.275282.'39'(0.000069) + 3.397171.'39'(0.000069) + 1.188657.'29'(0.027475) + 2.214665.'27'(0.113551) + 2.020816.'21'(0.012099) + 1.412059.'14'(0.006163) + 0.042404.'13'(0.006163) + 1.670727.'13'(0.006163) + 2.135523.'12'(0.012099) + 1.310153.'9'(0.006163) + 1.179508.'7'(0.012099) + 0.763183.'1'(0.240619) + 1.915089.'1'(0.240619) + 2.567959.'51'(0.000000) + 1.577360.'55'(0.000000) + 2.563048.'63'(0.000000) + 1.747355.'72'(0.000000) + 1.438191.'75'(0.000000) + 1.380694.'80'(0.000000) + 2.882876.'81'(0.000000) + 1.071443.'81'(0.000000) + 1.021281.'89'(0.000000) + 1.467905.'91'(0.000000) + 0) <= 8.291469 ('19')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.365719.'50'(0.000069) + 2.493947.'27'(0.113551) + 0.684574.'26'(0.006163) + 2.304809.'23'(0.027475) + 1.638241.'13'(0.006163) + 0.516819.'7'(0.012099) + 0.494361.'5'(0.030572) + 2.492667.'1'(0.240619) + 1.834997.'41'(0.000000) + 0.239339.'47'(0.000000) + 1.233407.'52'(0.000000) + 1.362770.'60'(0.000000) + 1.087313.'61'(0.000000) + 1.804788.'70'(0.000000) + 1.329508.'73'(0.000000) + 0.312948.'77'(0.000000) + 2.705273.'79'(0.000000) + 0.580460.'79'(0.000000) + 0.902065.'86'(0.000000) + 2.258988.'91'(0.000000) + 2.339019.'99'(0.000000) + 0.813817.'99'(0.000000) + 0) <= 7.427648 ('81')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.567845.'100'(0.113551) + 1.988924.'42'(0.000069) + 2.446956.'40'(0.012099) + 0.943327.'36'(0.000069) + 1.739011.'31'(0.012099) + 0.124444.'30'(0.000069) + 1.959565.'25'(0.020365) + 1.605847.'14'(0.006163) + 1.706335.'13'(0.006163) + 1.168451.'12'(0.012099) + 2.093426.'4'(0.020365) + 1.090608.'1'(0.240619) + 1.277208.'44'(0.000000) + 0.665655.'44'(0.000000) + 1.089641.'46'(0.000000) + 1.907212.'47'(0.000000) + 1.665669.'48'(0.000000) + 2.221760.'63'(0.000000) + 2.289872.'64'(0.000000) + 1.184150.'65'(0.000000) + 1.842539.'68'(0.000000) + 0.907759.'70'(0.000000) + 1.939892.'73'(0.000000) + 1.363881.'89'(0.000000) + 1.088936.'97'(0.000000) + 0) <= 2.317585 ('91')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.605688.'87'(0.044062) + 1.497406.'39'(0.000069) + 0.188491.'28'(0.000069) + 1.090318.'19'(0.019293) + 1.614847.'18'(0.006163) + 2.137145.'17'(0.113551) + 1.428020.'12'(0.012099) + 1.445050.'11'(0.006163) + 1.701489.'2'(0.019293) + 2.198110.'35'(0.000000) + 2.409138.'47'(0.000000) + 1.053869.'63'(0.000000) + 2.051968.'70'(0.000000) + 1.524680.'73'(0.000000) + 1.350099.'80'(0.000000) + 1.577672.'86'(0.000000) + 2.550177.'91'(0.000000) + 2.054954.'92'(0.000000) + 0.419219.'92'(0.000000) + 2.138498.'93'(0.000000) + 1.818948.'95'(0.000000) + 0.681840.'95'(0.000000) + 1.353674.'98'(0.000000) + 0) <= 0.836230 ('38')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.416110.'100'(0.113551) + 1.454085.'87'(0.044062) + 1.687482.'42'(0.000069) + 0.443247.'30'(0.000069) + 2.434302.'28'(0.000069) + 1.394907.'24'(0.063103) + 1.448247.'14'(0.006163) + 1.686905.'11'(0.006163) + 0.403244.'4'(0.020365) + 1.055964.'2'(0.019293) + 1.161990.'43'(0.000000) + 1.190360.'45'(0.000000) + 1.350556.'60'(0.000000) + 1.119115.'61'(0.000000) + 1.128389.'62'(0.000000) + 2.772053.'63'(0.000000) + 1.665172.'67'(0.000000) + 2.454386.'71'(0.000000) + 1.646993.'77'(0.000000) + 2.606266.'80'(0.000000) + 0.939947.'89'(0.000000) + 0.456008.'92'(0.000000) + 0) <= 4.280912 ('63')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.624519.'90'(0.240619) + 0.935217.'78'(0.000069) + 0.620558.'76'(0.000069) + 1.423375.'50'(0.000069) + 0.517419.'42'(0.000069) + 1.666714.'36'(0.000069) + 0.961344.'30'(0.000069) + 0.952115.'27'(0.113551) + 1.490078.'19'(0.019293) + 2.375592.'16'(0.129552) + 1.883704.'15'(0.030572) + 0.684177.'10'(0.006163) + 1.262725.'8'(0.006163) + 0.585012.'2'(0.019293) + 1.714030.'2'(0.019293) + 1.630582.'35'(0.000000) + 1.700229.'45'(0.000000) + 1.163648.'54'(0.000000) + 2.120639.'56'(0.000000) + 1.485077.'58'(0.000000) + 1.962068.'66'(0.000000) + 1.836095.'75'(0.000000) + 0.123216.'75'(0.000000) + 1.728445.'77'(0.000000) + 0) <= 4.434529 ('10')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.623709.'50'(0.000069) + 1.310077.'38'(0.020365) + 1.548149.'34'(0.027475) + 0.963458.'32'(0.178987) + 2.195900.'31'(0.012099) + 0.814207.'26'(0.006163) + 0.837864.'25'(0.020365) + 2.170812.'19'(0.019293) + 1.250037.'17'(0.113551) + 1.958162.'14'(0.006163) + 2.776717.'9'(0.006163) + 1.916222.'5'(0.030572) + 0.634500.'2'(0.019293) + 0.976892.'41'(0.000000) + 1.021998.'43'(0.000000) + 1.398453.'53'(0.000000) + 1.124164.'55'(0.000000) + 1.413711.'57'(0.000000) + 0.567531.'60'(0.000000) + 1.294667.'65'(0.000000) + 0.593196.'68'(0.000000) + 1.093456.'85'(0.000000) + 3.184487.'86'(0.000000) + 0.221573.'86'(0.000000) + 1.158956.'89'(0.000000) + 0.130900.'91'(0.000000) + 0.084852.'92'(0.000000) + 0.415174.'96'(0.000000) + 0.765008.'97'(0.000000) + 0) <= 0.640673 ('67')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.972933.'88'(0.000069) + 2.172190.'40'(0.012099) + 2.152207.'38'(0.020365) + 1.787567.'34'(0.027475) + 2.686610.'29'(0.027475) + 0.488715.'23'(0.027475) + 2.173216.'23'(0.027475) + 0.928766.'9'(0.006163) + 1.350094.'2'(0.019293) + 2.432280.'33'(0.000000) + 1.249452.'33'(0.000000) + 1.463563.'37'(0.000000) + 0.849745.'51'(0.000000) + 2.814397.'59'(0.000000) + 1.431329.'71'(0.000000) + 0.966590.'72'(0.000000) + 1.461296.'95'(0.000000) + 1.587532.'96'(0.000000) + 0) <= 0.298014 ('51')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.506554.'100'(0.113551) + 0.504151.'87'(0.044062) + 1.590379.'82'(0.006163) + 2.054602.'78'(0.000069) + 1.239476.'76'(0.000069) + 0.837922.'39'(0.000069) + 2.013619.'32'(0.178987) + 1.312210.'29'(0.027475) + 2.056139.'5'(0.030572) + 1.686671.'2'(0.019293) + 1.381596.'33'(0.000000) + 0.990946.'35'(0.000000) + 1.209144.'37'(0.000000) + 1.993854.'46'(0.000000) + 1.994956.'54'(0.000000) + 0.518961.'57'(0.000000) + 1.446474.'61'(0.000000) + 1.149886.'63'(0.000000) + 1.475737.'65'(0.000000) + 1.151800.'70'(0.000000) + 1.540140.'73'(0.000000) + 1.565553.'75'(0.000000) + 2.267745.'81'(0.000000) + 0.288114.'81'(0.000000) + 1.345460.'94'(0.000000) + 0.558795.'99'(0.000000) + 0) <= 9.888611 ('30')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.696082.'90'(0.240619) + 2.286390.'87'(0.044062) + 0.790866.'38'(0.020365) + 2.406361.'29'(0.027475) + 1.003543.'27'(0.113551) + 0.930001.'24'(0.063103) + 2.715117.'21'(0.012099) + 1.301769.'19'(0.019293) + 2.766033.'15'(0.030572) + 0.189494.'2'(0.019293) + 2.439930.'2'(0.019293) + 1.907158.'37'(0.000000) + 1.596237.'45'(0.000000) + 1.173248.'48'(0.000000) + 1.784426.'54'(0.000000) + 2.080645.'72'(0.000000) + 2.873278.'75'(0.000000) + 2.018920.'79'(0.000000) + 0.778413.'93'(0.000000) + 3.138854.'95'(0.000000) + 1.058053.'95'(0.000000) + 0.212900.'97'(0.000000) + 3.195692.'99'(0.000000) + 0.849333.'99'(0.000000) + 0) <= 6.716541 ('24')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.660091.'82'(0.006163) + 0.398485.'76'(0.000069) + 1.159386.'40'(0.012099) + 2.351711.'38'(0.020365) + 1.246343.'31'(0.012099) + 2.578598.'24'(0.063103) + 1.875256.'20'(0.030572) + 1.008648.'18'(0.006163) + 1.097113.'14'(0.006163) + 1.481393.'12'(0.012099) + 2.610077.'5'(0.030572) + 0.585718.'2'(0.019293) + 1.245552.'35'(0.000000) + 2.282036.'41'(0.000000) + 2.427503.'44'(0.000000) + 1.055650.'45'(0.000000) + 1.835638.'53'(0.000000) + 1.487312.'55'(0.000000) + 2.791486.'59'(0.000000) + 1.315041.'64'(0.000000) + 2.492178.'66'(0.000000) + 1.664931.'73'(0.000000) + 1.040740.'80'(0.000000) + 0.479567.'85'(0.000000) + 0.908863.'86'(0.000000) + 1.731388.'98'(0.000000) + 0) <= 5.247994 ('37')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.296209.'82'(0.006163) + 2.582310.'42'(0.000069) + 1.183174.'40'(0.012099) + 1.781712.'29'(0.027475) + 0.203312.'24'(0.063103) + 1.197290.'21'(0.012099) + 2.049212.'12'(0.012099) + 2.220489.'8'(0.006163) + 0.933481.'4'(0.020365) + 1.886704.'2'(0.019293) + 1.385374.'35'(0.000000) + 2.438508.'46'(0.000000) + 1.816521.'55'(0.000000) + 0.470739.'56'(0.000000) + 1.451714.'58'(0.000000) + 1.016717.'63'(0.000000) + 0.778076.'72'(0.000000) + 0.815690.'79'(0.000000) + 0.616234.'83'(0.000000) + 2.349681.'91'(0.000000) + 0) <= 0.198801 ('87')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.731440.'100'(0.113551) + 0.699321.'90'(0.240619) + 3.562458.'90'(0.240619) + 2.150019.'87'(0.044062) + 1.427254.'78'(0.000069) + 0.726995.'76'(0.000069) + 2.281014.'42'(0.000069) + 1.238793.'40'(0.012099) + 1.182626.'38'(0.020365) + 0.246642.'32'(0.178987) + 1.708230.'27'(0.113551) + 2.874090.'22'(0.020365) + 0.277624.'19'(0.019293) + 1.934941.'17'(0.113551) + 2.495396.'16'(0.129552) + 2.689518.'15'(0.030572) + 1.182120.'10'(0.006163) + 1.111346.'9'(0.006163) + 2.361655.'6'(0.113551) + 2.466941.'2'(0.019293) + 1.145279.'37'(0.000000) + 1.819006.'46'(0.000000) + 1.363212.'46'(0.000000) + 0.737247.'51'(0.000000) + 2.477944.'52'(0.000000) + 0.350088.'54'(0.000000) + 3.125709.'56'(0.000000) + 0.700858.'56'(0.000000) + 2.256776.'59'(0.000000) + 1.185931.'60'(0.000000) + 0.929679.'61'(0.000000) + 1.544384.'77'(0.000000) + 1.228588.'97'(0.000000) + 0) <= 7.538762 ('84')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.494393.'40'(0.012099) + 1.290140.'20'(0.030572) + 0.716134.'14'(0.006163) + 1.110361.'13'(0.006163) + 1.212508.'2'(0.019293) + 2.369860.'2'(0.019293) + 0.713687.'62'(0.000000) + 0.619280.'71'(0.000000) + 2.062285.'84'(0.000000) + 1.895245.'93'(0.000000) + 1.241723.'93'(0.000000) + 2.603344.'99'(0.000000) + 0) <= 2.989301 ('40')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.548888.'82'(0.006163) + 2.332813.'78'(0.000069) + 0.430850.'50'(0.000069) + 2.867773.'39'(0.000069) + 0.355499.'31'(0.012099) + 0.887237.'30'(0.000069) + 1.539320.'26'(0.006163) + 2.280048.'21'(0.012099) + 1.364153.'19'(0.019293) + 2.021681.'2'(0.019293) + 2.192137.'37'(0.000000) + 1.164747.'41'(0.000000) + 1.184992.'48'(0.000000) + 1.503509.'55'(0.000000) + 1.572227.'77'(0.000000) + 1.337856.'85'(0.000000) + 2.322870.'86'(0.000000) + 0) <= 0.116692 ('64')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.135507.'39'(0.000069) + 1.535650.'32'(0.178987) + 2.268360.'29'(0.027475) + 0.962533.'25'(0.020365) + 1.207009.'11'(0.006163) + 1.140245.'2'(0.019293) + 1.846458.'37'(0.000000) + 0.931161.'37'(0.000000) + 1.867533.'41'(0.000000) + 1.930703.'45'(0.000000) + 2.072293.'57'(0.000000) + 1.553168.'65'(0.000000) + 2.490198.'66'(0.000000) + 1.654671.'72'(0.000000) + 1.089100.'73'(0.000000) + 0.413058.'74'(0.000000) + 0) <= 3.967675 ('7')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.583632.'100'(0.113551) + 1.603479.'88'(0.000069) + 1.009118.'50'(0.000069) + 0.864286.'36'(0.000069) + 2.386803.'29'(0.027475) + 2.049698.'28'(0.000069) + 1.509074.'27'(0.113551) + 1.379724.'15'(0.030572) + 1.833795.'11'(0.006163) + 1.538153.'9'(0.006163) + 1.056750.'5'(0.030572) + 0.974353.'2'(0.019293) + 2.225547.'41'(0.000000) + 2.023568.'46'(0.000000) + 0.809191.'53'(0.000000) + 1.586349.'54'(0.000000) + 1.194258.'57'(0.000000) + 1.617481.'61'(0.000000) + 0.599057.'65'(0.000000) + 2.189077.'66'(0.000000) + 1.671857.'67'(0.000000) + 1.954572.'70'(0.000000) + 1.444506.'77'(0.000000) + 0.698844.'80'(0.000000) + 0.076505.'95'(0.000000) + 0) <= 8.921359 ('54')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.225104.'90'(0.240619) + 1.963864.'88'(0.000069) + 2.311370.'76'(0.000069) + 2.644006.'42'(0.000069) + 0.627543.'38'(0.020365) + 2.425613.'34'(0.027475) + 2.040644.'27'(0.113551) + 1.515653.'26'(0.006163) + 0.122020.'23'(0.027475) + 2.697234.'23'(0.027475) + 0.495403.'21'(0.012099) + 3.305699.'21'(0.012099) + 1.783288.'18'(0.006163) + 2.856480.'17'(0.113551) + 1.346740.'16'(0.129552) + 0.533561.'10'(0.006163) + 2.612706.'8'(0.006163) + 0.978104.'3'(0.006163) + 1.156893.'2'(0.019293) + 2.172233.'47'(0.000000) + 2.109207.'52'(0.000000) + 2.013040.'55'(0.000000) + 1.858202.'57'(0.000000) + 1.461878.'58'(0.000000) + 1.247032.'59'(0.000000) + 1.136149.'60'(0.000000) + 0.627641.'62'(0.000000) + 2.744337.'63'(0.000000) + 1.468497.'64'(0.000000) + 1.657703.'67'(0.000000) + 0.440036.'72'(0.000000) + 3.683296.'77'(0.000000) + 0.306580.'77'(0.000000) + 1.706031.'79'(0.000000) + 0.445782.'79'(0.000000) + 1.986891.'83'(0.000000) + 1.988205.'89'(0.000000) + 2.131241.'91'(0.000000) + 1.345722.'94'(0.000000) + 2.557235.'97'(0.000000) + 0) <= 2.936141 ('35')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.614203.'78'(0.000069) + 0.767615.'50'(0.000069) + 2.215397.'49'(0.012099) + 2.377553.'40'(0.012099) + 1.443447.'31'(0.012099) + 1.363108.'30'(0.000069) + 2.853495.'25'(0.020365) + 0.338589.'23'(0.027475) + 1.386096.'23'(0.027475) + 1.699636.'15'(0.030572) + 0.951019.'10'(0.006163) + 1.506124.'2'(0.019293) + 2.587810.'53'(0.000000) + 2.161376.'66'(0.000000) + 1.700428.'69'(0.000000) + 0.969247.'74'(0.000000) + 2.927142.'80'(0.000000) + 1.386232.'86'(0.000000) + 0.323264.'93'(0.000000) + 1.471647.'98'(0.000000) + 0) <= 0.533625 ('41')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.826373.'100'(0.113551) + 0.294226.'90'(0.240619) + 2.037750.'90'(0.240619) + 2.144890.'87'(0.044062) + 2.740489.'50'(0.000069) + 1.912830.'30'(0.000069) + 2.290321.'23'(0.027475) + 1.255167.'22'(0.020365) + 1.794560.'10'(0.006163) + 0.313205.'2'(0.019293) + 1.116319.'41'(0.000000) + 0.852994.'47'(0.000000) + 0.723053.'51'(0.000000) + 1.958033.'56'(0.000000) + 2.358270.'59'(0.000000) + 1.432033.'60'(0.000000) + 1.266601.'63'(0.000000) + 1.171387.'68'(0.000000) + 2.037846.'72'(0.000000) + 1.795212.'74'(0.000000) + 0.443591.'75'(0.000000) + 1.533504.'84'(0.000000) + 1.668135.'85'(0.000000) + 2.523130.'99'(0.000000) + 1.042852.'99'(0.000000) + 0) <= 2.303628 ('83')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.896929.'100'(0.113551) + 1.530147.'82'(0.006163) + 1.076104.'78'(0.000069) + 1.839611.'34'(0.027475) + 1.505763.'21'(0.012099) + 1.527142.'16'(0.129552) + 2.090765.'8'(0.006163) + 1.318248.'3'(0.006163) + 1.139796.'3'(0.006163) + 1.234205.'44'(0.000000) + 1.209714.'60'(0.000000) + 2.676757.'67'(0.000000) + 1.546734.'68'(0.000000) + 0.393614.'75'(0.000000) + 2.532565.'95'(0.000000) + 0) <= 3.477659 ('57')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.870493.'90'(0.240619) + 1.543227.'78'(0.000069) + 2.214920.'50'(0.000069) + 1.928140.'49'(0.012099) + 2.285290.'29'(0.027475) + 1.043311.'28'(0.000069) + 1.208135.'19'(0.019293) + 1.693224.'18'(0.006163) + 1.103391.'15'(0.030572) + 0.804846.'14'(0.006163) + 1.125548.'11'(0.006163) + 2.111273.'3'(0.006163) + 1.904002.'56'(0.000000) + 0.650311.'69'(0.000000) + 1.606416.'84'(0.000000) + 1.850857.'91'(0.000000) + 0.623485.'92'(0.000000) + 0) <= 7.654851 ('48')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.250840.'100'(0.113551) + 1.540353.'78'(0.000069) + 1.315166.'76'(0.000069) + 2.550675.'76'(0.000069) + 0.909145.'50'(0.000069) + 0.782017.'36'(0.000069) + 1.491130.'32'(0.178987) + 2.169408.'31'(0.012099) + 2.860099.'30'(0.000069) + 1.613899.'24'(0.063103) + 2.612992.'23'(0.027475) + 0.423188.'16'(0.129552) + 0.611881.'14'(0.006163) + 2.077118.'12'(0.012099) + 2.215683.'9'(0.006163) + 1.741951.'3'(0.006163) + 1.845204.'37'(0.000000) + 1.613028.'55'(0.000000) + 1.778142.'56'(0.000000) + 1.376774.'57'(0.000000) + 0.543388.'58'(0.000000) + 1.785182.'61'(0.000000) + 0.778946.'61'(0.000000) + 0.995021.'63'(0.000000) + 1.318928.'69'(0.000000) + 1.825331.'83'(0.000000) + 0.587659.'91'(0.000000) + 0) <= 6.968182 ('82')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.003117.'90'(0.240619) + 1.419591.'78'(0.000069) + 1.633426.'76'(0.000069) + 1.899443.'49'(0.012099) + 0.227626.'38'(0.020365) + 1.191898.'36'(0.000069) + 1.531913.'28'(0.000069) + 2.892813.'27'(0.113551) + 0.877618.'26'(0.006163) + 1.835500.'24'(0.063103) + 1.474153.'23'(0.027475) + 0.972420.'3'(0.006163) + 1.156168.'35'(0.000000) + 1.060586.'41'(0.000000) + 1.996104.'45'(0.000000) + 1.974174.'55'(0.000000) + 2.777321.'56'(0.000000) + 1.091310.'57'(0.000000) + 2.057140.'58'(0.000000) + 2.069169.'60'(0.000000) + 2.121114.'61'(0.000000) + 1.707373.'62'(0.000000) + 0.870109.'63'(0.000000) + 1.994491.'67'(0.000000) + 1.426403.'69'(0.000000) + 1.531795.'71'(0.000000) + 1.326092.'83'(0.000000) + 0.924496.'92'(0.000000) + 1.645937.'95'(0.000000) + 0) <= 8.346257 ('28')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.174427.'82'(0.006163) + 2.822411.'42'(0.000069) + 1.545876.'26'(0.006163) + 2.223522.'18'(0.006163) + 0.420103.'14'(0.006163) + 0.713356.'13'(0.006163) + 1.003099.'11'(0.006163) + 1.282407.'11'(0.006163) + 0.698299.'10'(0.006163) + 2.107002.'9'(0.006163) + 1.163821.'8'(0.006163) + 1.252709.'3'(0.006163) + 2.115650.'44'(0.000000) + 1.969286.'52'(0.000000) + 1.891114.'58'(0.000000) + 1.229540.'60'(0.000000) + 1.567717.'64'(0.000000) + 1.305417.'69'(0.000000) + 0.775576.'70'(0.000000) + 3.009614.'71'(0.000000) + 1.414212.'71'(0.000000) + 2.193566.'75'(0.000000) + 1.325691.'77'(0.000000) + 2.800393.'86'(0.000000) + 0.257552.'86'(0.000000) + 1.860927.'94'(0.000000) + 1.250020.'96'(0.000000) + 2.060972.'99'(0.000000) + 0) <= 0.090080 ('74')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.867448.'88'(0.000069) + 2.334304.'82'(0.006163) + 0.451093.'39'(0.000069) + 1.076823.'36'(0.000069) + 0.721432.'30'(0.000069) + 1.452100.'27'(0.113551) + 1.360030.'22'(0.020365) + 1.506045.'21'(0.012099) + 0.021005.'17'(0.113551) + 1.242960.'17'(0.113551) + 1.126825.'11'(0.006163) + 0.583201.'8'(0.006163) + 1.984375.'7'(0.012099) + 2.542771.'3'(0.006163) + 2.529599.'37'(0.000000) + 1.738397.'46'(0.000000) + 1.487746.'52'(0.000000) + 0.451512.'52'(0.000000) + 1.265730.'54'(0.000000) + 1.725891.'55'(0.000000) + 1.401669.'60'(0.000000) + 0.299278.'63'(0.000000) + 2.170177.'64'(0.000000) + 0.340184.'64'(0.000000) + 0.607922.'65'(0.000000) + 1.532774.'67'(0.000000) + 0.913753.'80'(0.000000) + 3.192779.'81'(0.000000) + 0.989496.'81'(0.000000) + 1.234989.'84'(0.000000) + 1.100821.'97'(0.000000) + 1.366040.'98'(0.000000) + 0) <= 3.565317 ('62')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.036672.'100'(0.113551) + 0.992242.'88'(0.000069) + 1.117252.'87'(0.044062) + 1.030674.'42'(0.000069) + 1.657326.'36'(0.000069) + 1.516215.'32'(0.178987) + 1.363854.'22'(0.020365) + 1.293439.'10'(0.006163) + 2.255925.'6'(0.113551) + 0.939320.'3'(0.006163) + 1.156317.'44'(0.000000) + 0.771064.'47'(0.000000) + 1.824961.'53'(0.000000) + 1.565478.'55'(0.000000) + 0.796407.'71'(0.000000) + 0.538633.'73'(0.000000) + 1.871010.'79'(0.000000) + 0.911242.'83'(0.000000) + 2.184699.'89'(0.000000) + 0.813096.'93'(0.000000) + 1.896717.'99'(0.000000) + 0) <= 1.242710 ('86')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.063066.'87'(0.044062) + 1.338546.'87'(0.044062) + 0.657075.'50'(0.000069) + 0.954551.'34'(0.027475) + 2.321224.'30'(0.000069) + 1.474764.'26'(0.006163) + 1.981974.'18'(0.006163) + 1.488516.'15'(0.030572) + 1.495786.'12'(0.012099) + 2.248260.'11'(0.006163) + 0.731345.'7'(0.012099) + 0.829335.'5'(0.030572) + 1.404898.'3'(0.006163) + 1.229022.'46'(0.000000) + 0.221254.'46'(0.000000) + 2.386985.'51'(0.000000) + 1.929467.'60'(0.000000) + 2.133822.'62'(0.000000) + 0.418975.'63'(0.000000) + 1.704943.'65'(0.000000) + 1.305384.'66'(0.000000) + 1.435046.'79'(0.000000) + 1.129603.'89'(0.000000) + 0.579194.'91'(0.000000) + 2.099164.'94'(0.000000) + 0) <= 0.273876 ('11')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.199592.'100'(0.113551) + 1.595442.'78'(0.000069) + 1.349115.'42'(0.000069) + 2.218802.'30'(0.000069) + 1.236485.'27'(0.113551) + 1.596787.'23'(0.027475) + 2.156542.'19'(0.019293) + 0.497040.'18'(0.006163) + 0.913174.'17'(0.113551) + 2.254316.'17'(0.113551) + 2.695642.'14'(0.006163) + 1.075954.'6'(0.113551) + 2.722306.'4'(0.020365) + 1.393915.'3'(0.006163) + 0.960012.'47'(0.000000) + 1.734328.'53'(0.000000) + 0.986607.'55'(0.000000) + 1.197823.'62'(0.000000) + 1.171807.'70'(0.000000) + 1.339936.'71'(0.000000) + 0.790587.'83'(0.000000) + 1.690963.'92'(0.000000) + 1.858847.'94'(0.000000) + 1.507598.'96'(0.000000) + 2.033046.'99'(0.000000) + 0) <= 0.928008 ('17')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.205957.'90'(0.240619) + 1.333279.'87'(0.044062) + 0.972870.'49'(0.012099) + 2.458232.'40'(0.012099) + 1.178055.'32'(0.178987) + 0.535224.'30'(0.000069) + 1.051097.'24'(0.063103) + 1.374403.'18'(0.006163) + 1.187732.'17'(0.113551) + 3.483192.'17'(0.113551) + 1.334772.'3'(0.006163) + 1.679074.'33'(0.000000) + 1.397171.'33'(0.000000) + 0.893738.'45'(0.000000) + 0.838996.'53'(0.000000) + 1.708615.'54'(0.000000) + 2.037363.'59'(0.000000) + 0.691310.'61'(0.000000) + 2.027602.'63'(0.000000) + 1.407404.'66'(0.000000) + 1.762111.'71'(0.000000) + 1.201256.'77'(0.000000) + 1.955713.'83'(0.000000) + 2.026539.'84'(0.000000) + 2.142344.'85'(0.000000) + 0) <= 5.334485 ('45')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.405736.'90'(0.240619) + 1.380198.'50'(0.000069) + 0.553464.'49'(0.012099) + 2.650807.'29'(0.027475) + 1.811402.'26'(0.006163) + 1.821878.'25'(0.020365) + 2.031857.'21'(0.012099) + 2.507865.'17'(0.113551) + 2.308346.'7'(0.012099) + 0.618368.'3'(0.006163) + 0.657228.'35'(0.000000) + 1.205757.'44'(0.000000) + 2.127070.'52'(0.000000) + 1.779270.'53'(0.000000) + 0.879730.'55'(0.000000) + 1.998110.'74'(0.000000) + 0.367426.'74'(0.000000) + 2.038197.'83'(0.000000) + 0.921557.'85'(0.000000) + 1.170284.'99'(0.000000) + 0) <= 9.139620 ('12')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.486809.'88'(0.000069) + 2.020186.'42'(0.000069) + 2.263168.'25'(0.020365) + 0.777220.'21'(0.012099) + 1.415995.'18'(0.006163) + 0.827264.'17'(0.113551) + 1.379943.'16'(0.129552) + 0.097429.'15'(0.030572) + 0.016333.'11'(0.006163) + 1.554598.'11'(0.006163) + 1.423906.'10'(0.006163) + 1.452547.'3'(0.006163) + 1.100810.'41'(0.000000) + 1.319995.'53'(0.000000) + 1.861939.'65'(0.000000) + 1.471577.'80'(0.000000) + 2.661101.'89'(0.000000) + 1.444874.'92'(0.000000) + 2.290280.'93'(0.000000) + 1.159371.'99'(0.000000) + 0) <= 3.488983 ('61')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.205050.'36'(0.000069) + 0.730395.'29'(0.027475) + 1.696938.'28'(0.000069) + 0.501377.'27'(0.113551) + 1.911140.'15'(0.030572) + 2.026481.'14'(0.006163) + 0.629571.'12'(0.012099) + 2.529200.'9'(0.006163) + 1.956957.'6'(0.113551) + 1.625409.'5'(0.030572) + 2.506743.'3'(0.006163) + 0.500101.'43'(0.000000) + 0.226196.'46'(0.000000) + 1.456771.'48'(0.000000) + 1.750474.'64'(0.000000) + 0.089754.'66'(0.000000) + 1.542461.'67'(0.000000) + 2.497053.'69'(0.000000) + 2.391709.'72'(0.000000) + 3.056268.'77'(0.000000) + 0.969136.'77'(0.000000) + 1.176023.'81'(0.000000) + 1.473787.'83'(0.000000) + 1.625178.'92'(0.000000) + 0.904870.'97'(0.000000) + 0) <= 6.918771 ('26')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.425001.'88'(0.000069) + 0.598107.'87'(0.044062) + 0.938534.'82'(0.006163) + 1.741072.'38'(0.020365) + 1.209475.'31'(0.012099) + 1.596367.'27'(0.113551) + 2.652717.'26'(0.006163) + 2.123009.'25'(0.020365) + 0.441116.'20'(0.030572) + 1.500604.'14'(0.006163) + 1.399002.'13'(0.006163) + 0.164863.'12'(0.012099) + 1.692236.'3'(0.006163) + 3.370581.'33'(0.000000) + 0.629437.'33'(0.000000) + 2.442226.'43'(0.000000) + 1.258217.'46'(0.000000) + 1.205609.'58'(0.000000) + 1.023595.'72'(0.000000) + 2.518837.'80'(0.000000) + 1.784861.'84'(0.000000) + 1.421252.'93'(0.000000) + 1.590481.'97'(0.000000) + 0) <= 9.085955 ('34')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.303898.'50'(0.000069) + 1.455195.'42'(0.000069) + 2.447977.'39'(0.000069) + 1.752175.'38'(0.020365) + 2.630056.'27'(0.113551) + 1.039631.'19'(0.019293) + 1.330248.'19'(0.019293) + 1.801800.'9'(0.006163) + 1.682632.'3'(0.006163) + 0.836431.'35'(0.000000) + 1.781918.'43'(0.000000) + 1.565278.'44'(0.000000) + 1.135193.'45'(0.000000) + 1.379866.'48'(0.000000) + 0.290373.'52'(0.000000) + 1.725842.'66'(0.000000) + 1.076336.'69'(0.000000) + 1.253089.'75'(0.000000) + 1.686907.'94'(0.000000) + 1.200648.'97'(0.000000) + 0) <= 8.600280 ('90')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.883628.'88'(0.000069) + 1.754254.'87'(0.044062) + 0.533041.'76'(0.000069) + 1.923152.'50'(0.000069) + 2.025881.'40'(0.012099) + 0.762227.'32'(0.178987) + 1.537655.'28'(0.000069) + 2.688940.'22'(0.020365) + 0.850567.'17'(0.113551) + 2.312059.'15'(0.030572) + 0.591247.'14'(0.006163) + 1.409135.'11'(0.006163) + 1.220784.'7'(0.012099) + 1.468784.'3'(0.006163) + 2.054527.'33'(0.000000) + 0.751387.'35'(0.000000) + 1.303947.'47'(0.000000) + 2.061007.'51'(0.000000) + 0.930479.'54'(0.000000) + 1.319371.'56'(0.000000) + 1.965355.'58'(0.000000) + 1.777251.'59'(0.000000) + 3.116886.'61'(0.000000) + 0.431289.'61'(0.000000) + 1.756787.'62'(0.000000) + 1.575287.'63'(0.000000) + 1.370856.'64'(0.000000) + 1.820565.'69'(0.000000) + 2.326845.'73'(0.000000) + 2.258444.'74'(0.000000) + 1.077281.'75'(0.000000) + 1.855280.'77'(0.000000) + 1.890352.'81'(0.000000) + 0.865299.'81'(0.000000) + 0.393765.'83'(0.000000) + 0.731915.'93'(0.000000) + 1.503501.'94'(0.000000) + 1.299497.'97'(0.000000) + 0) <= 7.783892 ('15')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.222753.'100'(0.113551) + 1.088276.'90'(0.240619) + 1.947668.'40'(0.012099) + 1.269013.'34'(0.027475) + 0.747413.'27'(0.113551) + 1.702413.'26'(0.006163) + 2.052307.'24'(0.063103) + 1.247640.'23'(0.027475) + 0.313373.'20'(0.030572) + 1.000136.'17'(0.113551) + 1.416419.'16'(0.129552) + 1.187969.'12'(0.012099) + 1.592646.'7'(0.012099) + 1.608093.'5'(0.030572) + 0.990252.'3'(0.006163) + 1.142754.'41'(0.000000) + 1.458543.'45'(0.000000) + 1.395801.'54'(0.000000) + 1.498913.'66'(0.000000) + 1.092055.'68'(0.000000) + 1.534174.'89'(0.000000) + 0) <= 3.798033 ('69')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.379286.'40'(0.012099) + 1.977183.'32'(0.178987) + 1.503718.'30'(0.000069) + 1.285352.'28'(0.000069) + 0.818284.'24'(0.063103) + 1.474046.'22'(0.020365) + 0.218198.'19'(0.019293) + 3.604633.'19'(0.019293) + 1.634949.'17'(0.113551) + 1.022822.'8'(0.006163) + 1.388240.'6'(0.113551) + 0.654100.'3'(0.006163) + 2.127449.'43'(0.000000) + 1.698290.'44'(0.000000) + 2.313465.'46'(0.000000) + 0.799899.'54'(0.000000) + 1.777663.'56'(0.000000) + 0.876327.'62'(0.000000) + 1.630931.'64'(0.000000) + 1.414647.'67'(0.000000) + 2.020901.'72'(0.000000) + 0.038310.'73'(0.000000) + 1.794367.'79'(0.000000) + 1.481278.'81'(0.000000) + 0.458918.'89'(0.000000) + 0.515711.'94'(0.000000) + 1.088490.'96'(0.000000) + 0) <= 7.727391 ('72')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.681290.'42'(0.000069) + 2.013068.'32'(0.178987) + 1.246676.'24'(0.063103) + 0.684531.'22'(0.020365) + 1.886002.'14'(0.006163) + 1.020029.'8'(0.006163) + 1.978224.'8'(0.006163) + 1.617726.'3'(0.006163) + 1.839588.'43'(0.000000) + 0.599069.'51'(0.000000) + 1.810777.'57'(0.000000) + 1.177856.'60'(0.000000) + 0.896019.'66'(0.000000) + 2.296114.'68'(0.000000) + 0.422846.'72'(0.000000) + 1.351024.'84'(0.000000) + 1.370146.'85'(0.000000) + 0) <= 0.493042 ('85')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.358791.'49'(0.012099) + 1.473778.'42'(0.000069) + 2.640471.'40'(0.012099) + 1.689837.'31'(0.012099) + 1.746117.'26'(0.006163) + 1.751799.'21'(0.012099) + 0.753140.'13'(0.006163) + 1.240141.'12'(0.012099) + 0.529160.'11'(0.006163) + 1.999795.'10'(0.006163) + 1.887439.'9'(0.006163) + 1.759111.'7'(0.012099) + 0.865959.'3'(0.006163) + 1.433446.'43'(0.000000) + 1.518238.'46'(0.000000) + 1.444641.'47'(0.000000) + 1.216793.'59'(0.000000) + 1.702809.'77'(0.000000) + 1.125819.'80'(0.000000) + 0.693503.'84'(0.000000) + 0.983772.'85'(0.000000) + 0.508108.'91'(0.000000) + 1.164627.'96'(0.000000) + 1.125316.'97'(0.000000) + 0) <= 0.186473 ('96')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.459582.'87'(0.044062) + 2.076910.'78'(0.000069) + 2.366226.'49'(0.012099) + 1.174329.'40'(0.012099) + 0.299966.'38'(0.020365) + 2.382631.'21'(0.012099) + 1.170854.'16'(0.129552) + 1.245156.'14'(0.006163) + 1.744114.'4'(0.020365) + 1.367299.'35'(0.000000) + 2.577109.'53'(0.000000) + 0.792091.'57'(0.000000) + 1.982126.'58'(0.000000) + 1.751576.'61'(0.000000) + 0.765052.'72'(0.000000) + 1.488633.'89'(0.000000) + 2.473906.'93'(0.000000) + 0.833497.'96'(0.000000) + 0) <= 1.723405 ('80')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.972268.'78'(0.000069) + 0.901664.'49'(0.012099) + 0.306999.'42'(0.000069) + 0.897042.'38'(0.020365) + 1.279163.'25'(0.020365) + 2.029435.'22'(0.020365) + 2.179141.'18'(0.006163) + 0.484022.'4'(0.020365) + 1.876208.'4'(0.020365) + 2.268930.'33'(0.000000) + 0.403697.'37'(0.000000) + 0.953108.'48'(0.000000) + 1.973937.'58'(0.000000) + 1.775355.'60'(0.000000) + 2.417053.'62'(0.000000) + 0.806279.'63'(0.000000) + 1.141116.'64'(0.000000) + 0.361595.'67'(0.000000) + 2.419494.'70'(0.000000) + 2.105023.'73'(0.000000) + 0.901262.'83'(0.000000) + 0.617269.'86'(0.000000) + 0) <= 0.158212 ('77')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.706998.'87'(0.044062) + 1.383940.'39'(0.000069) + 2.165026.'38'(0.020365) + 2.217521.'31'(0.012099) + 1.983711.'30'(0.000069) + 0.583281.'27'(0.113551) + 1.522881.'21'(0.012099) + 2.052093.'20'(0.030572) + 1.362625.'11'(0.006163) + 1.553411.'6'(0.113551) + 0.112086.'4'(0.020365) + 2.237370.'4'(0.020365) + 1.125658.'41'(0.000000) + 1.967755.'44'(0.000000) + 0.322987.'46'(0.000000) + 1.195458.'53'(0.000000) + 0.482190.'54'(0.000000) + 1.858420.'61'(0.000000) + 1.434688.'64'(0.000000) + 1.638929.'69'(0.000000) + 0.643242.'73'(0.000000) + 2.373521.'74'(0.000000) + 0.564129.'74'(0.000000) + 1.744475.'83'(0.000000) + 0.745259.'93'(0.000000) + 1.256273.'95'(0.000000) + 1.794378.'96'(0.000000) + 1.018397.'96'(0.000000) + 0) <= 6.637946 ('49')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.554060.'100'(0.113551) + 0.980903.'88'(0.000069) + 0.929982.'49'(0.012099) + 1.794487.'42'(0.000069) + 2.077301.'39'(0.000069) + 1.701241.'31'(0.012099) + 1.475160.'24'(0.063103) + 1.837403.'16'(0.129552) + 2.180236.'10'(0.006163) + 1.926514.'4'(0.020365) + 1.423494.'33'(0.000000) + 2.282082.'45'(0.000000) + 1.594602.'47'(0.000000) + 1.086105.'48'(0.000000) + 1.726564.'55'(0.000000) + 0.060239.'60'(0.000000) + 2.405549.'65'(0.000000) + 1.512626.'68'(0.000000) + 0.971064.'80'(0.000000) + 2.262137.'86'(0.000000) + 0.797589.'92'(0.000000) + 3.156978.'95'(0.000000) + 1.444637.'95'(0.000000) + 1.784784.'96'(0.000000) + 1.211619.'98'(0.000000) + 0) <= 0.592432 ('22')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.024274.'82'(0.006163) + 1.609951.'50'(0.000069) + 2.734548.'42'(0.000069) + 1.233576.'34'(0.027475) + 1.603259.'23'(0.027475) + 0.658419.'18'(0.006163) + 0.865107.'15'(0.030572) + 1.540532.'12'(0.012099) + 2.151821.'8'(0.006163) + 2.316723.'4'(0.020365) + 2.840444.'35'(0.000000) + 2.625601.'41'(0.000000) + 2.513100.'45'(0.000000) + 1.123800.'47'(0.000000) + 1.201522.'62'(0.000000) + 0.452708.'67'(0.000000) + 1.230968.'74'(0.000000) + 1.102534.'80'(0.000000) + 1.246318.'84'(0.000000) + 1.560096.'85'(0.000000) + 0) <= 9.973229 ('79')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.101789.'90'(0.240619) + 1.664033.'87'(0.044062) + 0.246282.'76'(0.000069) + 0.863328.'50'(0.000069) + 2.015334.'31'(0.012099) + 0.509493.'15'(0.030572) + 1.889450.'7'(0.012099) + 2.647512.'4'(0.020365) + 1.076650.'33'(0.000000) + 0.776313.'44'(0.000000) + 1.266781.'45'(0.000000) + 1.099945.'48'(0.000000) + 1.298129.'51'(0.000000) + 2.422496.'52'(0.000000) + 0.335468.'52'(0.000000) + 0.646111.'55'(0.000000) + 1.683084.'64'(0.000000) + 2.189682.'67'(0.000000) + 2.102505.'69'(0.000000) + 0.172906.'69'(0.000000) + 0.545546.'74'(0.000000) + 1.059945.'80'(0.000000) + 0.585850.'92'(0.000000) + 2.364486.'94'(0.000000) + 1.921713.'95'(0.000000) + 0) <= 6.522989 ('56')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.256699.'90'(0.240619) + 1.482439.'36'(0.000069) + 0.898231.'32'(0.178987) + 1.635013.'32'(0.178987) + 1.492128.'29'(0.027475) + 2.643807.'28'(0.000069) + 1.206687.'23'(0.027475) + 0.949395.'20'(0.030572) + 1.850656.'15'(0.030572) + 1.016652.'7'(0.012099) + 1.377377.'4'(0.020365) + 1.992713.'35'(0.000000) + 2.840782.'43'(0.000000) + 0.042364.'43'(0.000000) + 2.288461.'45'(0.000000) + 1.897205.'47'(0.000000) + 1.250125.'55'(0.000000) + 1.938949.'56'(0.000000) + 2.377586.'59'(0.000000) + 2.547275.'61'(0.000000) + 1.372998.'62'(0.000000) + 1.430358.'65'(0.000000) + 0.737984.'81'(0.000000) + 1.822339.'84'(0.000000) + 1.997573.'85'(0.000000) + 1.983112.'92'(0.000000) + 1.553463.'95'(0.000000) + 2.032527.'99'(0.000000) + 0.453373.'99'(0.000000) + 0) <= 2.730500 ('21')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.258030.'34'(0.027475) + 1.288090.'32'(0.178987) + 2.150312.'31'(0.012099) + 1.022747.'29'(0.027475) + 1.209585.'22'(0.020365) + 2.057384.'20'(0.030572) + 1.622292.'18'(0.006163) + 1.140856.'13'(0.006163) + 1.195660.'7'(0.012099) + 0.671368.'4'(0.020365) + 1.448857.'37'(0.000000) + 0.328902.'43'(0.000000) + 0.449322.'44'(0.000000) + 1.122780.'45'(0.000000) + 1.055999.'48'(0.000000) + 1.491899.'51'(0.000000) + 1.869386.'59'(0.000000) + 1.863970.'62'(0.000000) + 1.154044.'65'(0.000000) + 1.548267.'67'(0.000000) + 1.030625.'68'(0.000000) + 1.150820.'71'(0.000000) + 0.668796.'71'(0.000000) + 0.428674.'72'(0.000000) + 0.321220.'77'(0.000000) + 1.667631.'83'(0.000000) + 2.222565.'85'(0.000000) + 1.919167.'91'(0.000000) + 1.033395.'97'(0.000000) + 0) <= 2.984953 ('31')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.473135.'36'(0.000069) + 1.424348.'30'(0.000069) + 1.548933.'28'(0.000069) + 1.963822.'27'(0.113551) + 1.335913.'14'(0.006163) + 1.350829.'12'(0.012099) + 0.947682.'10'(0.006163) + 0.353263.'9'(0.006163) + 1.360697.'5'(0.030572) + 1.027032.'4'(0.020365) + 1.785414.'4'(0.020365) + 0.079639.'33'(0.000000) + 1.506060.'35'(0.000000) + 2.166030.'37'(0.000000) + 0.750331.'37'(0.000000) + 1.635686.'45'(0.000000) + 0.550879.'58'(0.000000) + 1.954481.'59'(0.000000) + 1.041460.'64'(0.000000) + 1.995224.'65'(0.000000) + 0.523144.'66'(0.000000) + 1.287240.'68'(0.000000) + 1.856820.'70'(0.000000) + 1.379728.'79'(0.000000) + 1.364267.'80'(0.000000) + 2.558274.'86'(0.000000) + 1.532661.'91'(0.000000) + 1.170389.'94'(0.000000) + 1.959711.'98'(0.000000) + 0) <= 5.148891 ('50')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.862578.'78'(0.000069) + 1.416727.'39'(0.000069) + 2.189062.'31'(0.012099) + 0.729096.'24'(0.063103) + 1.656971.'20'(0.030572) + 0.948492.'18'(0.006163) + 1.536266.'13'(0.006163) + 1.831542.'5'(0.030572) + 2.167218.'4'(0.020365) + 1.613452.'55'(0.000000) + 1.497068.'65'(0.000000) + 1.123872.'68'(0.000000) + 2.190230.'70'(0.000000) + 0.542362.'71'(0.000000) + 0.967943.'84'(0.000000) + 2.726884.'93'(0.000000) + 1.662178.'96'(0.000000) + 1.858692.'99'(0.000000) + 0) <= 8.296034 ('20')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.745854.'100'(0.113551) + 2.696288.'50'(0.000069) + 0.640409.'38'(0.020365) + 1.528585.'36'(0.000069) + 1.881151.'29'(0.027475) + 0.563048.'22'(0.020365) + 1.732494.'20'(0.030572) + 2.521302.'14'(0.006163) + 0.512534.'11'(0.006163) + 2.109561.'5'(0.030572) + 2.493067.'4'(0.020365) + 1.769842.'35'(0.000000) + 0.908374.'53'(0.000000) + 0.940655.'62'(0.000000) + 1.415568.'63'(0.000000) + 2.107345.'73'(0.000000) + 2.408468.'74'(0.000000) + 0.535814.'74'(0.000000) + 2.676492.'77'(0.000000) + 0.487079.'80'(0.000000) + 2.582528.'86'(0.000000) + 1.493858.'97'(0.000000) + 2.063837.'98'(0.000000) + 1.339383.'99'(0.000000) + 0) <= 9.565357 ('43')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.202595.'90'(0.240619) + 1.991977.'78'(0.000069) + 1.057492.'34'(0.027475) + 2.355632.'32'(0.178987) + 0.942310.'31'(0.012099) + 0.792453.'20'(0.030572) + 1.741767.'18'(0.006163) + 1.791350.'12'(0.012099) + 2.619497.'10'(0.006163) + 2.141346.'8'(0.006163) + 0.840229.'7'(0.012099) + 1.444229.'5'(0.030572) + 1.487839.'48'(0.000000) + 0.813607.'56'(0.000000) + 1.281472.'61'(0.000000) + 2.341396.'63'(0.000000) + 2.699101.'66'(0.000000) + 2.018592.'67'(0.000000) + 1.518680.'68'(0.000000) + 0.586179.'73'(0.000000) + 1.914005.'92'(0.000000) + 0) <= 9.033795 ('70')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.945839.'90'(0.240619) + 2.929358.'78'(0.000069) + 1.168506.'50'(0.000069) + 2.147659.'49'(0.012099) + 1.263269.'40'(0.012099) + 0.530949.'36'(0.000069) + 2.247271.'30'(0.000069) + 0.601199.'28'(0.000069) + 2.194459.'26'(0.006163) + 1.811856.'23'(0.027475) + 0.003839.'21'(0.012099) + 2.951036.'21'(0.012099) + 2.455284.'16'(0.129552) + 0.630293.'6'(0.113551) + 0.882265.'5'(0.030572) + 1.040994.'33'(0.000000) + 1.356063.'52'(0.000000) + 1.910444.'56'(0.000000) + 1.428148.'59'(0.000000) + 1.373441.'61'(0.000000) + 1.359336.'64'(0.000000) + 0.829171.'66'(0.000000) + 0.849480.'72'(0.000000) + 2.735495.'73'(0.000000) + 1.814065.'75'(0.000000) + 2.674892.'79'(0.000000) + 1.668739.'95'(0.000000) + 0) <= 3.023326 ('3')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.509946.'78'(0.000069) + 1.328364.'76'(0.000069) + 2.594658.'42'(0.000069) + 1.827268.'40'(0.012099) + 1.830207.'38'(0.020365) + 0.318671.'36'(0.000069) + 1.863854.'20'(0.030572) + 2.277746.'18'(0.006163) + 2.375105.'16'(0.129552) + 1.895199.'15'(0.030572) + 2.023118.'5'(0.030572) + 1.189696.'37'(0.000000) + 1.401383.'48'(0.000000) + 2.131370.'54'(0.000000) + 2.716267.'61'(0.000000) + 1.141565.'64'(0.000000) + 0.907024.'66'(0.000000) + 1.381965.'68'(0.000000) + 1.477048.'74'(0.000000) + 2.463582.'81'(0.000000) + 1.623783.'86'(0.000000) + 0) <= 7.892793 ('32')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.444932.'100'(0.113551) + 1.521542.'82'(0.006163) + 0.765463.'76'(0.000069) + 1.403147.'42'(0.000069) + 1.511028.'38'(0.020365) + 1.609308.'28'(0.000069) + 1.296327.'26'(0.006163) + 3.312020.'26'(0.006163) + 1.617918.'24'(0.063103) + 1.364739.'22'(0.020365) + 1.678793.'15'(0.030572) + 1.486965.'10'(0.006163) + 1.224155.'9'(0.006163) + 1.726574.'5'(0.030572) + 1.856127.'46'(0.000000) + 2.657988.'56'(0.000000) + 0.440723.'56'(0.000000) + 0.339524.'62'(0.000000) + 0.522284.'64'(0.000000) + 0.702882.'65'(0.000000) + 1.033674.'67'(0.000000) + 1.969829.'70'(0.000000) + 1.123117.'71'(0.000000) + 0.522276.'72'(0.000000) + 1.488982.'73'(0.000000) + 1.902724.'74'(0.000000) + 0.690593.'75'(0.000000) + 1.809265.'86'(0.000000) + 1.674574.'94'(0.000000) + 1.150278.'96'(0.000000) + 1.597986.'98'(0.000000) + 0.845645.'98'(0.000000) + 0) <= 8.316926 ('78')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.124568.'100'(0.113551) + 1.504045.'88'(0.000069) + 0.715669.'82'(0.006163) + 1.619806.'40'(0.012099) + 0.395567.'30'(0.000069) + 0.417703.'17'(0.113551) + 1.284768.'14'(0.006163) + 1.913833.'11'(0.006163) + 2.306159.'7'(0.012099) + 2.184915.'5'(0.030572) + 1.451440.'37'(0.000000) + 1.792684.'41'(0.000000) + 0.312380.'47'(0.000000) + 1.582557.'48'(0.000000) + 1.753562.'51'(0.000000) + 2.420233.'52'(0.000000) + 1.803453.'54'(0.000000) + 1.322227.'58'(0.000000) + 0.559601.'64'(0.000000) + 1.380426.'71'(0.000000) + 0.820164.'74'(0.000000) + 1.896783.'81'(0.000000) + 2.123275.'84'(0.000000) + 0.642719.'98'(0.000000) + 0) <= 6.378365 ('58')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.908263.'82'(0.006163) + 2.531268.'50'(0.000069) + 1.466575.'34'(0.027475) + 1.644573.'32'(0.178987) + 1.125139.'24'(0.063103) + 2.414813.'23'(0.027475) + 1.306117.'19'(0.019293) + 2.266873.'17'(0.113551) + 2.221891.'16'(0.129552) + 2.363266.'6'(0.113551) + 1.130246.'5'(0.030572) + 0.868905.'33'(0.000000) + 1.622571.'58'(0.000000) + 1.381037.'69'(0.000000) + 0.606772.'69'(0.000000) + 1.506193.'72'(0.000000) + 0.897168.'91'(0.000000) + 1.232301.'94'(0.000000) + 0.854497.'95'(0.000000) + 1.177505.'95'(0.000000) + 0) <= 8.463109 ('8')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.890818.'24'(0.063103) + 0.949181.'17'(0.113551) + 1.161397.'5'(0.030572) + 2.475867.'53'(0.000000) + 1.584881.'56'(0.000000) + 1.845275.'57'(0.000000) + 1.134506.'58'(0.000000) + 1.010085.'67'(0.000000) + 0.734816.'68'(0.000000) + 2.173933.'77'(0.000000) + 1.089899.'77'(0.000000) + 1.422290.'84'(0.000000) + 2.575473.'93'(0.000000) + 2.016150.'96'(0.000000) + 2.164767.'98'(0.000000) + 0) <= 6.216957 ('65')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.257126.'78'(0.000069) + 0.905694.'76'(0.000069) + 1.926757.'38'(0.020365) + 0.895732.'29'(0.027475) + 2.333933.'25'(0.020365) + 0.753780.'22'(0.020365) + 0.731851.'20'(0.030572) + 1.943488.'20'(0.030572) + 2.111822.'15'(0.030572) + 0.672911.'13'(0.006163) + 3.321218.'13'(0.006163) + 1.948580.'10'(0.006163) + 1.041960.'5'(0.030572) + 1.791570.'37'(0.000000) + 2.584222.'43'(0.000000) + 1.271336.'45'(0.000000) + 1.479654.'51'(0.000000) + 0.341589.'52'(0.000000) + 2.163503.'58'(0.000000) + 2.093526.'68'(0.000000) + 1.295291.'89'(0.000000) + 1.839458.'96'(0.000000) + 1.412990.'98'(0.000000) + 0) <= 0.341713 ('29')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.699831.'49'(0.012099) + 1.812137.'42'(0.000069) + 1.797926.'40'(0.012099) + 0.918037.'39'(0.000069) + 2.538168.'26'(0.006163) + 1.120507.'20'(0.030572) + 1.685578.'20'(0.030572) + 1.726454.'19'(0.019293) + 1.709282.'18'(0.006163) + 1.184840.'8'(0.006163) + 1.140714.'7'(0.012099) + 0.878039.'6'(0.113551) + 2.261848.'6'(0.113551) + 2.758990.'35'(0.000000) + 1.381085.'51'(0.000000) + 1.268826.'54'(0.000000) + 1.526259.'59'(0.000000) + 1.633169.'61'(0.000000) + 0.975245.'65'(0.000000) + 1.392593.'68'(0.000000) + 0.175793.'70'(0.000000) + 2.562022.'75'(0.000000) + 0.836806.'79'(0.000000) + 1.241203.'80'(0.000000) + 1.427529.'84'(0.000000) + 2.002977.'91'(0.000000) + 2.799924.'96'(0.000000) + 0) <= 5.783896 ('68')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.935243.'90'(0.240619) + 1.889933.'88'(0.000069) + 1.914796.'82'(0.006163) + 0.325771.'36'(0.000069) + 1.036916.'34'(0.027475) + 1.442773.'30'(0.000069) + 1.126293.'29'(0.027475) + 3.864114.'29'(0.027475) + 1.176041.'21'(0.012099) + 0.372924.'13'(0.006163) + 0.809181.'6'(0.113551) + 1.926613.'33'(0.000000) + 1.811432.'43'(0.000000) + 0.777289.'53'(0.000000) + 2.121541.'57'(0.000000) + 1.021144.'67'(0.000000) + 3.357204.'70'(0.000000) + 1.314002.'70'(0.000000) + 3.330889.'74'(0.000000) + 0.801600.'74'(0.000000) + 2.287432.'83'(0.000000) + 1.139330.'89'(0.000000) + 1.853973.'91'(0.000000) + 0) <= 8.763891 ('18')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.281476.'100'(0.113551) + 1.440534.'88'(0.000069) + 0.394710.'87'(0.044062) + 1.919734.'50'(0.000069) + 0.196730.'36'(0.000069) + 2.041853.'28'(0.000069) + 0.945787.'22'(0.020365) + 1.658397.'19'(0.019293) + 1.219434.'13'(0.006163) + 2.290925.'13'(0.006163) + 0.420682.'10'(0.006163) + 0.669219.'6'(0.113551) + 2.984901.'6'(0.113551) + 2.149153.'41'(0.000000) + 2.455934.'47'(0.000000) + 2.786306.'48'(0.000000) + 0.835986.'53'(0.000000) + 1.656469.'55'(0.000000) + 2.739236.'60'(0.000000) + 1.264066.'61'(0.000000) + 0.819034.'66'(0.000000) + 1.507804.'67'(0.000000) + 1.106054.'75'(0.000000) + 1.987768.'83'(0.000000) + 0.646959.'89'(0.000000) + 1.279857.'92'(0.000000) + 1.129262.'95'(0.000000) + 0) <= 5.406005 ('47')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.125625.'82'(0.006163) + 0.947766.'78'(0.000069) + 2.221943.'49'(0.012099) + 1.903976.'39'(0.000069) + 1.854606.'28'(0.000069) + 0.305071.'25'(0.020365) + 0.937291.'25'(0.020365) + 1.070252.'23'(0.027475) + 0.556078.'22'(0.020365) + 0.934094.'20'(0.030572) + 2.210368.'19'(0.019293) + 2.427476.'18'(0.006163) + 1.604609.'16'(0.129552) + 1.235374.'9'(0.006163) + 2.054239.'6'(0.113551) + 2.373857.'37'(0.000000) + 0.826317.'44'(0.000000) + 0.587304.'45'(0.000000) + 1.644479.'46'(0.000000) + 1.655688.'52'(0.000000) + 1.851783.'81'(0.000000) + 2.813412.'86'(0.000000) + 1.750387.'92'(0.000000) + 0) <= 8.833061 ('59')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.743078.'39'(0.000069) + 1.466711.'36'(0.000069) + 0.503551.'34'(0.027475) + 1.807400.'32'(0.178987) + 1.343814.'31'(0.012099) + 1.551916.'28'(0.000069) + 2.791202.'16'(0.129552) + 0.510615.'14'(0.006163) + 1.202881.'13'(0.006163) + 1.725236.'11'(0.006163) + 0.856237.'6'(0.113551) + 3.015861.'46'(0.000000) + 1.437731.'46'(0.000000) + 2.281470.'47'(0.000000) + 0.129507.'51'(0.000000) + 2.661813.'62'(0.000000) + 1.192285.'63'(0.000000) + 1.488221.'72'(0.000000) + 2.317244.'73'(0.000000) + 0.487325.'73'(0.000000) + 1.463591.'93'(0.000000) + 0) <= 2.360890 ('4')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.960805.'100'(0.113551) + 2.221964.'88'(0.000069) + 1.388514.'40'(0.012099) + 2.114740.'39'(0.000069) + 1.298887.'38'(0.020365) + 2.670975.'34'(0.027475) + 1.009443.'25'(0.020365) + 1.745244.'22'(0.020365) + 0.412622.'18'(0.006163) + 2.077908.'16'(0.129552) + 1.668006.'14'(0.006163) + 0.232055.'8'(0.006163) + 2.079142.'7'(0.012099) + 2.141814.'48'(0.000000) + 1.548607.'55'(0.000000) + 0.956527.'59'(0.000000) + 0.308032.'60'(0.000000) + 0.975814.'66'(0.000000) + 1.898931.'68'(0.000000) + 0.695469.'69'(0.000000) + 2.002323.'70'(0.000000) + 1.486428.'73'(0.000000) + 2.457999.'75'(0.000000) + 1.576866.'77'(0.000000) + 0.509913.'80'(0.000000) + 0.670542.'83'(0.000000) + 2.336782.'84'(0.000000) + 1.440402.'86'(0.000000) + 0.661448.'99'(0.000000) + 0) <= 9.391278 ('14')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.742202.'88'(0.000069) + 0.999326.'49'(0.012099) + 2.607051.'40'(0.012099) + 1.560306.'39'(0.000069) + 1.489587.'36'(0.000069) + 1.566774.'34'(0.027475) + 1.906809.'24'(0.063103) + 2.045128.'17'(0.113551) + 1.552579.'9'(0.006163) + 1.259493.'7'(0.012099) + 1.712923.'33'(0.000000) + 1.076189.'54'(0.000000) + 1.651478.'55'(0.000000) + 2.329769.'58'(0.000000) + 2.474422.'65'(0.000000) + 2.942554.'69'(0.000000) + 0.754960.'69'(0.000000) + 2.777254.'73'(0.000000) + 0.660148.'73'(0.000000) + 2.203256.'84'(0.000000) + 1.388219.'91'(0.000000) + 0.528079.'97'(0.000000) + 0) <= 8.071052 ('98')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.564334.'88'(0.000069) + 0.399939.'76'(0.000069) + 2.425168.'76'(0.000069) + 0.728105.'31'(0.012099) + 2.259898.'25'(0.020365) + 1.697699.'12'(0.012099) + 1.808660.'11'(0.006163) + 0.719628.'7'(0.012099) + 0.872073.'37'(0.000000) + 2.231891.'41'(0.000000) + 0.988622.'45'(0.000000) + 1.916984.'47'(0.000000) + 1.933501.'65'(0.000000) + 1.462353.'68'(0.000000) + 0.651220.'70'(0.000000) + 0.790100.'85'(0.000000) + 1.554272.'92'(0.000000) + 0) <= 0.733642 ('33')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.786018.'82'(0.006163) + 1.947234.'78'(0.000069) + 1.642824.'76'(0.000069) + 0.755497.'42'(0.000069) + 1.234668.'40'(0.012099) + 0.859017.'36'(0.000069) + 1.690954.'32'(0.178987) + 1.313217.'31'(0.012099) + 1.403951.'23'(0.027475) + 0.571324.'22'(0.020365) + 1.093234.'18'(0.006163) + 0.143028.'15'(0.030572) + 1.405319.'13'(0.006163) + 2.891997.'11'(0.006163) + 1.356068.'10'(0.006163) + 1.514295.'7'(0.012099) + 2.809046.'35'(0.000000) + 1.093155.'47'(0.000000) + 0.667851.'51'(0.000000) + 2.260652.'57'(0.000000) + 1.417857.'58'(0.000000) + 2.229466.'59'(0.000000) + 1.757229.'60'(0.000000) + 1.657877.'66'(0.000000) + 2.194061.'70'(0.000000) + 2.028081.'71'(0.000000) + 0.303044.'75'(0.000000) + 1.684253.'83'(0.000000) + 1.801864.'85'(0.000000) + 1.155367.'92'(0.000000) + 1.452926.'93'(0.000000) + 0.476655.'94'(0.000000) + 2.048520.'97'(0.000000) + 2.573317.'98'(0.000000) + 0) <= 1.194905 ('36')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.028386.'100'(0.113551) + 0.120647.'87'(0.044062) + 2.464362.'87'(0.044062) + 0.968744.'76'(0.000069) + 1.699420.'49'(0.012099) + 1.643824.'42'(0.000069) + 2.149216.'31'(0.012099) + 1.496767.'29'(0.027475) + 1.694809.'28'(0.000069) + 1.729823.'24'(0.063103) + 1.035522.'22'(0.020365) + 1.688487.'12'(0.012099) + 1.979455.'8'(0.006163) + 0.634950.'35'(0.000000) + 0.966902.'48'(0.000000) + 1.316543.'51'(0.000000) + 2.130642.'53'(0.000000) + 2.531803.'56'(0.000000) + 1.301352.'57'(0.000000) + 0.153387.'58'(0.000000) + 0.997002.'62'(0.000000) + 1.836581.'74'(0.000000) + 1.323560.'75'(0.000000) + 0) <= 6.477494 ('60')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.405104.'100'(0.113551) + 1.405491.'88'(0.000069) + 1.072704.'76'(0.000069) + 1.337678.'38'(0.020365) + 1.647286.'36'(0.000069) + 2.217245.'32'(0.178987) + 0.537341.'31'(0.012099) + 2.120782.'26'(0.006163) + 1.750388.'25'(0.020365) + 2.581114.'19'(0.019293) + 1.848952.'18'(0.006163) + 1.443829.'15'(0.030572) + 2.050061.'10'(0.006163) + 1.090738.'8'(0.006163) + 1.915513.'37'(0.000000) + 1.460684.'54'(0.000000) + 1.467436.'55'(0.000000) + 1.350329.'60'(0.000000) + 1.609333.'64'(0.000000) + 1.400969.'74'(0.000000) + 1.643264.'89'(0.000000) + 0.624725.'95'(0.000000) + 1.192688.'98'(0.000000) + 0) <= 4.269098 ('99')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.160592.'87'(0.044062) + 2.010318.'87'(0.044062) + 1.011440.'82'(0.006163) + 1.347726.'50'(0.000069) + 2.098365.'49'(0.012099) + 0.887917.'28'(0.000069) + 1.291252.'23'(0.027475) + 1.028630.'13'(0.006163) + 0.917425.'13'(0.006163) + 1.585950.'12'(0.012099) + 0.527916.'10'(0.006163) + 1.837102.'8'(0.006163) + 2.370840.'35'(0.000000) + 3.274995.'43'(0.000000) + 0.803071.'43'(0.000000) + 2.322685.'44'(0.000000) + 2.292077.'48'(0.000000) + 1.304584.'52'(0.000000) + 1.509518.'58'(0.000000) + 0.191116.'66'(0.000000) + 2.173128.'71'(0.000000) + 1.274457.'77'(0.000000) + 0.145568.'77'(0.000000) + 1.653130.'79'(0.000000) + 0.146393.'89'(0.000000) + 1.227434.'92'(0.000000) + 0) <= 6.139383 ('42')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.793638.'88'(0.000069) + 1.207472.'87'(0.044062) + 1.640786.'49'(0.012099) + 1.492544.'30'(0.000069) + 1.346231.'24'(0.063103) + 2.300657.'21'(0.012099) + 2.167632.'19'(0.019293) + 2.031915.'9'(0.006163) + 1.548157.'8'(0.006163) + 1.555267.'33'(0.000000) + 1.061562.'43'(0.000000) + 2.772407.'45'(0.000000) + 1.569363.'47'(0.000000) + 2.127742.'52'(0.000000) + 0.634263.'52'(0.000000) + 1.284080.'55'(0.000000) + 0.317868.'56'(0.000000) + 2.037391.'59'(0.000000) + 1.995645.'65'(0.000000) + 1.963792.'69'(0.000000) + 1.673417.'72'(0.000000) + 1.329080.'75'(0.000000) + 1.558805.'77'(0.000000) + 1.072858.'92'(0.000000) + 0.486959.'93'(0.000000) + 0.796534.'97'(0.000000) + 0) <= 5.857593 ('94')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.166740.'88'(0.000069) + 0.670081.'34'(0.027475) + 2.557557.'31'(0.012099) + 0.695989.'30'(0.000069) + 1.116681.'25'(0.020365) + 2.318190.'24'(0.063103) + 1.385299.'14'(0.006163) + 1.547427.'13'(0.006163) + 2.266819.'10'(0.006163) + 1.701111.'8'(0.006163) + 2.401656.'33'(0.000000) + 2.630843.'51'(0.000000) + 1.968790.'53'(0.000000) + 1.008675.'59'(0.000000) + 1.251231.'60'(0.000000) + 2.217645.'72'(0.000000) + 1.577242.'74'(0.000000) + 1.563015.'79'(0.000000) + 1.066298.'81'(0.000000) + 2.152406.'92'(0.000000) + 2.585552.'94'(0.000000) + 1.303983.'97'(0.000000) + 1.582619.'98'(0.000000) + 0) <= 8.420309 ('92')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.524768.'82'(0.006163) + 1.606699.'50'(0.000069) + 2.235559.'40'(0.012099) + 1.699471.'30'(0.000069) + 1.507236.'28'(0.000069) + 1.755627.'19'(0.019293) + 2.413011.'16'(0.129552) + 2.340438.'15'(0.030572) + 1.595138.'8'(0.006163) + 1.722848.'35'(0.000000) + 1.305391.'41'(0.000000) + 0.336208.'44'(0.000000) + 2.909272.'48'(0.000000) + 0.447815.'54'(0.000000) + 1.617690.'57'(0.000000) + 1.020568.'65'(0.000000) + 0.994294.'72'(0.000000) + 1.974799.'80'(0.000000) + 0.811012.'81'(0.000000) + 0.631385.'81'(0.000000) + 2.127948.'85'(0.000000) + 1.414472.'89'(0.000000) + 1.206571.'97'(0.000000) + 1.302504.'98'(0.000000) + 0) <= 9.034019 ('52')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.270133.'76'(0.000069) + 1.445617.'42'(0.000069) + 0.512378.'29'(0.027475) + 1.253041.'27'(0.113551) + 1.143595.'26'(0.006163) + 2.736226.'25'(0.020365) + 1.158903.'23'(0.027475) + 0.865739.'22'(0.020365) + 2.682442.'15'(0.030572) + 2.006404.'9'(0.006163) + 3.054403.'33'(0.000000) + 0.823580.'33'(0.000000) + 1.016073.'37'(0.000000) + 1.564331.'59'(0.000000) + 2.909078.'65'(0.000000) + 0.951618.'70'(0.000000) + 0.572722.'72'(0.000000) + 2.200170.'75'(0.000000) + 1.521441.'79'(0.000000) + 1.600129.'85'(0.000000) + 0.858442.'86'(0.000000) + 0.765892.'93'(0.000000) + 2.022054.'96'(0.000000) + 0) <= 3.965807 ('5')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.093934.'100'(0.113551) + 2.417847.'27'(0.113551) + 1.405445.'16'(0.129552) + 0.994695.'9'(0.006163) + 1.454422.'46'(0.000000) + 1.845335.'57'(0.000000) + 1.766428.'60'(0.000000) + 2.798823.'69'(0.000000) + 1.774598.'79'(0.000000) + 1.138548.'83'(0.000000) + 2.638663.'89'(0.000000) + 1.279438.'91'(0.000000) + 1.138915.'96'(0.000000) + 2.943563.'98'(0.000000) + 0.924747.'98'(0.000000) + 0) <= 4.179265 ('95')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.043234.'90'(0.240619) + 1.822970.'90'(0.240619) + 1.523744.'88'(0.000069) + 1.863592.'49'(0.012099) + 0.548219.'28'(0.000069) + 1.971675.'15'(0.030572) + 1.808167.'10'(0.006163) + 1.849337.'33'(0.000000) + 1.598957.'41'(0.000000) + 1.388141.'44'(0.000000) + 1.249598.'51'(0.000000) + 0.792863.'53'(0.000000) + 2.307974.'56'(0.000000) + 1.464135.'57'(0.000000) + 0.805015.'65'(0.000000) + 0.035705.'66'(0.000000) + 2.524301.'67'(0.000000) + 1.275692.'68'(0.000000) + 0.499955.'72'(0.000000) + 1.034307.'73'(0.000000) + 0.887078.'80'(0.000000) + 2.688491.'84'(0.000000) + 0.861989.'86'(0.000000) + 0.768805.'92'(0.000000) + 2.177257.'93'(0.000000) + 1.466219.'93'(0.000000) + 0) <= 3.879107 ('6')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.291374.'50'(0.000069) + 1.950542.'38'(0.020365) + 1.386950.'36'(0.000069) + 1.587288.'34'(0.027475) + 2.396137.'32'(0.178987) + 1.575724.'25'(0.020365) + 0.805103.'23'(0.027475) + 0.694380.'11'(0.006163) + 2.877807.'11'(0.006163) + 1.199667.'37'(0.000000) + 1.443891.'45'(0.000000) + 0.727671.'52'(0.000000) + 0.347555.'52'(0.000000) + 0.724222.'54'(0.000000) + 0.782665.'59'(0.000000) + 1.609420.'60'(0.000000) + 1.536362.'71'(0.000000) + 1.318535.'75'(0.000000) + 1.680210.'79'(0.000000) + 1.842302.'81'(0.000000) + 1.209645.'83'(0.000000) + 2.682472.'84'(0.000000) + 1.219607.'85'(0.000000) + 1.621102.'91'(0.000000) + 2.013938.'92'(0.000000) + 1.808325.'97'(0.000000) + 2.383492.'98'(0.000000) + 0) <= 5.586898 ('13')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.438648.'82'(0.006163) + 1.345093.'78'(0.000069) + 2.151200.'38'(0.020365) + 0.204170.'32'(0.178987) + 2.235736.'32'(0.178987) + 0.809876.'31'(0.012099) + 1.402595.'27'(0.113551) + 1.643900.'19'(0.019293) + 2.548434.'18'(0.006163) + 1.100685.'12'(0.012099) + 1.755388.'33'(0.000000) + 2.272421.'35'(0.000000) + 2.152087.'41'(0.000000) + 1.250271.'41'(0.000000) + 1.233098.'53'(0.000000) + 1.341941.'61'(0.000000) + 1.385342.'61'(0.000000) + 1.069706.'67'(0.000000) + 1.422483.'69'(0.000000) + 1.394979.'70'(0.000000) + 1.465863.'79'(0.000000) + 1.726635.'83'(0.000000) + 1.330512.'89'(0.000000) + 1.158860.'91'(0.000000) + 1.409237.'98'(0.000000) + 0) <= 3.976768 ('55')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.045024.'100'(0.113551) + 1.379295.'82'(0.006163) + 1.802277.'49'(0.012099) + 0.975283.'36'(0.000069) + 1.310975.'26'(0.006163) + 0.632499.'25'(0.020365) + 2.732743.'25'(0.020365) + 1.988011.'22'(0.020365) + 1.164316.'21'(0.012099) + 2.100251.'18'(0.006163) + 2.165325.'16'(0.129552) + 1.190563.'41'(0.000000) + 1.661413.'43'(0.000000) + 2.694264.'53'(0.000000) + 1.387519.'54'(0.000000) + 2.151207.'58'(0.000000) + 0.691695.'60'(0.000000) + 1.533238.'62'(0.000000) + 2.333776.'70'(0.000000) + 2.026018.'74'(0.000000) + 1.219417.'75'(0.000000) + 2.077492.'79'(0.000000) + 2.232143.'86'(0.000000) + 1.600785.'89'(0.000000) + 1.249349.'93'(0.000000) + 1.022408.'94'(0.000000) + 1.128534.'97'(0.000000) + 0) <= 5.098103 ('89')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.633446.'82'(0.006163) + 1.469177.'40'(0.012099) + 1.417990.'28'(0.000069) + 1.312999.'19'(0.019293) + 3.149961.'19'(0.019293) + 1.681294.'51'(0.000000) + 1.024134.'52'(0.000000) + 1.858344.'58'(0.000000) + 2.909576.'67'(0.000000) + 0.571106.'69'(0.000000) + 1.270577.'71'(0.000000) + 2.256616.'81'(0.000000) + 1.012306.'81'(0.000000) + 2.699627.'84'(0.000000) + 1.368954.'85'(0.000000) + 1.370806.'94'(0.000000) + 2.113437.'96'(0.000000) + 0) <= 2.897600 ('97')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.661373.'88'(0.000069) + 2.792546.'78'(0.000069) + 2.099026.'76'(0.000069) + 0.746880.'50'(0.000069) + 0.832919.'42'(0.000069) + 1.442359.'39'(0.000069) + 2.334544.'39'(0.000069) + 0.537732.'36'(0.000069) + 0.749722.'30'(0.000069) + 2.396652.'28'(0.000069) + 2.596263.'43'(0.000000) + 0.076666.'43'(0.000000) + 1.104871.'45'(0.000000) + 1.229418.'46'(0.000000) + 1.895636.'57'(0.000000) + 2.619750.'60'(0.000000) + 1.171261.'62'(0.000000) + 1.072570.'64'(0.000000) + 1.616192.'66'(0.000000) + 0.977803.'68'(0.000000) + 1.581363.'73'(0.000000) + 0) <= 0.001144 ('2')
-> [0.000000]: [surf_maxmin/DEBUG] Variables
-> [0.000000]: [surf_maxmin/DEBUG] '100'(1.000000) : 0.113551
-> [0.000000]: [surf_maxmin/DEBUG] '90'(1.000000) : 0.240619
-> [0.000000]: [surf_maxmin/DEBUG] '88'(1.000000) : 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] '87'(1.000000) : 0.044062
-> [0.000000]: [surf_maxmin/DEBUG] '82'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '78'(1.000000) : 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] '76'(1.000000) : 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] '50'(1.000000) : 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] '49'(1.000000) : 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] '42'(1.000000) : 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] '40'(1.000000) : 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] '39'(1.000000) : 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] '38'(1.000000) : 0.020365
-> [0.000000]: [surf_maxmin/DEBUG] '36'(1.000000) : 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] '34'(1.000000) : 0.027475
-> [0.000000]: [surf_maxmin/DEBUG] '32'(1.000000) : 0.178987
-> [0.000000]: [surf_maxmin/DEBUG] '31'(1.000000) : 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] '30'(1.000000) : 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] '29'(1.000000) : 0.027475
-> [0.000000]: [surf_maxmin/DEBUG] '28'(1.000000) : 0.000069
-> [0.000000]: [surf_maxmin/DEBUG] '27'(1.000000) : 0.113551
-> [0.000000]: [surf_maxmin/DEBUG] '26'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '25'(1.000000) : 0.020365
-> [0.000000]: [surf_maxmin/DEBUG] '24'(1.000000) : 0.063103
-> [0.000000]: [surf_maxmin/DEBUG] '23'(1.000000) : 0.027475
-> [0.000000]: [surf_maxmin/DEBUG] '22'(1.000000) : 0.020365
-> [0.000000]: [surf_maxmin/DEBUG] '21'(1.000000) : 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] '20'(1.000000) : 0.030572
-> [0.000000]: [surf_maxmin/DEBUG] '19'(1.000000) : 0.019293
-> [0.000000]: [surf_maxmin/DEBUG] '18'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '17'(1.000000) : 0.113551
-> [0.000000]: [surf_maxmin/DEBUG] '16'(1.000000) : 0.129552
-> [0.000000]: [surf_maxmin/DEBUG] '15'(1.000000) : 0.030572
-> [0.000000]: [surf_maxmin/DEBUG] '14'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '13'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '12'(1.000000) : 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] '11'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '10'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '9'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '8'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '7'(1.000000) : 0.012099
-> [0.000000]: [surf_maxmin/DEBUG] '6'(1.000000) : 0.113551
-> [0.000000]: [surf_maxmin/DEBUG] '5'(1.000000) : 0.030572
-> [0.000000]: [surf_maxmin/DEBUG] '4'(1.000000) : 0.020365
-> [0.000000]: [surf_maxmin/DEBUG] '3'(1.000000) : 0.006163
-> [0.000000]: [surf_maxmin/DEBUG] '2'(1.000000) : 0.019293
-> [0.000000]: [surf_maxmin/DEBUG] '1'(1.000000) : 0.240619
-> [0.000000]: [surf_maxmin/DEBUG] '33'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '35'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '37'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '41'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '43'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '44'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '45'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '46'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '47'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '48'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '51'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '52'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '53'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '54'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '55'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '56'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '57'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '58'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '59'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '60'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '61'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '62'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '63'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '64'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '65'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '66'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '67'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '68'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '69'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '70'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '71'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '72'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '73'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '74'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '75'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '77'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '79'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '80'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '81'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '83'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '84'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '85'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '86'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '89'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '91'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '92'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '93'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '94'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '95'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '96'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '97'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '98'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '99'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] Active constraints : 100
+> [0.000000]: [ker_lmm/DEBUG] Constraint '39' usage: 23.134932 remaining: 2.116281 concurrency: 12<=13<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '75' usage: 18.507712 remaining: 3.572698 concurrency: 9<=10<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '46' usage: 17.325345 remaining: 6.944002 concurrency: 9<=10<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '25' usage: 17.916255 remaining: 5.331653 concurrency: 10<=10<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '71' usage: 19.481303 remaining: 3.013605 concurrency: 10<=10<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '1' usage: 16.318483 remaining: 9.971848 concurrency: 9<=10<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '93' usage: 18.188539 remaining: 2.336225 concurrency: 8<=9<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '73' usage: 16.269828 remaining: 3.266449 concurrency: 9<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '23' usage: 21.489847 remaining: 0.983468 concurrency: 11<=11<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '16' usage: 27.198881 remaining: 9.682616 concurrency: 13<=13<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '27' usage: 22.688002 remaining: 1.421201 concurrency: 12<=12<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '44' usage: 9.873107 remaining: 6.997584 concurrency: 4<=5<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '100' usage: 21.423903 remaining: 7.471216 concurrency: 11<=11<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '76' usage: 13.241625 remaining: 7.645926 concurrency: 7<=7<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '9' usage: 12.559901 remaining: 6.852195 concurrency: 5<=6<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '66' usage: 13.416108 remaining: 1.147460 concurrency: 9<=10<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '88' usage: 16.930558 remaining: 1.073653 concurrency: 8<=9<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '53' usage: 18.251764 remaining: 4.479802 concurrency: 9<=9<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '19' usage: 26.380432 remaining: 8.291469 concurrency: 14<=14<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '81' usage: 11.991138 remaining: 7.427648 concurrency: 5<=6<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '91' usage: 18.434739 remaining: 2.317585 concurrency: 10<=10<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '38' usage: 13.708452 remaining: 0.836230 concurrency: 8<=9<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '63' usage: 13.424493 remaining: 4.280912 concurrency: 8<=8<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '10' usage: 18.696579 remaining: 4.434529 concurrency: 8<=8<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '67' usage: 19.999816 remaining: 0.640673 concurrency: 9<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '51' usage: 14.712297 remaining: 0.298014 concurrency: 6<=7<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '30' usage: 14.801724 remaining: 9.888611 concurrency: 8<=8<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '24' usage: 18.525588 remaining: 6.716541 concurrency: 8<=10<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '37' usage: 18.052819 remaining: 5.247994 concurrency: 10<=10<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '87' usage: 16.333892 remaining: 0.198801 concurrency: 8<=9<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '84' usage: 34.348424 remaining: 7.538762 concurrency: 16<=16<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '40' usage: 8.193396 remaining: 2.989301 concurrency: 5<=7<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '64' usage: 15.628260 remaining: 0.116692 concurrency: 7<=7<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '7' usage: 8.249304 remaining: 3.967675 concurrency: 5<=6<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '54' usage: 17.788866 remaining: 8.921359 concurrency: 10<=10<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '35' usage: 32.641928 remaining: 2.936141 concurrency: 14<=15<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '41' usage: 18.516281 remaining: 0.533625 concurrency: 9<=9<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '83' usage: 15.609811 remaining: 2.303628 concurrency: 7<=7<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '57' usage: 12.924504 remaining: 3.477659 concurrency: 8<=9<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '48' usage: 17.931797 remaining: 7.654851 concurrency: 10<=10<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '82' usage: 26.165544 remaining: 6.968182 concurrency: 12<=12<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '28' usage: 17.959518 remaining: 8.346257 concurrency: 9<=10<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '74' usage: 17.407032 remaining: 0.090080 concurrency: 9<=9<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '62' usage: 18.270413 remaining: 3.565317 concurrency: 10<=10<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '86' usage: 14.202920 remaining: 1.242710 concurrency: 8<=8<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '11' usage: 17.989341 remaining: 0.273876 concurrency: 9<=9<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '17' usage: 22.905113 remaining: 0.928008 concurrency: 12<=12<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '45' usage: 16.114813 remaining: 5.334485 concurrency: 9<=9<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '12' usage: 16.089920 remaining: 9.139620 concurrency: 7<=8<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '61' usage: 13.715399 remaining: 3.488983 concurrency: 7<=8<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '26' usage: 18.319263 remaining: 6.918771 concurrency: 8<=9<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '34' usage: 18.482103 remaining: 9.085955 concurrency: 9<=9<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '90' usage: 16.443610 remaining: 8.600280 concurrency: 9<=9<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '15' usage: 19.961355 remaining: 7.783892 concurrency: 9<=10<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '69' usage: 18.386372 remaining: 3.798033 concurrency: 11<=11<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '72' usage: 16.960812 remaining: 7.727391 concurrency: 9<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '85' usage: 11.127546 remaining: 0.493042 concurrency: 6<=7<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '96' usage: 20.695537 remaining: 0.186473 concurrency: 10<=10<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '80' usage: 13.919767 remaining: 1.723405 concurrency: 8<=9<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '77' usage: 11.925941 remaining: 0.158212 concurrency: 5<=5<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '49' usage: 19.880942 remaining: 6.637946 concurrency: 10<=11<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '22' usage: 16.457289 remaining: 0.592432 concurrency: 8<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '79' usage: 15.738209 remaining: 9.973229 concurrency: 8<=8<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '56' usage: 10.937220 remaining: 6.522989 concurrency: 5<=6<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '21' usage: 15.809084 remaining: 2.730500 concurrency: 9<=10<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '31' usage: 14.616326 remaining: 2.984953 concurrency: 9<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '50' usage: 14.571069 remaining: 5.148891 concurrency: 9<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '20' usage: 14.337953 remaining: 8.296034 concurrency: 7<=8<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '43' usage: 18.424293 remaining: 9.565357 concurrency: 8<=8<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '70' usage: 18.920879 remaining: 9.033795 concurrency: 9<=10<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '3' usage: 23.763083 remaining: 3.023326 concurrency: 10<=11<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '32' usage: 19.844135 remaining: 7.892793 concurrency: 10<=10<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '78' usage: 21.962911 remaining: 8.316926 concurrency: 13<=13<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '58' usage: 12.467034 remaining: 6.378365 concurrency: 6<=6<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '8' usage: 19.379024 remaining: 8.463109 concurrency: 10<=11<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '65' usage: 3.001397 remaining: 6.216957 concurrency: 1<=2<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '29' usage: 19.844852 remaining: 0.341713 concurrency: 8<=8<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '68' usage: 20.473362 remaining: 5.783896 concurrency: 11<=12<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '18' usage: 14.893985 remaining: 8.763891 concurrency: 7<=8<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '47' usage: 17.464384 remaining: 5.406005 concurrency: 8<=8<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '59' usage: 22.388769 remaining: 8.833061 concurrency: 10<=11<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '4' usage: 15.502642 remaining: 2.360890 concurrency: 8<=9<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '14' usage: 19.880304 remaining: 9.391278 concurrency: 10<=10<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '98' usage: 16.729254 remaining: 8.071052 concurrency: 9<=10<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '33' usage: 11.603431 remaining: 0.733642 concurrency: 5<=5<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '36' usage: 21.608644 remaining: 1.194905 concurrency: 12<=13<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '60' usage: 19.699461 remaining: 6.477494 concurrency: 11<=11<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '99' usage: 22.508714 remaining: 4.269098 concurrency: 13<=13<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '42' usage: 15.704632 remaining: 6.139383 concurrency: 9<=10<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '94' usage: 15.529033 remaining: 5.857593 concurrency: 9<=9<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '92' usage: 15.425894 remaining: 8.420309 concurrency: 8<=8<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '52' usage: 16.677947 remaining: 9.034019 concurrency: 9<=10<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '5' usage: 15.074478 remaining: 3.965807 concurrency: 8<=9<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '95' usage: 6.911922 remaining: 4.179265 concurrency: 3<=3<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '6' usage: 10.581602 remaining: 3.879107 concurrency: 6<=6<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '13' usage: 14.565305 remaining: 5.586898 concurrency: 7<=8<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '55' usage: 13.880336 remaining: 3.976768 concurrency: 7<=8<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '89' usage: 18.295998 remaining: 5.098103 concurrency: 9<=9<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '97' usage: 8.983573 remaining: 2.897600 concurrency: 5<=6<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '2' usage: 16.593753 remaining: 0.001144 concurrency: 6<=6<=-1
+> [0.000000]: [ker_lmm/DEBUG] var=28, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=30, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=36, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=39, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=42, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=50, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=76, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=78, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=88, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.000069, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (28) value to 0.000069
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.000069, Var(28).penalty: 1.000000, Var(28).value: 0.000069
+> [0.000000]: [ker_lmm/DEBUG] Setting var (30) value to 0.000069
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.000069, Var(30).penalty: 1.000000, Var(30).value: 0.000069
+> [0.000000]: [ker_lmm/DEBUG] Setting var (36) value to 0.000069
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.000069, Var(36).penalty: 1.000000, Var(36).value: 0.000069
+> [0.000000]: [ker_lmm/DEBUG] Setting var (39) value to 0.000069
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.000069, Var(39).penalty: 1.000000, Var(39).value: 0.000069
+> [0.000000]: [ker_lmm/DEBUG] Setting var (42) value to 0.000069
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.000069, Var(42).penalty: 1.000000, Var(42).value: 0.000069
+> [0.000000]: [ker_lmm/DEBUG] Setting var (50) value to 0.000069
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.000069, Var(50).penalty: 1.000000, Var(50).value: 0.000069
+> [0.000000]: [ker_lmm/DEBUG] Setting var (76) value to 0.000069
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.000069, Var(76).penalty: 1.000000, Var(76).value: 0.000069
+> [0.000000]: [ker_lmm/DEBUG] Setting var (78) value to 0.000069
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.000069, Var(78).penalty: 1.000000, Var(78).value: 0.000069
+> [0.000000]: [ker_lmm/DEBUG] Setting var (88) value to 0.000069
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.000069, Var(88).penalty: 1.000000, Var(88).value: 0.000069
+> [0.000000]: [ker_lmm/DEBUG] index: 99         cnst_light_num: 100     || usage: 0.000000 remaining: 0.000000 bound: 0.001144
+> [0.000000]: [ker_lmm/DEBUG] var=3, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=8, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=9, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=10, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=11, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=13, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=14, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=18, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=26, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=82, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006163, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (3) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(3).penalty: 1.000000, Var(3).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] Setting var (8) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(8).penalty: 1.000000, Var(8).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] Setting var (9) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(9).penalty: 1.000000, Var(9).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] Setting var (10) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(10).penalty: 1.000000, Var(10).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] Setting var (11) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(11).penalty: 1.000000, Var(11).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] Setting var (13) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(13).penalty: 1.000000, Var(13).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] Setting var (14) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(14).penalty: 1.000000, Var(14).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] Setting var (18) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(18).penalty: 1.000000, Var(18).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] Setting var (26) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(26).penalty: 1.000000, Var(26).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] Setting var (82) value to 0.006163
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006163, Var(82).penalty: 1.000000, Var(82).value: 0.006163
+> [0.000000]: [ker_lmm/DEBUG] index: 42         cnst_light_num: 99      || usage: 0.000000 remaining: 0.000000 bound: 0.090080
+> [0.000000]: [ker_lmm/DEBUG] var=7, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=12, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=21, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=31, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=40, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=49, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.012099, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (7) value to 0.012099
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.012099, Var(7).penalty: 1.000000, Var(7).value: 0.012099
+> [0.000000]: [ker_lmm/DEBUG] Setting var (12) value to 0.012099
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.012099, Var(12).penalty: 1.000000, Var(12).value: 0.012099
+> [0.000000]: [ker_lmm/DEBUG] Setting var (21) value to 0.012099
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.012099, Var(21).penalty: 1.000000, Var(21).value: 0.012099
+> [0.000000]: [ker_lmm/DEBUG] Setting var (31) value to 0.012099
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.012099, Var(31).penalty: 1.000000, Var(31).value: 0.012099
+> [0.000000]: [ker_lmm/DEBUG] Setting var (40) value to 0.012099
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.012099, Var(40).penalty: 1.000000, Var(40).value: 0.012099
+> [0.000000]: [ker_lmm/DEBUG] Setting var (49) value to 0.012099
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.012099, Var(49).penalty: 1.000000, Var(49).value: 0.012099
+> [0.000000]: [ker_lmm/DEBUG] index: 57         cnst_light_num: 98      || usage: 0.000000 remaining: 0.000000 bound: 0.186473
+> [0.000000]: [ker_lmm/DEBUG] var=2, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.019293, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=19, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.019293, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (2) value to 0.019293
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.019293, Var(2).penalty: 1.000000, Var(2).value: 0.019293
+> [0.000000]: [ker_lmm/DEBUG] Setting var (19) value to 0.019293
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.019293, Var(19).penalty: 1.000000, Var(19).value: 0.019293
+> [0.000000]: [ker_lmm/DEBUG] index: 32         cnst_light_num: 97      || usage: 0.000000 remaining: 0.000000 bound: 0.116692
+> [0.000000]: [ker_lmm/DEBUG] index: 42         cnst_light_num: 96      || usage: 0.000000 remaining: 2.783556 bound: 2.897600
+> [0.000000]: [ker_lmm/DEBUG] var=4, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.020365, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=22, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.020365, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=25, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.020365, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=38, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.020365, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (4) value to 0.020365
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.020365, Var(4).penalty: 1.000000, Var(4).value: 0.020365
+> [0.000000]: [ker_lmm/DEBUG] Setting var (22) value to 0.020365
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.020365, Var(22).penalty: 1.000000, Var(22).value: 0.020365
+> [0.000000]: [ker_lmm/DEBUG] Setting var (25) value to 0.020365
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.020365, Var(25).penalty: 1.000000, Var(25).value: 0.020365
+> [0.000000]: [ker_lmm/DEBUG] index: 84         cnst_light_num: 95      || usage: 0.000000 remaining: 0.638113 bound: 0.733642
+> [0.000000]: [ker_lmm/DEBUG] Setting var (38) value to 0.020365
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.020365, Var(38).penalty: 1.000000, Var(38).value: 0.020365
+> [0.000000]: [ker_lmm/DEBUG] index: 59         cnst_light_num: 94      || usage: 0.000000 remaining: 0.000000 bound: 0.158212
+> [0.000000]: [ker_lmm/DEBUG] var=23, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.027475, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=29, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.027475, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=34, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.027475, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (23) value to 0.027475
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.027475, Var(23).penalty: 1.000000, Var(23).value: 0.027475
+> [0.000000]: [ker_lmm/DEBUG] Setting var (29) value to 0.027475
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.027475, Var(29).penalty: 1.000000, Var(29).value: 0.027475
+> [0.000000]: [ker_lmm/DEBUG] Setting var (34) value to 0.027475
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.027475, Var(34).penalty: 1.000000, Var(34).value: 0.027475
+> [0.000000]: [ker_lmm/DEBUG] index: 25         cnst_light_num: 93      || usage: 0.000000 remaining: 0.000000 bound: 0.298014
+> [0.000000]: [ker_lmm/DEBUG] var=5, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.030572, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=15, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.030572, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=20, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.030572, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (5) value to 0.030572
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.030572, Var(5).penalty: 1.000000, Var(5).value: 0.030572
+> [0.000000]: [ker_lmm/DEBUG] Setting var (15) value to 0.030572
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.030572, Var(15).penalty: 1.000000, Var(15).value: 0.030572
+> [0.000000]: [ker_lmm/DEBUG] index: 36         cnst_light_num: 92      || usage: 0.000000 remaining: 0.267956 bound: 0.533625
+> [0.000000]: [ker_lmm/DEBUG] index: 62         cnst_light_num: 91      || usage: 0.000000 remaining: 9.779088 bound: 9.973229
+> [0.000000]: [ker_lmm/DEBUG] Setting var (20) value to 0.030572
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.030572, Var(20).penalty: 1.000000, Var(20).value: 0.030572
+> [0.000000]: [ker_lmm/DEBUG] index: 31         cnst_light_num: 90      || usage: 0.000000 remaining: 2.851407 bound: 2.989301
+> [0.000000]: [ker_lmm/DEBUG] index: 76         cnst_light_num: 89      || usage: 0.000000 remaining: 0.000000 bound: 0.341713
+> [0.000000]: [ker_lmm/DEBUG] var=87, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044062, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (87) value to 0.044062
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.044062, Var(87).penalty: 1.000000, Var(87).value: 0.044062
+> [0.000000]: [ker_lmm/DEBUG] index: 45         cnst_light_num: 88      || usage: 0.000000 remaining: 0.000000 bound: 0.273876
+> [0.000000]: [ker_lmm/DEBUG] index: 76         cnst_light_num: 87      || usage: 0.000000 remaining: 5.886658 bound: 6.139383
+> [0.000000]: [ker_lmm/DEBUG] var=24, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.063103, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (24) value to 0.063103
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.063103, Var(24).penalty: 1.000000, Var(24).value: 0.063103
+> [0.000000]: [ker_lmm/DEBUG] index: 62         cnst_light_num: 86      || usage: 0.000000 remaining: 8.159271 bound: 8.420309
+> [0.000000]: [ker_lmm/DEBUG] index: 28         cnst_light_num: 85      || usage: 0.000000 remaining: 4.818691 bound: 5.247994
+> [0.000000]: [ker_lmm/DEBUG] index: 31         cnst_light_num: 84      || usage: 0.000000 remaining: 5.607641 bound: 5.857593
+> [0.000000]: [ker_lmm/DEBUG] index: 29         cnst_light_num: 83      || usage: 0.000000 remaining: 0.000000 bound: 0.198801
+> [0.000000]: [ker_lmm/DEBUG] index: 67         cnst_light_num: 82      || usage: 0.000000 remaining: 8.057214 bound: 8.296034
+> [0.000000]: [ker_lmm/DEBUG] var=6, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.113551, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=17, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.113551, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=27, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.113551, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=100, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.113551, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (6) value to 0.113551
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.113551, Var(6).penalty: 1.000000, Var(6).value: 0.113551
+> [0.000000]: [ker_lmm/DEBUG] index: 77         cnst_light_num: 81      || usage: 0.000000 remaining: 5.218475 bound: 5.783896
+> [0.000000]: [ker_lmm/DEBUG] Setting var (17) value to 0.113551
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.113551, Var(17).penalty: 1.000000, Var(17).value: 0.113551
+> [0.000000]: [ker_lmm/DEBUG] index: 21         cnst_light_num: 80      || usage: 0.000000 remaining: 0.388630 bound: 0.836230
+> [0.000000]: [ker_lmm/DEBUG] index: 75         cnst_light_num: 79      || usage: 0.000000 remaining: 6.017457 bound: 6.216957
+> [0.000000]: [ker_lmm/DEBUG] index: 31         cnst_light_num: 78      || usage: 0.000000 remaining: 7.606683 bound: 8.071052
+> [0.000000]: [ker_lmm/DEBUG] Setting var (27) value to 0.113551
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.113551, Var(27).penalty: 1.000000, Var(27).value: 0.113551
+> [0.000000]: [ker_lmm/DEBUG] index: 51         cnst_light_num: 77      || usage: 0.000000 remaining: 8.718926 bound: 9.085955
+> [0.000000]: [ker_lmm/DEBUG] index: 66         cnst_light_num: 76      || usage: 0.000000 remaining: 4.794121 bound: 5.148891
+> [0.000000]: [ker_lmm/DEBUG] index: 50         cnst_light_num: 75      || usage: 0.000000 remaining: 6.460026 bound: 6.918771
+> [0.000000]: [ker_lmm/DEBUG] index: 60         cnst_light_num: 74      || usage: 0.000000 remaining: 6.067488 bound: 6.637946
+> [0.000000]: [ker_lmm/DEBUG] index: 43         cnst_light_num: 73      || usage: 0.000000 remaining: 3.146097 bound: 3.565317
+> [0.000000]: [ker_lmm/DEBUG] index: 25         cnst_light_num: 72      || usage: 0.000000 remaining: 3.602642 bound: 3.965807
+> [0.000000]: [ker_lmm/DEBUG] index: 52         cnst_light_num: 71      || usage: 0.000000 remaining: 8.198326 bound: 8.600280
+> [0.000000]: [ker_lmm/DEBUG] Setting var (100) value to 0.113551
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.113551, Var(100).penalty: 1.000000, Var(100).value: 0.113551
+> [0.000000]: [ker_lmm/DEBUG] index: 68         cnst_light_num: 70      || usage: 0.000000 remaining: 9.103700 bound: 9.565357
+> [0.000000]: [ker_lmm/DEBUG] index: 21         cnst_light_num: 69      || usage: 0.000000 remaining: 4.752302 bound: 5.406005
+> [0.000000]: [ker_lmm/DEBUG] index: 51         cnst_light_num: 68      || usage: 0.000000 remaining: 5.995961 bound: 6.477494
+> [0.000000]: [ker_lmm/DEBUG] index: 34         cnst_light_num: 67      || usage: 0.000000 remaining: 8.390153 bound: 8.921359
+> [0.000000]: [ker_lmm/DEBUG] index: 22         cnst_light_num: 66      || usage: 0.000000 remaining: 3.919797 bound: 4.280912
+> [0.000000]: [ker_lmm/DEBUG] index: 43         cnst_light_num: 65      || usage: 0.000000 remaining: 7.833335 bound: 8.316926
+> [0.000000]: [ker_lmm/DEBUG] index: 60         cnst_light_num: 64      || usage: 0.000000 remaining: 6.178238 bound: 6.378365
+> [0.000000]: [ker_lmm/DEBUG] index: 46         cnst_light_num: 63      || usage: 0.000000 remaining: 0.000000 bound: 0.928008
+> [0.000000]: [ker_lmm/DEBUG] var=16, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.129552, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (16) value to 0.129552
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.129552, Var(16).penalty: 1.000000, Var(16).value: 0.129552
+> [0.000000]: [ker_lmm/DEBUG] index: 59         cnst_light_num: 62      || usage: 0.000000 remaining: 3.478739 bound: 4.179265
+> [0.000000]: [ker_lmm/DEBUG] index: 58         cnst_light_num: 61      || usage: 0.000000 remaining: 1.386297 bound: 1.723405
+> [0.000000]: [ker_lmm/DEBUG] index: 49         cnst_light_num: 60      || usage: 0.000000 remaining: 3.121491 bound: 3.488983
+> [0.000000]: [ker_lmm/DEBUG] index: 31         cnst_light_num: 59      || usage: 0.000000 remaining: 8.191805 bound: 8.833061
+> [0.000000]: [ker_lmm/DEBUG] index: 57         cnst_light_num: 58      || usage: 0.000000 remaining: 4.410861 bound: 5.098103
+> [0.000000]: [ker_lmm/DEBUG] index: 49         cnst_light_num: 57      || usage: 0.000000 remaining: 0.000000 bound: 0.592432
+> [0.000000]: [ker_lmm/DEBUG] index: 25         cnst_light_num: 56      || usage: 0.000000 remaining: 7.334506 bound: 7.892793
+> [0.000000]: [ker_lmm/DEBUG] index: 38         cnst_light_num: 55      || usage: 0.000000 remaining: 3.071667 bound: 3.477659
+> [0.000000]: [ker_lmm/DEBUG] index: 36         cnst_light_num: 54      || usage: 0.000000 remaining: 8.569378 bound: 9.034019
+> [0.000000]: [ker_lmm/DEBUG] index: 29         cnst_light_num: 53      || usage: 0.000000 remaining: 8.800536 bound: 9.391278
+> [0.000000]: [ker_lmm/DEBUG] var=32, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.178987, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (32) value to 0.178987
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.178987, Var(32).penalty: 1.000000, Var(32).value: 0.178987
+> [0.000000]: [ker_lmm/DEBUG] index: 36         cnst_light_num: 52      || usage: 0.000000 remaining: 7.287142 bound: 7.783892
+> [0.000000]: [ker_lmm/DEBUG] index: 24         cnst_light_num: 51      || usage: 0.000000 remaining: 0.066420 bound: 0.640673
+> [0.000000]: [ker_lmm/DEBUG] index: 49         cnst_light_num: 50      || usage: 0.000000 remaining: 0.000000 bound: 0.493042
+> [0.000000]: [ker_lmm/DEBUG] index: 42         cnst_light_num: 49      || usage: 0.000000 remaining: 4.998275 bound: 5.586898
+> [0.000000]: [ker_lmm/DEBUG] index: 33         cnst_light_num: 48      || usage: 0.000000 remaining: 3.581372 bound: 3.967675
+> [0.000000]: [ker_lmm/DEBUG] index: 32         cnst_light_num: 47      || usage: 0.000000 remaining: 3.263646 bound: 3.976768
+> [0.000000]: [ker_lmm/DEBUG] index: 40         cnst_light_num: 46      || usage: 0.000000 remaining: 6.250569 bound: 6.968182
+> [0.000000]: [ker_lmm/DEBUG] index: 36         cnst_light_num: 45      || usage: 0.000000 remaining: 1.526940 bound: 2.360890
+> [0.000000]: [ker_lmm/DEBUG] index: 24         cnst_light_num: 44      || usage: 0.000000 remaining: 7.111978 bound: 8.463109
+> [0.000000]: [ker_lmm/DEBUG] index: 36         cnst_light_num: 43      || usage: 0.000000 remaining: 0.392880 bound: 1.242710
+> [0.000000]: [ker_lmm/DEBUG] index: 26         cnst_light_num: 42      || usage: 0.000000 remaining: 9.193374 bound: 9.888611
+> [0.000000]: [ker_lmm/DEBUG] index: 25         cnst_light_num: 41      || usage: 0.000000 remaining: 6.847590 bound: 7.727391
+> [0.000000]: [ker_lmm/DEBUG] index: 22         cnst_light_num: 40      || usage: 0.000000 remaining: 2.505546 bound: 2.984953
+> [0.000000]: [ker_lmm/DEBUG] index: 25         cnst_light_num: 39      || usage: 0.000000 remaining: 3.505253 bound: 4.269098
+> [0.000000]: [ker_lmm/DEBUG] index: 32         cnst_light_num: 38      || usage: 0.000000 remaining: 0.735570 bound: 1.194905
+> [0.000000]: [ker_lmm/DEBUG] var=1, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.240619, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=90, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.240619, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (1) value to 0.240619
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.240619, Var(1).penalty: 1.000000, Var(1).value: 0.240619
+> [0.000000]: [ker_lmm/DEBUG] index: 0          cnst_light_num: 37      || usage: 0.000000 remaining: 1.067608 bound: 2.116281
+> [0.000000]: [ker_lmm/DEBUG] index: 1          cnst_light_num: 36      || usage: 0.000000 remaining: 2.660215 bound: 3.572698
+> [0.000000]: [ker_lmm/DEBUG] index: 2          cnst_light_num: 35      || usage: 0.000000 remaining: 6.051824 bound: 6.944002
+> [0.000000]: [ker_lmm/DEBUG] index: 3          cnst_light_num: 34      || usage: 0.000000 remaining: 4.142217 bound: 5.331653
+> [0.000000]: [ker_lmm/DEBUG] index: 4          cnst_light_num: 33      || usage: 0.000000 remaining: 2.089471 bound: 3.013605
+> [0.000000]: [ker_lmm/DEBUG] index: 5          cnst_light_num: 32      || usage: 0.000000 remaining: 9.675459 bound: 9.971848
+> [0.000000]: [ker_lmm/DEBUG] index: 6          cnst_light_num: 31      || usage: 0.000000 remaining: 1.464022 bound: 2.336225
+> [0.000000]: [ker_lmm/DEBUG] index: 7          cnst_light_num: 30      || usage: 0.000000 remaining: 2.361413 bound: 3.266449
+> [0.000000]: [ker_lmm/DEBUG] index: 10         cnst_light_num: 29      || usage: 0.000000 remaining: 0.206981 bound: 1.421201
+> [0.000000]: [ker_lmm/DEBUG] index: 14         cnst_light_num: 28      || usage: 0.000000 remaining: 5.925434 bound: 6.852195
+> [0.000000]: [ker_lmm/DEBUG] index: 12         cnst_light_num: 27      || usage: 0.000000 remaining: 6.467453 bound: 7.471216
+> [0.000000]: [ker_lmm/DEBUG] index: 15         cnst_light_num: 26      || usage: 0.000000 remaining: 0.528882 bound: 1.147460
+> [0.000000]: [ker_lmm/DEBUG] index: 11         cnst_light_num: 25      || usage: 0.000000 remaining: 6.043090 bound: 6.997584
+> [0.000000]: [ker_lmm/DEBUG] index: 16         cnst_light_num: 24      || usage: 0.000000 remaining: 0.137015 bound: 1.073653
+> [0.000000]: [ker_lmm/DEBUG] index: 18         cnst_light_num: 23      || usage: 0.000000 remaining: 7.156679 bound: 8.291469
+> [0.000000]: [ker_lmm/DEBUG] index: 19         cnst_light_num: 22      || usage: 0.000000 remaining: 6.445574 bound: 7.427648
+> [0.000000]: [ker_lmm/DEBUG] index: 20         cnst_light_num: 21      || usage: 0.000000 remaining: 1.709186 bound: 2.317585
+> [0.000000]: [ker_lmm/DEBUG] Setting var (90) value to 0.240619
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.240619, Var(90).penalty: 1.000000, Var(90).value: 0.240619
+> [0.000000]: [ker_lmm/DEBUG] index: 5          cnst_light_num: 20      || usage: 0.000000 remaining: 6.067744 bound: 6.522989
+> [0.000000]: [ker_lmm/DEBUG] index: 11         cnst_light_num: 19      || usage: 0.000000 remaining: 1.774307 bound: 2.730500
+> [0.000000]: [ker_lmm/DEBUG] index: 17         cnst_light_num: 18      || usage: 0.000000 remaining: 2.879034 bound: 4.479802
+> [0.000000]: [ker_lmm/DEBUG] index: 8          cnst_light_num: 17      || usage: 0.000000 remaining: 0.000000 bound: 0.983468
+> [0.000000]: [ker_lmm/DEBUG] index: 14         cnst_light_num: 16      || usage: 0.000000 remaining: 5.759572 bound: 6.716541
+> [0.000000]: [ker_lmm/DEBUG] index: 8          cnst_light_num: 15      || usage: 0.000000 remaining: 3.484649 bound: 4.434529
+> [0.000000]: [ker_lmm/DEBUG] index: 11         cnst_light_num: 14      || usage: 0.000000 remaining: 7.266561 bound: 7.654851
+> [0.000000]: [ker_lmm/DEBUG] index: 7          cnst_light_num: 13      || usage: 0.000000 remaining: 1.997650 bound: 3.023326
+> [0.000000]: [ker_lmm/DEBUG] index: 1          cnst_light_num: 12      || usage: 0.000000 remaining: 1.639393 bound: 2.936141
+> [0.000000]: [ker_lmm/DEBUG] index: 5          cnst_light_num: 11      || usage: 0.000000 remaining: 8.141912 bound: 9.033795
+> [0.000000]: [ker_lmm/DEBUG] index: 8          cnst_light_num: 10      || usage: 0.000000 remaining: 2.797747 bound: 3.798033
+> [0.000000]: [ker_lmm/DEBUG] index: 6          cnst_light_num: 9       || usage: 0.000000 remaining: 4.925453 bound: 7.538762
+> [0.000000]: [ker_lmm/DEBUG] index: 3          cnst_light_num: 8       || usage: 0.000000 remaining: 4.119743 bound: 5.334485
+> [0.000000]: [ker_lmm/DEBUG] index: 6          cnst_light_num: 7       || usage: 0.000000 remaining: 8.191982 bound: 9.682616
+> [0.000000]: [ker_lmm/DEBUG] index: 2          cnst_light_num: 6       || usage: 0.000000 remaining: 8.252791 bound: 8.763891
+> [0.000000]: [ker_lmm/DEBUG] index: 3          cnst_light_num: 5       || usage: 0.000000 remaining: 7.340042 bound: 8.346257
+> [0.000000]: [ker_lmm/DEBUG] index: 1          cnst_light_num: 4       || usage: 0.000000 remaining: 6.272851 bound: 7.645926
+> [0.000000]: [ker_lmm/DEBUG] index: 1          cnst_light_num: 3       || usage: 0.000000 remaining: 1.448255 bound: 2.303628
+> [0.000000]: [ker_lmm/DEBUG] index: 1          cnst_light_num: 2       || usage: 0.000000 remaining: 3.095332 bound: 3.879107
+> [0.000000]: [ker_lmm/DEBUG] index: 0          cnst_light_num: 1       || usage: 0.000000 remaining: 8.573010 bound: 9.139620
+> [0.000000]: [ker_lmm/DEBUG] MAX-MIN ( '100'(1.000000) '90'(1.000000) '88'(1.000000) '87'(1.000000) '82'(1.000000) '78'(1.000000) '76'(1.000000) '50'(1.000000) '49'(1.000000) '42'(1.000000) '40'(1.000000) '39'(1.000000) '38'(1.000000) '36'(1.000000) '34'(1.000000) '32'(1.000000) '31'(1.000000) '30'(1.000000) '29'(1.000000) '28'(1.000000) '27'(1.000000) '26'(1.000000) '25'(1.000000) '24'(1.000000) '23'(1.000000) '22'(1.000000) '21'(1.000000) '20'(1.000000) '19'(1.000000) '18'(1.000000) '17'(1.000000) '16'(1.000000) '15'(1.000000) '14'(1.000000) '13'(1.000000) '12'(1.000000) '11'(1.000000) '10'(1.000000) '9'(1.000000) '8'(1.000000) '7'(1.000000) '6'(1.000000) '5'(1.000000) '4'(1.000000) '3'(1.000000) '2'(1.000000) '1'(1.000000) '33'(0.000000) '35'(0.000000) '37'(0.000000) '41'(0.000000) '43'(0.000000) '44'(0.000000) '45'(0.000000) '46'(0.000000) '47'(0.000000) '48'(0.000000) '51'(0.000000) '52'(0.000000) '53'(0.000000) '54'(0.000000) '55'(0.000000) '56'(0.000000) '57'(0.000000) '58'(0.000000) '59'(0.000000) '60'(0.000000) '61'(0.000000) '62'(0.000000) '63'(0.000000) '64'(0.000000) '65'(0.000000) '66'(0.000000) '67'(0.000000) '68'(0.000000) '69'(0.000000) '70'(0.000000) '71'(0.000000) '72'(0.000000) '73'(0.000000) '74'(0.000000) '75'(0.000000) '77'(0.000000) '79'(0.000000) '80'(0.000000) '81'(0.000000) '83'(0.000000) '84'(0.000000) '85'(0.000000) '86'(0.000000) '89'(0.000000) '91'(0.000000) '92'(0.000000) '93'(0.000000) '94'(0.000000) '95'(0.000000) '96'(0.000000) '97'(0.000000) '98'(0.000000) '99'(0.000000) )
+> [0.000000]: [ker_lmm/DEBUG] Constraints
+> [0.000000]: [ker_lmm/DEBUG]  (1.297879.'88'(0.000069) + 0.916271.'49'(0.012099) + 1.526967.'39'(0.000069) + 1.729887.'38'(0.020365) + 1.281100.'32'(0.178987) + 1.748356.'31'(0.012099) + 1.891618.'28'(0.000069) + 1.124029.'27'(0.113551) + 0.518519.'26'(0.006163) + 2.988088.'26'(0.006163) + 1.347184.'22'(0.020365) + 0.840580.'18'(0.006163) + 1.088904.'17'(0.113551) + 1.016175.'15'(0.030572) + 0.354314.'13'(0.006163) + 2.177278.'6'(0.113551) + 0.655051.'4'(0.020365) + 0.632733.'1'(0.240619) + 0.621028.'51'(0.000000) + 1.671412.'64'(0.000000) + 1.239743.'66'(0.000000) + 1.417212.'70'(0.000000) + 2.377538.'71'(0.000000) + 0.244423.'71'(0.000000) + 2.098518.'77'(0.000000) + 2.145691.'80'(0.000000) + 0.752112.'83'(0.000000) + 1.911794.'84'(0.000000) + 1.866781.'85'(0.000000) + 0.721991.'91'(0.000000) + 2.444267.'97'(0.000000) + 0.989651.'98'(0.000000) + 0) <= 2.116281 ('39')
+> [0.000000]: [ker_lmm/DEBUG]  (0.909797.'82'(0.006163) + 1.823013.'42'(0.000069) + 2.107213.'34'(0.027475) + 1.607995.'18'(0.006163) + 2.613369.'12'(0.012099) + 2.067163.'7'(0.012099) + 0.216818.'6'(0.113551) + 2.697628.'6'(0.113551) + 1.225033.'5'(0.030572) + 1.651882.'2'(0.019293) + 1.587801.'1'(0.240619) + 0.362909.'48'(0.000000) + 0.976717.'57'(0.000000) + 1.189523.'58'(0.000000) + 1.301711.'65'(0.000000) + 2.025516.'68'(0.000000) + 1.272786.'69'(0.000000) + 1.872021.'71'(0.000000) + 0.356784.'71'(0.000000) + 1.923451.'73'(0.000000) + 1.852550.'75'(0.000000) + 1.771579.'85'(0.000000) + 0.813574.'86'(0.000000) + 0.080435.'91'(0.000000) + 1.428175.'97'(0.000000) + 1.659642.'99'(0.000000) + 0) <= 3.572698 ('75')
+> [0.000000]: [ker_lmm/DEBUG]  (1.068549.'34'(0.027475) + 1.615785.'29'(0.027475) + 1.576644.'27'(0.113551) + 2.358442.'13'(0.006163) + 2.863593.'9'(0.006163) + 1.554199.'6'(0.113551) + 2.323730.'3'(0.006163) + 2.428546.'2'(0.019293) + 1.535856.'1'(0.240619) + 1.478849.'35'(0.000000) + 0.338710.'35'(0.000000) + 1.265801.'44'(0.000000) + 0.608467.'46'(0.000000) + 2.096804.'52'(0.000000) + 0.534833.'52'(0.000000) + 1.145875.'54'(0.000000) + 1.089862.'57'(0.000000) + 2.321734.'59'(0.000000) + 1.361919.'80'(0.000000) + 1.134466.'81'(0.000000) + 0.561975.'86'(0.000000) + 1.314230.'91'(0.000000) + 0.739081.'93'(0.000000) + 1.132757.'94'(0.000000) + 0) <= 6.944002 ('46')
+> [0.000000]: [ker_lmm/DEBUG]  (1.471157.'100'(0.113551) + 1.827448.'49'(0.012099) + 2.088986.'38'(0.020365) + 1.520193.'32'(0.178987) + 1.817948.'27'(0.113551) + 1.649740.'24'(0.063103) + 1.180135.'22'(0.020365) + 0.650011.'21'(0.012099) + 2.001106.'12'(0.012099) + 2.446473.'9'(0.006163) + 1.263057.'1'(0.240619) + 2.161355.'37'(0.000000) + 1.551889.'43'(0.000000) + 0.556812.'57'(0.000000) + 2.037451.'80'(0.000000) + 2.396411.'91'(0.000000) + 1.530804.'94'(0.000000) + 0) <= 5.331653 ('25')
+> [0.000000]: [ker_lmm/DEBUG]  (1.628480.'100'(0.113551) + 1.955050.'88'(0.000069) + 0.570097.'87'(0.044062) + 1.925527.'36'(0.000069) + 1.738056.'27'(0.113551) + 1.081955.'26'(0.006163) + 1.234649.'26'(0.006163) + 1.845992.'25'(0.020365) + 1.927213.'22'(0.020365) + 1.261680.'17'(0.113551) + 0.308714.'12'(0.012099) + 0.329799.'4'(0.020365) + 2.780516.'4'(0.020365) + 0.893575.'1'(0.240619) + 1.296498.'45'(0.000000) + 1.096067.'54'(0.000000) + 1.654531.'59'(0.000000) + 1.625805.'65'(0.000000) + 1.592879.'70'(0.000000) + 0.678078.'83'(0.000000) + 1.635282.'85'(0.000000) + 1.083636.'86'(0.000000) + 1.579435.'94'(0.000000) + 0) <= 3.013605 ('71')
+> [0.000000]: [ker_lmm/DEBUG]  (1.293046.'88'(0.000069) + 1.506159.'50'(0.000069) + 0.175789.'39'(0.000069) + 0.745875.'30'(0.000069) + 1.993478.'29'(0.027475) + 1.139358.'26'(0.006163) + 1.166618.'25'(0.020365) + 0.837716.'16'(0.129552) + 1.607368.'13'(0.006163) + 2.034158.'10'(0.006163) + 2.591113.'9'(0.006163) + 1.014317.'7'(0.012099) + 0.213488.'1'(0.240619) + 2.970221.'41'(0.000000) + 1.037448.'43'(0.000000) + 1.354941.'45'(0.000000) + 0.671782.'47'(0.000000) + 2.419070.'54'(0.000000) + 1.013054.'55'(0.000000) + 0.961739.'58'(0.000000) + 1.457930.'59'(0.000000) + 0.203310.'62'(0.000000) + 1.251378.'69'(0.000000) + 1.659311.'72'(0.000000) + 1.466975.'74'(0.000000) + 2.040489.'77'(0.000000) + 1.931628.'79'(0.000000) + 1.788263.'80'(0.000000) + 1.620051.'84'(0.000000) + 1.207535.'95'(0.000000) + 0.910275.'96'(0.000000) + 0) <= 9.971848 ('1')
+> [0.000000]: [ker_lmm/DEBUG]  (0.990586.'39'(0.000069) + 2.131411.'24'(0.063103) + 0.621902.'22'(0.020365) + 2.086164.'20'(0.030572) + 0.210336.'16'(0.129552) + 1.491874.'9'(0.006163) + 2.003255.'7'(0.012099) + 1.106248.'5'(0.030572) + 2.092315.'4'(0.020365) + 0.824322.'2'(0.019293) + 2.737673.'2'(0.019293) + 1.892454.'1'(0.240619) + 1.528484.'47'(0.000000) + 1.803000.'68'(0.000000) + 0.922888.'85'(0.000000) + 0.955092.'97'(0.000000) + 2.198722.'99'(0.000000) + 0) <= 2.336225 ('93')
+> [0.000000]: [ker_lmm/DEBUG]  (1.967166.'49'(0.012099) + 1.346883.'40'(0.012099) + 1.787764.'34'(0.027475) + 0.939045.'29'(0.027475) + 1.520401.'23'(0.027475) + 1.264815.'17'(0.113551) + 1.877503.'14'(0.006163) + 0.163844.'9'(0.006163) + 2.127624.'6'(0.113551) + 0.522525.'5'(0.030572) + 1.488141.'4'(0.020365) + 1.264118.'1'(0.240619) + 2.480001.'35'(0.000000) + 2.116358.'44'(0.000000) + 1.342816.'46'(0.000000) + 0.375253.'70'(0.000000) + 1.241586.'83'(0.000000) + 2.342744.'85'(0.000000) + 2.789068.'91'(0.000000) + 0.846732.'93'(0.000000) + 1.820806.'94'(0.000000) + 0.822933.'95'(0.000000) + 0) <= 3.266449 ('73')
+> [0.000000]: [ker_lmm/DEBUG]  (1.374460.'100'(0.113551) + 1.271968.'90'(0.240619) + 1.031001.'82'(0.006163) + 2.651630.'78'(0.000069) + 1.115624.'39'(0.000069) + 1.987671.'39'(0.000069) + 0.744092.'34'(0.027475) + 2.409392.'16'(0.129552) + 1.960181.'14'(0.006163) + 2.084344.'12'(0.012099) + 2.195351.'10'(0.006163) + 2.174691.'8'(0.006163) + 0.489442.'1'(0.240619) + 2.295264.'41'(0.000000) + 0.706952.'44'(0.000000) + 1.310850.'47'(0.000000) + 1.295424.'55'(0.000000) + 1.681472.'57'(0.000000) + 2.626108.'64'(0.000000) + 1.059154.'75'(0.000000) + 1.711404.'79'(0.000000) + 1.423176.'81'(0.000000) + 1.259892.'89'(0.000000) + 2.882970.'95'(0.000000) + 0.062303.'95'(0.000000) + 1.901460.'97'(0.000000) + 0) <= 0.983468 ('23')
+> [0.000000]: [ker_lmm/DEBUG]  (2.089073.'90'(0.240619) + 1.377723.'82'(0.006163) + 1.501099.'36'(0.000069) + 1.566816.'32'(0.178987) + 0.455171.'31'(0.012099) + 2.400881.'25'(0.020365) + 1.312747.'24'(0.063103) + 1.333604.'22'(0.020365) + 2.079396.'21'(0.012099) + 0.966348.'20'(0.030572) + 2.973575.'20'(0.030572) + 2.552978.'9'(0.006163) + 2.848576.'8'(0.006163) + 2.382727.'7'(0.012099) + 1.358167.'1'(0.240619) + 2.252873.'41'(0.000000) + 0.938153.'41'(0.000000) + 1.442083.'48'(0.000000) + 1.705100.'51'(0.000000) + 0.760684.'53'(0.000000) + 1.453240.'57'(0.000000) + 1.171455.'62'(0.000000) + 1.009564.'64'(0.000000) + 0.996080.'67'(0.000000) + 0.826062.'68'(0.000000) + 1.170504.'69'(0.000000) + 2.283628.'71'(0.000000) + 1.412631.'74'(0.000000) + 1.289621.'75'(0.000000) + 1.770571.'94'(0.000000) + 1.934213.'96'(0.000000) + 0) <= 9.682616 ('16')
+> [0.000000]: [ker_lmm/DEBUG]  (2.451938.'34'(0.027475) + 2.348301.'28'(0.000069) + 2.321913.'25'(0.020365) + 1.166203.'21'(0.012099) + 1.928864.'21'(0.012099) + 1.152245.'19'(0.019293) + 1.176884.'17'(0.113551) + 2.231214.'16'(0.129552) + 1.380075.'13'(0.006163) + 0.200704.'11'(0.006163) + 2.402722.'9'(0.006163) + 1.009861.'5'(0.030572) + 0.636972.'4'(0.020365) + 2.280106.'1'(0.240619) + 0.407059.'47'(0.000000) + 2.136955.'48'(0.000000) + 0.624151.'51'(0.000000) + 1.138944.'56'(0.000000) + 0.044674.'56'(0.000000) + 0.611510.'57'(0.000000) + 1.517609.'59'(0.000000) + 0.005066.'61'(0.000000) + 0.172940.'62'(0.000000) + 0.361219.'63'(0.000000) + 1.196244.'63'(0.000000) + 1.653000.'67'(0.000000) + 1.867473.'72'(0.000000) + 0.063037.'74'(0.000000) + 1.022687.'83'(0.000000) + 0.843967.'86'(0.000000) + 0.273728.'96'(0.000000) + 1.121571.'99'(0.000000) + 0) <= 1.421201 ('27')
+> [0.000000]: [ker_lmm/DEBUG]  (1.282944.'38'(0.020365) + 0.875056.'21'(0.012099) + 1.880093.'20'(0.030572) + 0.949451.'11'(0.006163) + 1.405174.'7'(0.012099) + 0.729518.'1'(0.240619) + 2.750872.'1'(0.240619) + 0.967214.'33'(0.000000) + 1.786924.'45'(0.000000) + 2.669057.'48'(0.000000) + 1.502766.'51'(0.000000) + 0.635543.'66'(0.000000) + 1.400005.'80'(0.000000) + 1.908932.'92'(0.000000) + 0.911225.'95'(0.000000) + 0) <= 6.997584 ('44')
+> [0.000000]: [ker_lmm/DEBUG]  (1.859435.'87'(0.044062) + 1.112539.'82'(0.006163) + 1.942066.'78'(0.000069) + 1.226852.'76'(0.000069) + 2.203665.'49'(0.012099) + 0.609859.'34'(0.027475) + 1.055293.'23'(0.027475) + 1.321830.'21'(0.012099) + 0.426936.'20'(0.030572) + 3.184384.'20'(0.030572) + 1.882636.'11'(0.006163) + 0.256845.'10'(0.006163) + 1.496148.'7'(0.012099) + 0.235187.'1'(0.240619) + 2.610228.'1'(0.240619) + 0.808781.'35'(0.000000) + 0.398358.'43'(0.000000) + 3.052329.'44'(0.000000) + 0.159341.'44'(0.000000) + 2.742266.'53'(0.000000) + 0.666959.'56'(0.000000) + 0.906072.'59'(0.000000) + 2.693020.'63'(0.000000) + 0.618776.'63'(0.000000) + 1.759322.'64'(0.000000) + 1.797596.'69'(0.000000) + 1.546218.'79'(0.000000) + 1.361142.'84'(0.000000) + 2.094517.'93'(0.000000) + 1.048093.'94'(0.000000) + 1.477117.'98'(0.000000) + 0) <= 7.471216 ('100')
+> [0.000000]: [ker_lmm/DEBUG]  (0.696311.'90'(0.240619) + 2.710744.'90'(0.240619) + 1.714649.'76'(0.000069) + 0.850707.'49'(0.012099) + 1.123535.'19'(0.019293) + 1.420998.'15'(0.030572) + 1.786187.'8'(0.006163) + 1.891303.'6'(0.113551) + 1.047192.'1'(0.240619) + 2.245833.'47'(0.000000) + 2.881645.'48'(0.000000) + 0.949332.'48'(0.000000) + 2.402856.'52'(0.000000) + 1.900451.'53'(0.000000) + 1.893361.'60'(0.000000) + 1.495817.'63'(0.000000) + 1.778625.'64'(0.000000) + 1.468467.'68'(0.000000) + 1.411231.'93'(0.000000) + 2.184968.'94'(0.000000) + 0.224696.'96'(0.000000) + 0.623887.'98'(0.000000) + 0) <= 7.645926 ('76')
+> [0.000000]: [ker_lmm/DEBUG]  (2.017429.'34'(0.027475) + 0.157783.'29'(0.027475) + 0.973398.'29'(0.027475) + 2.126873.'25'(0.020365) + 1.606617.'20'(0.030572) + 0.550112.'6'(0.113551) + 0.694245.'5'(0.030572) + 1.717338.'3'(0.006163) + 2.716106.'1'(0.240619) + 2.037810.'43'(0.000000) + 0.583833.'44'(0.000000) + 1.786650.'47'(0.000000) + 0.774482.'51'(0.000000) + 0.701641.'52'(0.000000) + 1.507556.'56'(0.000000) + 0.280515.'62'(0.000000) + 1.627654.'65'(0.000000) + 2.305341.'73'(0.000000) + 1.410695.'92'(0.000000) + 1.369417.'96'(0.000000) + 2.442714.'99'(0.000000) + 1.137198.'99'(0.000000) + 0) <= 6.852195 ('9')
+> [0.000000]: [ker_lmm/DEBUG]  (1.437753.'76'(0.000069) + 2.572019.'40'(0.012099) + 1.273060.'38'(0.020365) + 1.346666.'30'(0.000069) + 1.344666.'29'(0.027475) + 1.635187.'24'(0.063103) + 0.418773.'20'(0.030572) + 1.247009.'17'(0.113551) + 1.059261.'8'(0.006163) + 1.081714.'1'(0.240619) + 1.916068.'43'(0.000000) + 1.314464.'46'(0.000000) + 0.606001.'61'(0.000000) + 0.953358.'62'(0.000000) + 1.466826.'66'(0.000000) + 1.898705.'67'(0.000000) + 2.367769.'68'(0.000000) + 1.802833.'70'(0.000000) + 2.513629.'84'(0.000000) + 0.655352.'85'(0.000000) + 1.159274.'89'(0.000000) + 0.346980.'94'(0.000000) + 0) <= 1.147460 ('66')
+> [0.000000]: [ker_lmm/DEBUG]  (1.706985.'49'(0.012099) + 2.612417.'34'(0.027475) + 0.881196.'30'(0.000069) + 1.498422.'28'(0.000069) + 1.572255.'26'(0.006163) + 1.355517.'14'(0.006163) + 1.137912.'12'(0.012099) + 0.773891.'10'(0.006163) + 0.450373.'6'(0.113551) + 3.405388.'6'(0.113551) + 1.536201.'1'(0.240619) + 1.382135.'37'(0.000000) + 1.888770.'44'(0.000000) + 1.402926.'44'(0.000000) + 1.577593.'46'(0.000000) + 1.242118.'48'(0.000000) + 0.580563.'51'(0.000000) + 2.455880.'53'(0.000000) + 0.935311.'54'(0.000000) + 2.199448.'55'(0.000000) + 2.496439.'58'(0.000000) + 2.663869.'61'(0.000000) + 1.233912.'63'(0.000000) + 1.423775.'71'(0.000000) + 2.670074.'84'(0.000000) + 0.924323.'85'(0.000000) + 1.069458.'89'(0.000000) + 1.537240.'95'(0.000000) + 1.439465.'96'(0.000000) + 2.408669.'98'(0.000000) + 0) <= 1.073653 ('88')
+> [0.000000]: [ker_lmm/DEBUG]  (1.663073.'90'(0.240619) + 1.001294.'76'(0.000069) + 2.168043.'39'(0.000069) + 2.162021.'31'(0.012099) + 1.942576.'27'(0.113551) + 0.354202.'24'(0.063103) + 1.628371.'23'(0.027475) + 0.101710.'16'(0.129552) + 2.084462.'16'(0.129552) + 1.346757.'15'(0.030572) + 0.678199.'12'(0.012099) + 0.840391.'8'(0.006163) + 2.280664.'1'(0.240619) + 2.732283.'33'(0.000000) + 2.223195.'37'(0.000000) + 0.804671.'54'(0.000000) + 0.887144.'56'(0.000000) + 1.730982.'57'(0.000000) + 2.023500.'62'(0.000000) + 2.228252.'67'(0.000000) + 2.822322.'79'(0.000000) + 0.079089.'79'(0.000000) + 3.109280.'81'(0.000000) + 0.440574.'81'(0.000000) + 2.470764.'89'(0.000000) + 1.763442.'99'(0.000000) + 0) <= 4.479802 ('53')
+> [0.000000]: [ker_lmm/DEBUG]  (2.021160.'88'(0.000069) + 2.582079.'87'(0.044062) + 1.251955.'78'(0.000069) + 1.275282.'39'(0.000069) + 3.397171.'39'(0.000069) + 1.188657.'29'(0.027475) + 2.214665.'27'(0.113551) + 2.020816.'21'(0.012099) + 1.412059.'14'(0.006163) + 0.042404.'13'(0.006163) + 1.670727.'13'(0.006163) + 2.135523.'12'(0.012099) + 1.310153.'9'(0.006163) + 1.179508.'7'(0.012099) + 0.763183.'1'(0.240619) + 1.915089.'1'(0.240619) + 2.567959.'51'(0.000000) + 1.577360.'55'(0.000000) + 2.563048.'63'(0.000000) + 1.747355.'72'(0.000000) + 1.438191.'75'(0.000000) + 1.380694.'80'(0.000000) + 2.882876.'81'(0.000000) + 1.071443.'81'(0.000000) + 1.021281.'89'(0.000000) + 1.467905.'91'(0.000000) + 0) <= 8.291469 ('19')
+> [0.000000]: [ker_lmm/DEBUG]  (1.365719.'50'(0.000069) + 2.493947.'27'(0.113551) + 0.684574.'26'(0.006163) + 2.304809.'23'(0.027475) + 1.638241.'13'(0.006163) + 0.516819.'7'(0.012099) + 0.494361.'5'(0.030572) + 2.492667.'1'(0.240619) + 1.834997.'41'(0.000000) + 0.239339.'47'(0.000000) + 1.233407.'52'(0.000000) + 1.362770.'60'(0.000000) + 1.087313.'61'(0.000000) + 1.804788.'70'(0.000000) + 1.329508.'73'(0.000000) + 0.312948.'77'(0.000000) + 2.705273.'79'(0.000000) + 0.580460.'79'(0.000000) + 0.902065.'86'(0.000000) + 2.258988.'91'(0.000000) + 2.339019.'99'(0.000000) + 0.813817.'99'(0.000000) + 0) <= 7.427648 ('81')
+> [0.000000]: [ker_lmm/DEBUG]  (1.567845.'100'(0.113551) + 1.988924.'42'(0.000069) + 2.446956.'40'(0.012099) + 0.943327.'36'(0.000069) + 1.739011.'31'(0.012099) + 0.124444.'30'(0.000069) + 1.959565.'25'(0.020365) + 1.605847.'14'(0.006163) + 1.706335.'13'(0.006163) + 1.168451.'12'(0.012099) + 2.093426.'4'(0.020365) + 1.090608.'1'(0.240619) + 1.277208.'44'(0.000000) + 0.665655.'44'(0.000000) + 1.089641.'46'(0.000000) + 1.907212.'47'(0.000000) + 1.665669.'48'(0.000000) + 2.221760.'63'(0.000000) + 2.289872.'64'(0.000000) + 1.184150.'65'(0.000000) + 1.842539.'68'(0.000000) + 0.907759.'70'(0.000000) + 1.939892.'73'(0.000000) + 1.363881.'89'(0.000000) + 1.088936.'97'(0.000000) + 0) <= 2.317585 ('91')
+> [0.000000]: [ker_lmm/DEBUG]  (2.605688.'87'(0.044062) + 1.497406.'39'(0.000069) + 0.188491.'28'(0.000069) + 1.090318.'19'(0.019293) + 1.614847.'18'(0.006163) + 2.137145.'17'(0.113551) + 1.428020.'12'(0.012099) + 1.445050.'11'(0.006163) + 1.701489.'2'(0.019293) + 2.198110.'35'(0.000000) + 2.409138.'47'(0.000000) + 1.053869.'63'(0.000000) + 2.051968.'70'(0.000000) + 1.524680.'73'(0.000000) + 1.350099.'80'(0.000000) + 1.577672.'86'(0.000000) + 2.550177.'91'(0.000000) + 2.054954.'92'(0.000000) + 0.419219.'92'(0.000000) + 2.138498.'93'(0.000000) + 1.818948.'95'(0.000000) + 0.681840.'95'(0.000000) + 1.353674.'98'(0.000000) + 0) <= 0.836230 ('38')
+> [0.000000]: [ker_lmm/DEBUG]  (1.416110.'100'(0.113551) + 1.454085.'87'(0.044062) + 1.687482.'42'(0.000069) + 0.443247.'30'(0.000069) + 2.434302.'28'(0.000069) + 1.394907.'24'(0.063103) + 1.448247.'14'(0.006163) + 1.686905.'11'(0.006163) + 0.403244.'4'(0.020365) + 1.055964.'2'(0.019293) + 1.161990.'43'(0.000000) + 1.190360.'45'(0.000000) + 1.350556.'60'(0.000000) + 1.119115.'61'(0.000000) + 1.128389.'62'(0.000000) + 2.772053.'63'(0.000000) + 1.665172.'67'(0.000000) + 2.454386.'71'(0.000000) + 1.646993.'77'(0.000000) + 2.606266.'80'(0.000000) + 0.939947.'89'(0.000000) + 0.456008.'92'(0.000000) + 0) <= 4.280912 ('63')
+> [0.000000]: [ker_lmm/DEBUG]  (1.624519.'90'(0.240619) + 0.935217.'78'(0.000069) + 0.620558.'76'(0.000069) + 1.423375.'50'(0.000069) + 0.517419.'42'(0.000069) + 1.666714.'36'(0.000069) + 0.961344.'30'(0.000069) + 0.952115.'27'(0.113551) + 1.490078.'19'(0.019293) + 2.375592.'16'(0.129552) + 1.883704.'15'(0.030572) + 0.684177.'10'(0.006163) + 1.262725.'8'(0.006163) + 0.585012.'2'(0.019293) + 1.714030.'2'(0.019293) + 1.630582.'35'(0.000000) + 1.700229.'45'(0.000000) + 1.163648.'54'(0.000000) + 2.120639.'56'(0.000000) + 1.485077.'58'(0.000000) + 1.962068.'66'(0.000000) + 1.836095.'75'(0.000000) + 0.123216.'75'(0.000000) + 1.728445.'77'(0.000000) + 0) <= 4.434529 ('10')
+> [0.000000]: [ker_lmm/DEBUG]  (1.623709.'50'(0.000069) + 1.310077.'38'(0.020365) + 1.548149.'34'(0.027475) + 0.963458.'32'(0.178987) + 2.195900.'31'(0.012099) + 0.814207.'26'(0.006163) + 0.837864.'25'(0.020365) + 2.170812.'19'(0.019293) + 1.250037.'17'(0.113551) + 1.958162.'14'(0.006163) + 2.776717.'9'(0.006163) + 1.916222.'5'(0.030572) + 0.634500.'2'(0.019293) + 0.976892.'41'(0.000000) + 1.021998.'43'(0.000000) + 1.398453.'53'(0.000000) + 1.124164.'55'(0.000000) + 1.413711.'57'(0.000000) + 0.567531.'60'(0.000000) + 1.294667.'65'(0.000000) + 0.593196.'68'(0.000000) + 1.093456.'85'(0.000000) + 3.184487.'86'(0.000000) + 0.221573.'86'(0.000000) + 1.158956.'89'(0.000000) + 0.130900.'91'(0.000000) + 0.084852.'92'(0.000000) + 0.415174.'96'(0.000000) + 0.765008.'97'(0.000000) + 0) <= 0.640673 ('67')
+> [0.000000]: [ker_lmm/DEBUG]  (0.972933.'88'(0.000069) + 2.172190.'40'(0.012099) + 2.152207.'38'(0.020365) + 1.787567.'34'(0.027475) + 2.686610.'29'(0.027475) + 0.488715.'23'(0.027475) + 2.173216.'23'(0.027475) + 0.928766.'9'(0.006163) + 1.350094.'2'(0.019293) + 2.432280.'33'(0.000000) + 1.249452.'33'(0.000000) + 1.463563.'37'(0.000000) + 0.849745.'51'(0.000000) + 2.814397.'59'(0.000000) + 1.431329.'71'(0.000000) + 0.966590.'72'(0.000000) + 1.461296.'95'(0.000000) + 1.587532.'96'(0.000000) + 0) <= 0.298014 ('51')
+> [0.000000]: [ker_lmm/DEBUG]  (1.506554.'100'(0.113551) + 0.504151.'87'(0.044062) + 1.590379.'82'(0.006163) + 2.054602.'78'(0.000069) + 1.239476.'76'(0.000069) + 0.837922.'39'(0.000069) + 2.013619.'32'(0.178987) + 1.312210.'29'(0.027475) + 2.056139.'5'(0.030572) + 1.686671.'2'(0.019293) + 1.381596.'33'(0.000000) + 0.990946.'35'(0.000000) + 1.209144.'37'(0.000000) + 1.993854.'46'(0.000000) + 1.994956.'54'(0.000000) + 0.518961.'57'(0.000000) + 1.446474.'61'(0.000000) + 1.149886.'63'(0.000000) + 1.475737.'65'(0.000000) + 1.151800.'70'(0.000000) + 1.540140.'73'(0.000000) + 1.565553.'75'(0.000000) + 2.267745.'81'(0.000000) + 0.288114.'81'(0.000000) + 1.345460.'94'(0.000000) + 0.558795.'99'(0.000000) + 0) <= 9.888611 ('30')
+> [0.000000]: [ker_lmm/DEBUG]  (1.696082.'90'(0.240619) + 2.286390.'87'(0.044062) + 0.790866.'38'(0.020365) + 2.406361.'29'(0.027475) + 1.003543.'27'(0.113551) + 0.930001.'24'(0.063103) + 2.715117.'21'(0.012099) + 1.301769.'19'(0.019293) + 2.766033.'15'(0.030572) + 0.189494.'2'(0.019293) + 2.439930.'2'(0.019293) + 1.907158.'37'(0.000000) + 1.596237.'45'(0.000000) + 1.173248.'48'(0.000000) + 1.784426.'54'(0.000000) + 2.080645.'72'(0.000000) + 2.873278.'75'(0.000000) + 2.018920.'79'(0.000000) + 0.778413.'93'(0.000000) + 3.138854.'95'(0.000000) + 1.058053.'95'(0.000000) + 0.212900.'97'(0.000000) + 3.195692.'99'(0.000000) + 0.849333.'99'(0.000000) + 0) <= 6.716541 ('24')
+> [0.000000]: [ker_lmm/DEBUG]  (1.660091.'82'(0.006163) + 0.398485.'76'(0.000069) + 1.159386.'40'(0.012099) + 2.351711.'38'(0.020365) + 1.246343.'31'(0.012099) + 2.578598.'24'(0.063103) + 1.875256.'20'(0.030572) + 1.008648.'18'(0.006163) + 1.097113.'14'(0.006163) + 1.481393.'12'(0.012099) + 2.610077.'5'(0.030572) + 0.585718.'2'(0.019293) + 1.245552.'35'(0.000000) + 2.282036.'41'(0.000000) + 2.427503.'44'(0.000000) + 1.055650.'45'(0.000000) + 1.835638.'53'(0.000000) + 1.487312.'55'(0.000000) + 2.791486.'59'(0.000000) + 1.315041.'64'(0.000000) + 2.492178.'66'(0.000000) + 1.664931.'73'(0.000000) + 1.040740.'80'(0.000000) + 0.479567.'85'(0.000000) + 0.908863.'86'(0.000000) + 1.731388.'98'(0.000000) + 0) <= 5.247994 ('37')
+> [0.000000]: [ker_lmm/DEBUG]  (2.296209.'82'(0.006163) + 2.582310.'42'(0.000069) + 1.183174.'40'(0.012099) + 1.781712.'29'(0.027475) + 0.203312.'24'(0.063103) + 1.197290.'21'(0.012099) + 2.049212.'12'(0.012099) + 2.220489.'8'(0.006163) + 0.933481.'4'(0.020365) + 1.886704.'2'(0.019293) + 1.385374.'35'(0.000000) + 2.438508.'46'(0.000000) + 1.816521.'55'(0.000000) + 0.470739.'56'(0.000000) + 1.451714.'58'(0.000000) + 1.016717.'63'(0.000000) + 0.778076.'72'(0.000000) + 0.815690.'79'(0.000000) + 0.616234.'83'(0.000000) + 2.349681.'91'(0.000000) + 0) <= 0.198801 ('87')
+> [0.000000]: [ker_lmm/DEBUG]  (1.731440.'100'(0.113551) + 0.699321.'90'(0.240619) + 3.562458.'90'(0.240619) + 2.150019.'87'(0.044062) + 1.427254.'78'(0.000069) + 0.726995.'76'(0.000069) + 2.281014.'42'(0.000069) + 1.238793.'40'(0.012099) + 1.182626.'38'(0.020365) + 0.246642.'32'(0.178987) + 1.708230.'27'(0.113551) + 2.874090.'22'(0.020365) + 0.277624.'19'(0.019293) + 1.934941.'17'(0.113551) + 2.495396.'16'(0.129552) + 2.689518.'15'(0.030572) + 1.182120.'10'(0.006163) + 1.111346.'9'(0.006163) + 2.361655.'6'(0.113551) + 2.466941.'2'(0.019293) + 1.145279.'37'(0.000000) + 1.819006.'46'(0.000000) + 1.363212.'46'(0.000000) + 0.737247.'51'(0.000000) + 2.477944.'52'(0.000000) + 0.350088.'54'(0.000000) + 3.125709.'56'(0.000000) + 0.700858.'56'(0.000000) + 2.256776.'59'(0.000000) + 1.185931.'60'(0.000000) + 0.929679.'61'(0.000000) + 1.544384.'77'(0.000000) + 1.228588.'97'(0.000000) + 0) <= 7.538762 ('84')
+> [0.000000]: [ker_lmm/DEBUG]  (1.494393.'40'(0.012099) + 1.290140.'20'(0.030572) + 0.716134.'14'(0.006163) + 1.110361.'13'(0.006163) + 1.212508.'2'(0.019293) + 2.369860.'2'(0.019293) + 0.713687.'62'(0.000000) + 0.619280.'71'(0.000000) + 2.062285.'84'(0.000000) + 1.895245.'93'(0.000000) + 1.241723.'93'(0.000000) + 2.603344.'99'(0.000000) + 0) <= 2.989301 ('40')
+> [0.000000]: [ker_lmm/DEBUG]  (1.548888.'82'(0.006163) + 2.332813.'78'(0.000069) + 0.430850.'50'(0.000069) + 2.867773.'39'(0.000069) + 0.355499.'31'(0.012099) + 0.887237.'30'(0.000069) + 1.539320.'26'(0.006163) + 2.280048.'21'(0.012099) + 1.364153.'19'(0.019293) + 2.021681.'2'(0.019293) + 2.192137.'37'(0.000000) + 1.164747.'41'(0.000000) + 1.184992.'48'(0.000000) + 1.503509.'55'(0.000000) + 1.572227.'77'(0.000000) + 1.337856.'85'(0.000000) + 2.322870.'86'(0.000000) + 0) <= 0.116692 ('64')
+> [0.000000]: [ker_lmm/DEBUG]  (1.135507.'39'(0.000069) + 1.535650.'32'(0.178987) + 2.268360.'29'(0.027475) + 0.962533.'25'(0.020365) + 1.207009.'11'(0.006163) + 1.140245.'2'(0.019293) + 1.846458.'37'(0.000000) + 0.931161.'37'(0.000000) + 1.867533.'41'(0.000000) + 1.930703.'45'(0.000000) + 2.072293.'57'(0.000000) + 1.553168.'65'(0.000000) + 2.490198.'66'(0.000000) + 1.654671.'72'(0.000000) + 1.089100.'73'(0.000000) + 0.413058.'74'(0.000000) + 0) <= 3.967675 ('7')
+> [0.000000]: [ker_lmm/DEBUG]  (1.583632.'100'(0.113551) + 1.603479.'88'(0.000069) + 1.009118.'50'(0.000069) + 0.864286.'36'(0.000069) + 2.386803.'29'(0.027475) + 2.049698.'28'(0.000069) + 1.509074.'27'(0.113551) + 1.379724.'15'(0.030572) + 1.833795.'11'(0.006163) + 1.538153.'9'(0.006163) + 1.056750.'5'(0.030572) + 0.974353.'2'(0.019293) + 2.225547.'41'(0.000000) + 2.023568.'46'(0.000000) + 0.809191.'53'(0.000000) + 1.586349.'54'(0.000000) + 1.194258.'57'(0.000000) + 1.617481.'61'(0.000000) + 0.599057.'65'(0.000000) + 2.189077.'66'(0.000000) + 1.671857.'67'(0.000000) + 1.954572.'70'(0.000000) + 1.444506.'77'(0.000000) + 0.698844.'80'(0.000000) + 0.076505.'95'(0.000000) + 0) <= 8.921359 ('54')
+> [0.000000]: [ker_lmm/DEBUG]  (1.225104.'90'(0.240619) + 1.963864.'88'(0.000069) + 2.311370.'76'(0.000069) + 2.644006.'42'(0.000069) + 0.627543.'38'(0.020365) + 2.425613.'34'(0.027475) + 2.040644.'27'(0.113551) + 1.515653.'26'(0.006163) + 0.122020.'23'(0.027475) + 2.697234.'23'(0.027475) + 0.495403.'21'(0.012099) + 3.305699.'21'(0.012099) + 1.783288.'18'(0.006163) + 2.856480.'17'(0.113551) + 1.346740.'16'(0.129552) + 0.533561.'10'(0.006163) + 2.612706.'8'(0.006163) + 0.978104.'3'(0.006163) + 1.156893.'2'(0.019293) + 2.172233.'47'(0.000000) + 2.109207.'52'(0.000000) + 2.013040.'55'(0.000000) + 1.858202.'57'(0.000000) + 1.461878.'58'(0.000000) + 1.247032.'59'(0.000000) + 1.136149.'60'(0.000000) + 0.627641.'62'(0.000000) + 2.744337.'63'(0.000000) + 1.468497.'64'(0.000000) + 1.657703.'67'(0.000000) + 0.440036.'72'(0.000000) + 3.683296.'77'(0.000000) + 0.306580.'77'(0.000000) + 1.706031.'79'(0.000000) + 0.445782.'79'(0.000000) + 1.986891.'83'(0.000000) + 1.988205.'89'(0.000000) + 2.131241.'91'(0.000000) + 1.345722.'94'(0.000000) + 2.557235.'97'(0.000000) + 0) <= 2.936141 ('35')
+> [0.000000]: [ker_lmm/DEBUG]  (1.614203.'78'(0.000069) + 0.767615.'50'(0.000069) + 2.215397.'49'(0.012099) + 2.377553.'40'(0.012099) + 1.443447.'31'(0.012099) + 1.363108.'30'(0.000069) + 2.853495.'25'(0.020365) + 0.338589.'23'(0.027475) + 1.386096.'23'(0.027475) + 1.699636.'15'(0.030572) + 0.951019.'10'(0.006163) + 1.506124.'2'(0.019293) + 2.587810.'53'(0.000000) + 2.161376.'66'(0.000000) + 1.700428.'69'(0.000000) + 0.969247.'74'(0.000000) + 2.927142.'80'(0.000000) + 1.386232.'86'(0.000000) + 0.323264.'93'(0.000000) + 1.471647.'98'(0.000000) + 0) <= 0.533625 ('41')
+> [0.000000]: [ker_lmm/DEBUG]  (0.826373.'100'(0.113551) + 0.294226.'90'(0.240619) + 2.037750.'90'(0.240619) + 2.144890.'87'(0.044062) + 2.740489.'50'(0.000069) + 1.912830.'30'(0.000069) + 2.290321.'23'(0.027475) + 1.255167.'22'(0.020365) + 1.794560.'10'(0.006163) + 0.313205.'2'(0.019293) + 1.116319.'41'(0.000000) + 0.852994.'47'(0.000000) + 0.723053.'51'(0.000000) + 1.958033.'56'(0.000000) + 2.358270.'59'(0.000000) + 1.432033.'60'(0.000000) + 1.266601.'63'(0.000000) + 1.171387.'68'(0.000000) + 2.037846.'72'(0.000000) + 1.795212.'74'(0.000000) + 0.443591.'75'(0.000000) + 1.533504.'84'(0.000000) + 1.668135.'85'(0.000000) + 2.523130.'99'(0.000000) + 1.042852.'99'(0.000000) + 0) <= 2.303628 ('83')
+> [0.000000]: [ker_lmm/DEBUG]  (0.896929.'100'(0.113551) + 1.530147.'82'(0.006163) + 1.076104.'78'(0.000069) + 1.839611.'34'(0.027475) + 1.505763.'21'(0.012099) + 1.527142.'16'(0.129552) + 2.090765.'8'(0.006163) + 1.318248.'3'(0.006163) + 1.139796.'3'(0.006163) + 1.234205.'44'(0.000000) + 1.209714.'60'(0.000000) + 2.676757.'67'(0.000000) + 1.546734.'68'(0.000000) + 0.393614.'75'(0.000000) + 2.532565.'95'(0.000000) + 0) <= 3.477659 ('57')
+> [0.000000]: [ker_lmm/DEBUG]  (0.870493.'90'(0.240619) + 1.543227.'78'(0.000069) + 2.214920.'50'(0.000069) + 1.928140.'49'(0.012099) + 2.285290.'29'(0.027475) + 1.043311.'28'(0.000069) + 1.208135.'19'(0.019293) + 1.693224.'18'(0.006163) + 1.103391.'15'(0.030572) + 0.804846.'14'(0.006163) + 1.125548.'11'(0.006163) + 2.111273.'3'(0.006163) + 1.904002.'56'(0.000000) + 0.650311.'69'(0.000000) + 1.606416.'84'(0.000000) + 1.850857.'91'(0.000000) + 0.623485.'92'(0.000000) + 0) <= 7.654851 ('48')
+> [0.000000]: [ker_lmm/DEBUG]  (1.250840.'100'(0.113551) + 1.540353.'78'(0.000069) + 1.315166.'76'(0.000069) + 2.550675.'76'(0.000069) + 0.909145.'50'(0.000069) + 0.782017.'36'(0.000069) + 1.491130.'32'(0.178987) + 2.169408.'31'(0.012099) + 2.860099.'30'(0.000069) + 1.613899.'24'(0.063103) + 2.612992.'23'(0.027475) + 0.423188.'16'(0.129552) + 0.611881.'14'(0.006163) + 2.077118.'12'(0.012099) + 2.215683.'9'(0.006163) + 1.741951.'3'(0.006163) + 1.845204.'37'(0.000000) + 1.613028.'55'(0.000000) + 1.778142.'56'(0.000000) + 1.376774.'57'(0.000000) + 0.543388.'58'(0.000000) + 1.785182.'61'(0.000000) + 0.778946.'61'(0.000000) + 0.995021.'63'(0.000000) + 1.318928.'69'(0.000000) + 1.825331.'83'(0.000000) + 0.587659.'91'(0.000000) + 0) <= 6.968182 ('82')
+> [0.000000]: [ker_lmm/DEBUG]  (2.003117.'90'(0.240619) + 1.419591.'78'(0.000069) + 1.633426.'76'(0.000069) + 1.899443.'49'(0.012099) + 0.227626.'38'(0.020365) + 1.191898.'36'(0.000069) + 1.531913.'28'(0.000069) + 2.892813.'27'(0.113551) + 0.877618.'26'(0.006163) + 1.835500.'24'(0.063103) + 1.474153.'23'(0.027475) + 0.972420.'3'(0.006163) + 1.156168.'35'(0.000000) + 1.060586.'41'(0.000000) + 1.996104.'45'(0.000000) + 1.974174.'55'(0.000000) + 2.777321.'56'(0.000000) + 1.091310.'57'(0.000000) + 2.057140.'58'(0.000000) + 2.069169.'60'(0.000000) + 2.121114.'61'(0.000000) + 1.707373.'62'(0.000000) + 0.870109.'63'(0.000000) + 1.994491.'67'(0.000000) + 1.426403.'69'(0.000000) + 1.531795.'71'(0.000000) + 1.326092.'83'(0.000000) + 0.924496.'92'(0.000000) + 1.645937.'95'(0.000000) + 0) <= 8.346257 ('28')
+> [0.000000]: [ker_lmm/DEBUG]  (2.174427.'82'(0.006163) + 2.822411.'42'(0.000069) + 1.545876.'26'(0.006163) + 2.223522.'18'(0.006163) + 0.420103.'14'(0.006163) + 0.713356.'13'(0.006163) + 1.003099.'11'(0.006163) + 1.282407.'11'(0.006163) + 0.698299.'10'(0.006163) + 2.107002.'9'(0.006163) + 1.163821.'8'(0.006163) + 1.252709.'3'(0.006163) + 2.115650.'44'(0.000000) + 1.969286.'52'(0.000000) + 1.891114.'58'(0.000000) + 1.229540.'60'(0.000000) + 1.567717.'64'(0.000000) + 1.305417.'69'(0.000000) + 0.775576.'70'(0.000000) + 3.009614.'71'(0.000000) + 1.414212.'71'(0.000000) + 2.193566.'75'(0.000000) + 1.325691.'77'(0.000000) + 2.800393.'86'(0.000000) + 0.257552.'86'(0.000000) + 1.860927.'94'(0.000000) + 1.250020.'96'(0.000000) + 2.060972.'99'(0.000000) + 0) <= 0.090080 ('74')
+> [0.000000]: [ker_lmm/DEBUG]  (1.867448.'88'(0.000069) + 2.334304.'82'(0.006163) + 0.451093.'39'(0.000069) + 1.076823.'36'(0.000069) + 0.721432.'30'(0.000069) + 1.452100.'27'(0.113551) + 1.360030.'22'(0.020365) + 1.506045.'21'(0.012099) + 0.021005.'17'(0.113551) + 1.242960.'17'(0.113551) + 1.126825.'11'(0.006163) + 0.583201.'8'(0.006163) + 1.984375.'7'(0.012099) + 2.542771.'3'(0.006163) + 2.529599.'37'(0.000000) + 1.738397.'46'(0.000000) + 1.487746.'52'(0.000000) + 0.451512.'52'(0.000000) + 1.265730.'54'(0.000000) + 1.725891.'55'(0.000000) + 1.401669.'60'(0.000000) + 0.299278.'63'(0.000000) + 2.170177.'64'(0.000000) + 0.340184.'64'(0.000000) + 0.607922.'65'(0.000000) + 1.532774.'67'(0.000000) + 0.913753.'80'(0.000000) + 3.192779.'81'(0.000000) + 0.989496.'81'(0.000000) + 1.234989.'84'(0.000000) + 1.100821.'97'(0.000000) + 1.366040.'98'(0.000000) + 0) <= 3.565317 ('62')
+> [0.000000]: [ker_lmm/DEBUG]  (2.036672.'100'(0.113551) + 0.992242.'88'(0.000069) + 1.117252.'87'(0.044062) + 1.030674.'42'(0.000069) + 1.657326.'36'(0.000069) + 1.516215.'32'(0.178987) + 1.363854.'22'(0.020365) + 1.293439.'10'(0.006163) + 2.255925.'6'(0.113551) + 0.939320.'3'(0.006163) + 1.156317.'44'(0.000000) + 0.771064.'47'(0.000000) + 1.824961.'53'(0.000000) + 1.565478.'55'(0.000000) + 0.796407.'71'(0.000000) + 0.538633.'73'(0.000000) + 1.871010.'79'(0.000000) + 0.911242.'83'(0.000000) + 2.184699.'89'(0.000000) + 0.813096.'93'(0.000000) + 1.896717.'99'(0.000000) + 0) <= 1.242710 ('86')
+> [0.000000]: [ker_lmm/DEBUG]  (1.063066.'87'(0.044062) + 1.338546.'87'(0.044062) + 0.657075.'50'(0.000069) + 0.954551.'34'(0.027475) + 2.321224.'30'(0.000069) + 1.474764.'26'(0.006163) + 1.981974.'18'(0.006163) + 1.488516.'15'(0.030572) + 1.495786.'12'(0.012099) + 2.248260.'11'(0.006163) + 0.731345.'7'(0.012099) + 0.829335.'5'(0.030572) + 1.404898.'3'(0.006163) + 1.229022.'46'(0.000000) + 0.221254.'46'(0.000000) + 2.386985.'51'(0.000000) + 1.929467.'60'(0.000000) + 2.133822.'62'(0.000000) + 0.418975.'63'(0.000000) + 1.704943.'65'(0.000000) + 1.305384.'66'(0.000000) + 1.435046.'79'(0.000000) + 1.129603.'89'(0.000000) + 0.579194.'91'(0.000000) + 2.099164.'94'(0.000000) + 0) <= 0.273876 ('11')
+> [0.000000]: [ker_lmm/DEBUG]  (1.199592.'100'(0.113551) + 1.595442.'78'(0.000069) + 1.349115.'42'(0.000069) + 2.218802.'30'(0.000069) + 1.236485.'27'(0.113551) + 1.596787.'23'(0.027475) + 2.156542.'19'(0.019293) + 0.497040.'18'(0.006163) + 0.913174.'17'(0.113551) + 2.254316.'17'(0.113551) + 2.695642.'14'(0.006163) + 1.075954.'6'(0.113551) + 2.722306.'4'(0.020365) + 1.393915.'3'(0.006163) + 0.960012.'47'(0.000000) + 1.734328.'53'(0.000000) + 0.986607.'55'(0.000000) + 1.197823.'62'(0.000000) + 1.171807.'70'(0.000000) + 1.339936.'71'(0.000000) + 0.790587.'83'(0.000000) + 1.690963.'92'(0.000000) + 1.858847.'94'(0.000000) + 1.507598.'96'(0.000000) + 2.033046.'99'(0.000000) + 0) <= 0.928008 ('17')
+> [0.000000]: [ker_lmm/DEBUG]  (1.205957.'90'(0.240619) + 1.333279.'87'(0.044062) + 0.972870.'49'(0.012099) + 2.458232.'40'(0.012099) + 1.178055.'32'(0.178987) + 0.535224.'30'(0.000069) + 1.051097.'24'(0.063103) + 1.374403.'18'(0.006163) + 1.187732.'17'(0.113551) + 3.483192.'17'(0.113551) + 1.334772.'3'(0.006163) + 1.679074.'33'(0.000000) + 1.397171.'33'(0.000000) + 0.893738.'45'(0.000000) + 0.838996.'53'(0.000000) + 1.708615.'54'(0.000000) + 2.037363.'59'(0.000000) + 0.691310.'61'(0.000000) + 2.027602.'63'(0.000000) + 1.407404.'66'(0.000000) + 1.762111.'71'(0.000000) + 1.201256.'77'(0.000000) + 1.955713.'83'(0.000000) + 2.026539.'84'(0.000000) + 2.142344.'85'(0.000000) + 0) <= 5.334485 ('45')
+> [0.000000]: [ker_lmm/DEBUG]  (0.405736.'90'(0.240619) + 1.380198.'50'(0.000069) + 0.553464.'49'(0.012099) + 2.650807.'29'(0.027475) + 1.811402.'26'(0.006163) + 1.821878.'25'(0.020365) + 2.031857.'21'(0.012099) + 2.507865.'17'(0.113551) + 2.308346.'7'(0.012099) + 0.618368.'3'(0.006163) + 0.657228.'35'(0.000000) + 1.205757.'44'(0.000000) + 2.127070.'52'(0.000000) + 1.779270.'53'(0.000000) + 0.879730.'55'(0.000000) + 1.998110.'74'(0.000000) + 0.367426.'74'(0.000000) + 2.038197.'83'(0.000000) + 0.921557.'85'(0.000000) + 1.170284.'99'(0.000000) + 0) <= 9.139620 ('12')
+> [0.000000]: [ker_lmm/DEBUG]  (0.486809.'88'(0.000069) + 2.020186.'42'(0.000069) + 2.263168.'25'(0.020365) + 0.777220.'21'(0.012099) + 1.415995.'18'(0.006163) + 0.827264.'17'(0.113551) + 1.379943.'16'(0.129552) + 0.097429.'15'(0.030572) + 0.016333.'11'(0.006163) + 1.554598.'11'(0.006163) + 1.423906.'10'(0.006163) + 1.452547.'3'(0.006163) + 1.100810.'41'(0.000000) + 1.319995.'53'(0.000000) + 1.861939.'65'(0.000000) + 1.471577.'80'(0.000000) + 2.661101.'89'(0.000000) + 1.444874.'92'(0.000000) + 2.290280.'93'(0.000000) + 1.159371.'99'(0.000000) + 0) <= 3.488983 ('61')
+> [0.000000]: [ker_lmm/DEBUG]  (2.205050.'36'(0.000069) + 0.730395.'29'(0.027475) + 1.696938.'28'(0.000069) + 0.501377.'27'(0.113551) + 1.911140.'15'(0.030572) + 2.026481.'14'(0.006163) + 0.629571.'12'(0.012099) + 2.529200.'9'(0.006163) + 1.956957.'6'(0.113551) + 1.625409.'5'(0.030572) + 2.506743.'3'(0.006163) + 0.500101.'43'(0.000000) + 0.226196.'46'(0.000000) + 1.456771.'48'(0.000000) + 1.750474.'64'(0.000000) + 0.089754.'66'(0.000000) + 1.542461.'67'(0.000000) + 2.497053.'69'(0.000000) + 2.391709.'72'(0.000000) + 3.056268.'77'(0.000000) + 0.969136.'77'(0.000000) + 1.176023.'81'(0.000000) + 1.473787.'83'(0.000000) + 1.625178.'92'(0.000000) + 0.904870.'97'(0.000000) + 0) <= 6.918771 ('26')
+> [0.000000]: [ker_lmm/DEBUG]  (2.425001.'88'(0.000069) + 0.598107.'87'(0.044062) + 0.938534.'82'(0.006163) + 1.741072.'38'(0.020365) + 1.209475.'31'(0.012099) + 1.596367.'27'(0.113551) + 2.652717.'26'(0.006163) + 2.123009.'25'(0.020365) + 0.441116.'20'(0.030572) + 1.500604.'14'(0.006163) + 1.399002.'13'(0.006163) + 0.164863.'12'(0.012099) + 1.692236.'3'(0.006163) + 3.370581.'33'(0.000000) + 0.629437.'33'(0.000000) + 2.442226.'43'(0.000000) + 1.258217.'46'(0.000000) + 1.205609.'58'(0.000000) + 1.023595.'72'(0.000000) + 2.518837.'80'(0.000000) + 1.784861.'84'(0.000000) + 1.421252.'93'(0.000000) + 1.590481.'97'(0.000000) + 0) <= 9.085955 ('34')
+> [0.000000]: [ker_lmm/DEBUG]  (2.303898.'50'(0.000069) + 1.455195.'42'(0.000069) + 2.447977.'39'(0.000069) + 1.752175.'38'(0.020365) + 2.630056.'27'(0.113551) + 1.039631.'19'(0.019293) + 1.330248.'19'(0.019293) + 1.801800.'9'(0.006163) + 1.682632.'3'(0.006163) + 0.836431.'35'(0.000000) + 1.781918.'43'(0.000000) + 1.565278.'44'(0.000000) + 1.135193.'45'(0.000000) + 1.379866.'48'(0.000000) + 0.290373.'52'(0.000000) + 1.725842.'66'(0.000000) + 1.076336.'69'(0.000000) + 1.253089.'75'(0.000000) + 1.686907.'94'(0.000000) + 1.200648.'97'(0.000000) + 0) <= 8.600280 ('90')
+> [0.000000]: [ker_lmm/DEBUG]  (0.883628.'88'(0.000069) + 1.754254.'87'(0.044062) + 0.533041.'76'(0.000069) + 1.923152.'50'(0.000069) + 2.025881.'40'(0.012099) + 0.762227.'32'(0.178987) + 1.537655.'28'(0.000069) + 2.688940.'22'(0.020365) + 0.850567.'17'(0.113551) + 2.312059.'15'(0.030572) + 0.591247.'14'(0.006163) + 1.409135.'11'(0.006163) + 1.220784.'7'(0.012099) + 1.468784.'3'(0.006163) + 2.054527.'33'(0.000000) + 0.751387.'35'(0.000000) + 1.303947.'47'(0.000000) + 2.061007.'51'(0.000000) + 0.930479.'54'(0.000000) + 1.319371.'56'(0.000000) + 1.965355.'58'(0.000000) + 1.777251.'59'(0.000000) + 3.116886.'61'(0.000000) + 0.431289.'61'(0.000000) + 1.756787.'62'(0.000000) + 1.575287.'63'(0.000000) + 1.370856.'64'(0.000000) + 1.820565.'69'(0.000000) + 2.326845.'73'(0.000000) + 2.258444.'74'(0.000000) + 1.077281.'75'(0.000000) + 1.855280.'77'(0.000000) + 1.890352.'81'(0.000000) + 0.865299.'81'(0.000000) + 0.393765.'83'(0.000000) + 0.731915.'93'(0.000000) + 1.503501.'94'(0.000000) + 1.299497.'97'(0.000000) + 0) <= 7.783892 ('15')
+> [0.000000]: [ker_lmm/DEBUG]  (0.222753.'100'(0.113551) + 1.088276.'90'(0.240619) + 1.947668.'40'(0.012099) + 1.269013.'34'(0.027475) + 0.747413.'27'(0.113551) + 1.702413.'26'(0.006163) + 2.052307.'24'(0.063103) + 1.247640.'23'(0.027475) + 0.313373.'20'(0.030572) + 1.000136.'17'(0.113551) + 1.416419.'16'(0.129552) + 1.187969.'12'(0.012099) + 1.592646.'7'(0.012099) + 1.608093.'5'(0.030572) + 0.990252.'3'(0.006163) + 1.142754.'41'(0.000000) + 1.458543.'45'(0.000000) + 1.395801.'54'(0.000000) + 1.498913.'66'(0.000000) + 1.092055.'68'(0.000000) + 1.534174.'89'(0.000000) + 0) <= 3.798033 ('69')
+> [0.000000]: [ker_lmm/DEBUG]  (1.379286.'40'(0.012099) + 1.977183.'32'(0.178987) + 1.503718.'30'(0.000069) + 1.285352.'28'(0.000069) + 0.818284.'24'(0.063103) + 1.474046.'22'(0.020365) + 0.218198.'19'(0.019293) + 3.604633.'19'(0.019293) + 1.634949.'17'(0.113551) + 1.022822.'8'(0.006163) + 1.388240.'6'(0.113551) + 0.654100.'3'(0.006163) + 2.127449.'43'(0.000000) + 1.698290.'44'(0.000000) + 2.313465.'46'(0.000000) + 0.799899.'54'(0.000000) + 1.777663.'56'(0.000000) + 0.876327.'62'(0.000000) + 1.630931.'64'(0.000000) + 1.414647.'67'(0.000000) + 2.020901.'72'(0.000000) + 0.038310.'73'(0.000000) + 1.794367.'79'(0.000000) + 1.481278.'81'(0.000000) + 0.458918.'89'(0.000000) + 0.515711.'94'(0.000000) + 1.088490.'96'(0.000000) + 0) <= 7.727391 ('72')
+> [0.000000]: [ker_lmm/DEBUG]  (0.681290.'42'(0.000069) + 2.013068.'32'(0.178987) + 1.246676.'24'(0.063103) + 0.684531.'22'(0.020365) + 1.886002.'14'(0.006163) + 1.020029.'8'(0.006163) + 1.978224.'8'(0.006163) + 1.617726.'3'(0.006163) + 1.839588.'43'(0.000000) + 0.599069.'51'(0.000000) + 1.810777.'57'(0.000000) + 1.177856.'60'(0.000000) + 0.896019.'66'(0.000000) + 2.296114.'68'(0.000000) + 0.422846.'72'(0.000000) + 1.351024.'84'(0.000000) + 1.370146.'85'(0.000000) + 0) <= 0.493042 ('85')
+> [0.000000]: [ker_lmm/DEBUG]  (2.358791.'49'(0.012099) + 1.473778.'42'(0.000069) + 2.640471.'40'(0.012099) + 1.689837.'31'(0.012099) + 1.746117.'26'(0.006163) + 1.751799.'21'(0.012099) + 0.753140.'13'(0.006163) + 1.240141.'12'(0.012099) + 0.529160.'11'(0.006163) + 1.999795.'10'(0.006163) + 1.887439.'9'(0.006163) + 1.759111.'7'(0.012099) + 0.865959.'3'(0.006163) + 1.433446.'43'(0.000000) + 1.518238.'46'(0.000000) + 1.444641.'47'(0.000000) + 1.216793.'59'(0.000000) + 1.702809.'77'(0.000000) + 1.125819.'80'(0.000000) + 0.693503.'84'(0.000000) + 0.983772.'85'(0.000000) + 0.508108.'91'(0.000000) + 1.164627.'96'(0.000000) + 1.125316.'97'(0.000000) + 0) <= 0.186473 ('96')
+> [0.000000]: [ker_lmm/DEBUG]  (1.459582.'87'(0.044062) + 2.076910.'78'(0.000069) + 2.366226.'49'(0.012099) + 1.174329.'40'(0.012099) + 0.299966.'38'(0.020365) + 2.382631.'21'(0.012099) + 1.170854.'16'(0.129552) + 1.245156.'14'(0.006163) + 1.744114.'4'(0.020365) + 1.367299.'35'(0.000000) + 2.577109.'53'(0.000000) + 0.792091.'57'(0.000000) + 1.982126.'58'(0.000000) + 1.751576.'61'(0.000000) + 0.765052.'72'(0.000000) + 1.488633.'89'(0.000000) + 2.473906.'93'(0.000000) + 0.833497.'96'(0.000000) + 0) <= 1.723405 ('80')
+> [0.000000]: [ker_lmm/DEBUG]  (1.972268.'78'(0.000069) + 0.901664.'49'(0.012099) + 0.306999.'42'(0.000069) + 0.897042.'38'(0.020365) + 1.279163.'25'(0.020365) + 2.029435.'22'(0.020365) + 2.179141.'18'(0.006163) + 0.484022.'4'(0.020365) + 1.876208.'4'(0.020365) + 2.268930.'33'(0.000000) + 0.403697.'37'(0.000000) + 0.953108.'48'(0.000000) + 1.973937.'58'(0.000000) + 1.775355.'60'(0.000000) + 2.417053.'62'(0.000000) + 0.806279.'63'(0.000000) + 1.141116.'64'(0.000000) + 0.361595.'67'(0.000000) + 2.419494.'70'(0.000000) + 2.105023.'73'(0.000000) + 0.901262.'83'(0.000000) + 0.617269.'86'(0.000000) + 0) <= 0.158212 ('77')
+> [0.000000]: [ker_lmm/DEBUG]  (2.706998.'87'(0.044062) + 1.383940.'39'(0.000069) + 2.165026.'38'(0.020365) + 2.217521.'31'(0.012099) + 1.983711.'30'(0.000069) + 0.583281.'27'(0.113551) + 1.522881.'21'(0.012099) + 2.052093.'20'(0.030572) + 1.362625.'11'(0.006163) + 1.553411.'6'(0.113551) + 0.112086.'4'(0.020365) + 2.237370.'4'(0.020365) + 1.125658.'41'(0.000000) + 1.967755.'44'(0.000000) + 0.322987.'46'(0.000000) + 1.195458.'53'(0.000000) + 0.482190.'54'(0.000000) + 1.858420.'61'(0.000000) + 1.434688.'64'(0.000000) + 1.638929.'69'(0.000000) + 0.643242.'73'(0.000000) + 2.373521.'74'(0.000000) + 0.564129.'74'(0.000000) + 1.744475.'83'(0.000000) + 0.745259.'93'(0.000000) + 1.256273.'95'(0.000000) + 1.794378.'96'(0.000000) + 1.018397.'96'(0.000000) + 0) <= 6.637946 ('49')
+> [0.000000]: [ker_lmm/DEBUG]  (1.554060.'100'(0.113551) + 0.980903.'88'(0.000069) + 0.929982.'49'(0.012099) + 1.794487.'42'(0.000069) + 2.077301.'39'(0.000069) + 1.701241.'31'(0.012099) + 1.475160.'24'(0.063103) + 1.837403.'16'(0.129552) + 2.180236.'10'(0.006163) + 1.926514.'4'(0.020365) + 1.423494.'33'(0.000000) + 2.282082.'45'(0.000000) + 1.594602.'47'(0.000000) + 1.086105.'48'(0.000000) + 1.726564.'55'(0.000000) + 0.060239.'60'(0.000000) + 2.405549.'65'(0.000000) + 1.512626.'68'(0.000000) + 0.971064.'80'(0.000000) + 2.262137.'86'(0.000000) + 0.797589.'92'(0.000000) + 3.156978.'95'(0.000000) + 1.444637.'95'(0.000000) + 1.784784.'96'(0.000000) + 1.211619.'98'(0.000000) + 0) <= 0.592432 ('22')
+> [0.000000]: [ker_lmm/DEBUG]  (1.024274.'82'(0.006163) + 1.609951.'50'(0.000069) + 2.734548.'42'(0.000069) + 1.233576.'34'(0.027475) + 1.603259.'23'(0.027475) + 0.658419.'18'(0.006163) + 0.865107.'15'(0.030572) + 1.540532.'12'(0.012099) + 2.151821.'8'(0.006163) + 2.316723.'4'(0.020365) + 2.840444.'35'(0.000000) + 2.625601.'41'(0.000000) + 2.513100.'45'(0.000000) + 1.123800.'47'(0.000000) + 1.201522.'62'(0.000000) + 0.452708.'67'(0.000000) + 1.230968.'74'(0.000000) + 1.102534.'80'(0.000000) + 1.246318.'84'(0.000000) + 1.560096.'85'(0.000000) + 0) <= 9.973229 ('79')
+> [0.000000]: [ker_lmm/DEBUG]  (1.101789.'90'(0.240619) + 1.664033.'87'(0.044062) + 0.246282.'76'(0.000069) + 0.863328.'50'(0.000069) + 2.015334.'31'(0.012099) + 0.509493.'15'(0.030572) + 1.889450.'7'(0.012099) + 2.647512.'4'(0.020365) + 1.076650.'33'(0.000000) + 0.776313.'44'(0.000000) + 1.266781.'45'(0.000000) + 1.099945.'48'(0.000000) + 1.298129.'51'(0.000000) + 2.422496.'52'(0.000000) + 0.335468.'52'(0.000000) + 0.646111.'55'(0.000000) + 1.683084.'64'(0.000000) + 2.189682.'67'(0.000000) + 2.102505.'69'(0.000000) + 0.172906.'69'(0.000000) + 0.545546.'74'(0.000000) + 1.059945.'80'(0.000000) + 0.585850.'92'(0.000000) + 2.364486.'94'(0.000000) + 1.921713.'95'(0.000000) + 0) <= 6.522989 ('56')
+> [0.000000]: [ker_lmm/DEBUG]  (1.256699.'90'(0.240619) + 1.482439.'36'(0.000069) + 0.898231.'32'(0.178987) + 1.635013.'32'(0.178987) + 1.492128.'29'(0.027475) + 2.643807.'28'(0.000069) + 1.206687.'23'(0.027475) + 0.949395.'20'(0.030572) + 1.850656.'15'(0.030572) + 1.016652.'7'(0.012099) + 1.377377.'4'(0.020365) + 1.992713.'35'(0.000000) + 2.840782.'43'(0.000000) + 0.042364.'43'(0.000000) + 2.288461.'45'(0.000000) + 1.897205.'47'(0.000000) + 1.250125.'55'(0.000000) + 1.938949.'56'(0.000000) + 2.377586.'59'(0.000000) + 2.547275.'61'(0.000000) + 1.372998.'62'(0.000000) + 1.430358.'65'(0.000000) + 0.737984.'81'(0.000000) + 1.822339.'84'(0.000000) + 1.997573.'85'(0.000000) + 1.983112.'92'(0.000000) + 1.553463.'95'(0.000000) + 2.032527.'99'(0.000000) + 0.453373.'99'(0.000000) + 0) <= 2.730500 ('21')
+> [0.000000]: [ker_lmm/DEBUG]  (2.258030.'34'(0.027475) + 1.288090.'32'(0.178987) + 2.150312.'31'(0.012099) + 1.022747.'29'(0.027475) + 1.209585.'22'(0.020365) + 2.057384.'20'(0.030572) + 1.622292.'18'(0.006163) + 1.140856.'13'(0.006163) + 1.195660.'7'(0.012099) + 0.671368.'4'(0.020365) + 1.448857.'37'(0.000000) + 0.328902.'43'(0.000000) + 0.449322.'44'(0.000000) + 1.122780.'45'(0.000000) + 1.055999.'48'(0.000000) + 1.491899.'51'(0.000000) + 1.869386.'59'(0.000000) + 1.863970.'62'(0.000000) + 1.154044.'65'(0.000000) + 1.548267.'67'(0.000000) + 1.030625.'68'(0.000000) + 1.150820.'71'(0.000000) + 0.668796.'71'(0.000000) + 0.428674.'72'(0.000000) + 0.321220.'77'(0.000000) + 1.667631.'83'(0.000000) + 2.222565.'85'(0.000000) + 1.919167.'91'(0.000000) + 1.033395.'97'(0.000000) + 0) <= 2.984953 ('31')
+> [0.000000]: [ker_lmm/DEBUG]  (1.473135.'36'(0.000069) + 1.424348.'30'(0.000069) + 1.548933.'28'(0.000069) + 1.963822.'27'(0.113551) + 1.335913.'14'(0.006163) + 1.350829.'12'(0.012099) + 0.947682.'10'(0.006163) + 0.353263.'9'(0.006163) + 1.360697.'5'(0.030572) + 1.027032.'4'(0.020365) + 1.785414.'4'(0.020365) + 0.079639.'33'(0.000000) + 1.506060.'35'(0.000000) + 2.166030.'37'(0.000000) + 0.750331.'37'(0.000000) + 1.635686.'45'(0.000000) + 0.550879.'58'(0.000000) + 1.954481.'59'(0.000000) + 1.041460.'64'(0.000000) + 1.995224.'65'(0.000000) + 0.523144.'66'(0.000000) + 1.287240.'68'(0.000000) + 1.856820.'70'(0.000000) + 1.379728.'79'(0.000000) + 1.364267.'80'(0.000000) + 2.558274.'86'(0.000000) + 1.532661.'91'(0.000000) + 1.170389.'94'(0.000000) + 1.959711.'98'(0.000000) + 0) <= 5.148891 ('50')
+> [0.000000]: [ker_lmm/DEBUG]  (1.862578.'78'(0.000069) + 1.416727.'39'(0.000069) + 2.189062.'31'(0.012099) + 0.729096.'24'(0.063103) + 1.656971.'20'(0.030572) + 0.948492.'18'(0.006163) + 1.536266.'13'(0.006163) + 1.831542.'5'(0.030572) + 2.167218.'4'(0.020365) + 1.613452.'55'(0.000000) + 1.497068.'65'(0.000000) + 1.123872.'68'(0.000000) + 2.190230.'70'(0.000000) + 0.542362.'71'(0.000000) + 0.967943.'84'(0.000000) + 2.726884.'93'(0.000000) + 1.662178.'96'(0.000000) + 1.858692.'99'(0.000000) + 0) <= 8.296034 ('20')
+> [0.000000]: [ker_lmm/DEBUG]  (1.745854.'100'(0.113551) + 2.696288.'50'(0.000069) + 0.640409.'38'(0.020365) + 1.528585.'36'(0.000069) + 1.881151.'29'(0.027475) + 0.563048.'22'(0.020365) + 1.732494.'20'(0.030572) + 2.521302.'14'(0.006163) + 0.512534.'11'(0.006163) + 2.109561.'5'(0.030572) + 2.493067.'4'(0.020365) + 1.769842.'35'(0.000000) + 0.908374.'53'(0.000000) + 0.940655.'62'(0.000000) + 1.415568.'63'(0.000000) + 2.107345.'73'(0.000000) + 2.408468.'74'(0.000000) + 0.535814.'74'(0.000000) + 2.676492.'77'(0.000000) + 0.487079.'80'(0.000000) + 2.582528.'86'(0.000000) + 1.493858.'97'(0.000000) + 2.063837.'98'(0.000000) + 1.339383.'99'(0.000000) + 0) <= 9.565357 ('43')
+> [0.000000]: [ker_lmm/DEBUG]  (1.202595.'90'(0.240619) + 1.991977.'78'(0.000069) + 1.057492.'34'(0.027475) + 2.355632.'32'(0.178987) + 0.942310.'31'(0.012099) + 0.792453.'20'(0.030572) + 1.741767.'18'(0.006163) + 1.791350.'12'(0.012099) + 2.619497.'10'(0.006163) + 2.141346.'8'(0.006163) + 0.840229.'7'(0.012099) + 1.444229.'5'(0.030572) + 1.487839.'48'(0.000000) + 0.813607.'56'(0.000000) + 1.281472.'61'(0.000000) + 2.341396.'63'(0.000000) + 2.699101.'66'(0.000000) + 2.018592.'67'(0.000000) + 1.518680.'68'(0.000000) + 0.586179.'73'(0.000000) + 1.914005.'92'(0.000000) + 0) <= 9.033795 ('70')
+> [0.000000]: [ker_lmm/DEBUG]  (1.945839.'90'(0.240619) + 2.929358.'78'(0.000069) + 1.168506.'50'(0.000069) + 2.147659.'49'(0.012099) + 1.263269.'40'(0.012099) + 0.530949.'36'(0.000069) + 2.247271.'30'(0.000069) + 0.601199.'28'(0.000069) + 2.194459.'26'(0.006163) + 1.811856.'23'(0.027475) + 0.003839.'21'(0.012099) + 2.951036.'21'(0.012099) + 2.455284.'16'(0.129552) + 0.630293.'6'(0.113551) + 0.882265.'5'(0.030572) + 1.040994.'33'(0.000000) + 1.356063.'52'(0.000000) + 1.910444.'56'(0.000000) + 1.428148.'59'(0.000000) + 1.373441.'61'(0.000000) + 1.359336.'64'(0.000000) + 0.829171.'66'(0.000000) + 0.849480.'72'(0.000000) + 2.735495.'73'(0.000000) + 1.814065.'75'(0.000000) + 2.674892.'79'(0.000000) + 1.668739.'95'(0.000000) + 0) <= 3.023326 ('3')
+> [0.000000]: [ker_lmm/DEBUG]  (1.509946.'78'(0.000069) + 1.328364.'76'(0.000069) + 2.594658.'42'(0.000069) + 1.827268.'40'(0.012099) + 1.830207.'38'(0.020365) + 0.318671.'36'(0.000069) + 1.863854.'20'(0.030572) + 2.277746.'18'(0.006163) + 2.375105.'16'(0.129552) + 1.895199.'15'(0.030572) + 2.023118.'5'(0.030572) + 1.189696.'37'(0.000000) + 1.401383.'48'(0.000000) + 2.131370.'54'(0.000000) + 2.716267.'61'(0.000000) + 1.141565.'64'(0.000000) + 0.907024.'66'(0.000000) + 1.381965.'68'(0.000000) + 1.477048.'74'(0.000000) + 2.463582.'81'(0.000000) + 1.623783.'86'(0.000000) + 0) <= 7.892793 ('32')
+> [0.000000]: [ker_lmm/DEBUG]  (1.444932.'100'(0.113551) + 1.521542.'82'(0.006163) + 0.765463.'76'(0.000069) + 1.403147.'42'(0.000069) + 1.511028.'38'(0.020365) + 1.609308.'28'(0.000069) + 1.296327.'26'(0.006163) + 3.312020.'26'(0.006163) + 1.617918.'24'(0.063103) + 1.364739.'22'(0.020365) + 1.678793.'15'(0.030572) + 1.486965.'10'(0.006163) + 1.224155.'9'(0.006163) + 1.726574.'5'(0.030572) + 1.856127.'46'(0.000000) + 2.657988.'56'(0.000000) + 0.440723.'56'(0.000000) + 0.339524.'62'(0.000000) + 0.522284.'64'(0.000000) + 0.702882.'65'(0.000000) + 1.033674.'67'(0.000000) + 1.969829.'70'(0.000000) + 1.123117.'71'(0.000000) + 0.522276.'72'(0.000000) + 1.488982.'73'(0.000000) + 1.902724.'74'(0.000000) + 0.690593.'75'(0.000000) + 1.809265.'86'(0.000000) + 1.674574.'94'(0.000000) + 1.150278.'96'(0.000000) + 1.597986.'98'(0.000000) + 0.845645.'98'(0.000000) + 0) <= 8.316926 ('78')
+> [0.000000]: [ker_lmm/DEBUG]  (0.124568.'100'(0.113551) + 1.504045.'88'(0.000069) + 0.715669.'82'(0.006163) + 1.619806.'40'(0.012099) + 0.395567.'30'(0.000069) + 0.417703.'17'(0.113551) + 1.284768.'14'(0.006163) + 1.913833.'11'(0.006163) + 2.306159.'7'(0.012099) + 2.184915.'5'(0.030572) + 1.451440.'37'(0.000000) + 1.792684.'41'(0.000000) + 0.312380.'47'(0.000000) + 1.582557.'48'(0.000000) + 1.753562.'51'(0.000000) + 2.420233.'52'(0.000000) + 1.803453.'54'(0.000000) + 1.322227.'58'(0.000000) + 0.559601.'64'(0.000000) + 1.380426.'71'(0.000000) + 0.820164.'74'(0.000000) + 1.896783.'81'(0.000000) + 2.123275.'84'(0.000000) + 0.642719.'98'(0.000000) + 0) <= 6.378365 ('58')
+> [0.000000]: [ker_lmm/DEBUG]  (0.908263.'82'(0.006163) + 2.531268.'50'(0.000069) + 1.466575.'34'(0.027475) + 1.644573.'32'(0.178987) + 1.125139.'24'(0.063103) + 2.414813.'23'(0.027475) + 1.306117.'19'(0.019293) + 2.266873.'17'(0.113551) + 2.221891.'16'(0.129552) + 2.363266.'6'(0.113551) + 1.130246.'5'(0.030572) + 0.868905.'33'(0.000000) + 1.622571.'58'(0.000000) + 1.381037.'69'(0.000000) + 0.606772.'69'(0.000000) + 1.506193.'72'(0.000000) + 0.897168.'91'(0.000000) + 1.232301.'94'(0.000000) + 0.854497.'95'(0.000000) + 1.177505.'95'(0.000000) + 0) <= 8.463109 ('8')
+> [0.000000]: [ker_lmm/DEBUG]  (0.890818.'24'(0.063103) + 0.949181.'17'(0.113551) + 1.161397.'5'(0.030572) + 2.475867.'53'(0.000000) + 1.584881.'56'(0.000000) + 1.845275.'57'(0.000000) + 1.134506.'58'(0.000000) + 1.010085.'67'(0.000000) + 0.734816.'68'(0.000000) + 2.173933.'77'(0.000000) + 1.089899.'77'(0.000000) + 1.422290.'84'(0.000000) + 2.575473.'93'(0.000000) + 2.016150.'96'(0.000000) + 2.164767.'98'(0.000000) + 0) <= 6.216957 ('65')
+> [0.000000]: [ker_lmm/DEBUG]  (1.257126.'78'(0.000069) + 0.905694.'76'(0.000069) + 1.926757.'38'(0.020365) + 0.895732.'29'(0.027475) + 2.333933.'25'(0.020365) + 0.753780.'22'(0.020365) + 0.731851.'20'(0.030572) + 1.943488.'20'(0.030572) + 2.111822.'15'(0.030572) + 0.672911.'13'(0.006163) + 3.321218.'13'(0.006163) + 1.948580.'10'(0.006163) + 1.041960.'5'(0.030572) + 1.791570.'37'(0.000000) + 2.584222.'43'(0.000000) + 1.271336.'45'(0.000000) + 1.479654.'51'(0.000000) + 0.341589.'52'(0.000000) + 2.163503.'58'(0.000000) + 2.093526.'68'(0.000000) + 1.295291.'89'(0.000000) + 1.839458.'96'(0.000000) + 1.412990.'98'(0.000000) + 0) <= 0.341713 ('29')
+> [0.000000]: [ker_lmm/DEBUG]  (1.699831.'49'(0.012099) + 1.812137.'42'(0.000069) + 1.797926.'40'(0.012099) + 0.918037.'39'(0.000069) + 2.538168.'26'(0.006163) + 1.120507.'20'(0.030572) + 1.685578.'20'(0.030572) + 1.726454.'19'(0.019293) + 1.709282.'18'(0.006163) + 1.184840.'8'(0.006163) + 1.140714.'7'(0.012099) + 0.878039.'6'(0.113551) + 2.261848.'6'(0.113551) + 2.758990.'35'(0.000000) + 1.381085.'51'(0.000000) + 1.268826.'54'(0.000000) + 1.526259.'59'(0.000000) + 1.633169.'61'(0.000000) + 0.975245.'65'(0.000000) + 1.392593.'68'(0.000000) + 0.175793.'70'(0.000000) + 2.562022.'75'(0.000000) + 0.836806.'79'(0.000000) + 1.241203.'80'(0.000000) + 1.427529.'84'(0.000000) + 2.002977.'91'(0.000000) + 2.799924.'96'(0.000000) + 0) <= 5.783896 ('68')
+> [0.000000]: [ker_lmm/DEBUG]  (0.935243.'90'(0.240619) + 1.889933.'88'(0.000069) + 1.914796.'82'(0.006163) + 0.325771.'36'(0.000069) + 1.036916.'34'(0.027475) + 1.442773.'30'(0.000069) + 1.126293.'29'(0.027475) + 3.864114.'29'(0.027475) + 1.176041.'21'(0.012099) + 0.372924.'13'(0.006163) + 0.809181.'6'(0.113551) + 1.926613.'33'(0.000000) + 1.811432.'43'(0.000000) + 0.777289.'53'(0.000000) + 2.121541.'57'(0.000000) + 1.021144.'67'(0.000000) + 3.357204.'70'(0.000000) + 1.314002.'70'(0.000000) + 3.330889.'74'(0.000000) + 0.801600.'74'(0.000000) + 2.287432.'83'(0.000000) + 1.139330.'89'(0.000000) + 1.853973.'91'(0.000000) + 0) <= 8.763891 ('18')
+> [0.000000]: [ker_lmm/DEBUG]  (1.281476.'100'(0.113551) + 1.440534.'88'(0.000069) + 0.394710.'87'(0.044062) + 1.919734.'50'(0.000069) + 0.196730.'36'(0.000069) + 2.041853.'28'(0.000069) + 0.945787.'22'(0.020365) + 1.658397.'19'(0.019293) + 1.219434.'13'(0.006163) + 2.290925.'13'(0.006163) + 0.420682.'10'(0.006163) + 0.669219.'6'(0.113551) + 2.984901.'6'(0.113551) + 2.149153.'41'(0.000000) + 2.455934.'47'(0.000000) + 2.786306.'48'(0.000000) + 0.835986.'53'(0.000000) + 1.656469.'55'(0.000000) + 2.739236.'60'(0.000000) + 1.264066.'61'(0.000000) + 0.819034.'66'(0.000000) + 1.507804.'67'(0.000000) + 1.106054.'75'(0.000000) + 1.987768.'83'(0.000000) + 0.646959.'89'(0.000000) + 1.279857.'92'(0.000000) + 1.129262.'95'(0.000000) + 0) <= 5.406005 ('47')
+> [0.000000]: [ker_lmm/DEBUG]  (2.125625.'82'(0.006163) + 0.947766.'78'(0.000069) + 2.221943.'49'(0.012099) + 1.903976.'39'(0.000069) + 1.854606.'28'(0.000069) + 0.305071.'25'(0.020365) + 0.937291.'25'(0.020365) + 1.070252.'23'(0.027475) + 0.556078.'22'(0.020365) + 0.934094.'20'(0.030572) + 2.210368.'19'(0.019293) + 2.427476.'18'(0.006163) + 1.604609.'16'(0.129552) + 1.235374.'9'(0.006163) + 2.054239.'6'(0.113551) + 2.373857.'37'(0.000000) + 0.826317.'44'(0.000000) + 0.587304.'45'(0.000000) + 1.644479.'46'(0.000000) + 1.655688.'52'(0.000000) + 1.851783.'81'(0.000000) + 2.813412.'86'(0.000000) + 1.750387.'92'(0.000000) + 0) <= 8.833061 ('59')
+> [0.000000]: [ker_lmm/DEBUG]  (1.743078.'39'(0.000069) + 1.466711.'36'(0.000069) + 0.503551.'34'(0.027475) + 1.807400.'32'(0.178987) + 1.343814.'31'(0.012099) + 1.551916.'28'(0.000069) + 2.791202.'16'(0.129552) + 0.510615.'14'(0.006163) + 1.202881.'13'(0.006163) + 1.725236.'11'(0.006163) + 0.856237.'6'(0.113551) + 3.015861.'46'(0.000000) + 1.437731.'46'(0.000000) + 2.281470.'47'(0.000000) + 0.129507.'51'(0.000000) + 2.661813.'62'(0.000000) + 1.192285.'63'(0.000000) + 1.488221.'72'(0.000000) + 2.317244.'73'(0.000000) + 0.487325.'73'(0.000000) + 1.463591.'93'(0.000000) + 0) <= 2.360890 ('4')
+> [0.000000]: [ker_lmm/DEBUG]  (0.960805.'100'(0.113551) + 2.221964.'88'(0.000069) + 1.388514.'40'(0.012099) + 2.114740.'39'(0.000069) + 1.298887.'38'(0.020365) + 2.670975.'34'(0.027475) + 1.009443.'25'(0.020365) + 1.745244.'22'(0.020365) + 0.412622.'18'(0.006163) + 2.077908.'16'(0.129552) + 1.668006.'14'(0.006163) + 0.232055.'8'(0.006163) + 2.079142.'7'(0.012099) + 2.141814.'48'(0.000000) + 1.548607.'55'(0.000000) + 0.956527.'59'(0.000000) + 0.308032.'60'(0.000000) + 0.975814.'66'(0.000000) + 1.898931.'68'(0.000000) + 0.695469.'69'(0.000000) + 2.002323.'70'(0.000000) + 1.486428.'73'(0.000000) + 2.457999.'75'(0.000000) + 1.576866.'77'(0.000000) + 0.509913.'80'(0.000000) + 0.670542.'83'(0.000000) + 2.336782.'84'(0.000000) + 1.440402.'86'(0.000000) + 0.661448.'99'(0.000000) + 0) <= 9.391278 ('14')
+> [0.000000]: [ker_lmm/DEBUG]  (1.742202.'88'(0.000069) + 0.999326.'49'(0.012099) + 2.607051.'40'(0.012099) + 1.560306.'39'(0.000069) + 1.489587.'36'(0.000069) + 1.566774.'34'(0.027475) + 1.906809.'24'(0.063103) + 2.045128.'17'(0.113551) + 1.552579.'9'(0.006163) + 1.259493.'7'(0.012099) + 1.712923.'33'(0.000000) + 1.076189.'54'(0.000000) + 1.651478.'55'(0.000000) + 2.329769.'58'(0.000000) + 2.474422.'65'(0.000000) + 2.942554.'69'(0.000000) + 0.754960.'69'(0.000000) + 2.777254.'73'(0.000000) + 0.660148.'73'(0.000000) + 2.203256.'84'(0.000000) + 1.388219.'91'(0.000000) + 0.528079.'97'(0.000000) + 0) <= 8.071052 ('98')
+> [0.000000]: [ker_lmm/DEBUG]  (1.564334.'88'(0.000069) + 0.399939.'76'(0.000069) + 2.425168.'76'(0.000069) + 0.728105.'31'(0.012099) + 2.259898.'25'(0.020365) + 1.697699.'12'(0.012099) + 1.808660.'11'(0.006163) + 0.719628.'7'(0.012099) + 0.872073.'37'(0.000000) + 2.231891.'41'(0.000000) + 0.988622.'45'(0.000000) + 1.916984.'47'(0.000000) + 1.933501.'65'(0.000000) + 1.462353.'68'(0.000000) + 0.651220.'70'(0.000000) + 0.790100.'85'(0.000000) + 1.554272.'92'(0.000000) + 0) <= 0.733642 ('33')
+> [0.000000]: [ker_lmm/DEBUG]  (1.786018.'82'(0.006163) + 1.947234.'78'(0.000069) + 1.642824.'76'(0.000069) + 0.755497.'42'(0.000069) + 1.234668.'40'(0.012099) + 0.859017.'36'(0.000069) + 1.690954.'32'(0.178987) + 1.313217.'31'(0.012099) + 1.403951.'23'(0.027475) + 0.571324.'22'(0.020365) + 1.093234.'18'(0.006163) + 0.143028.'15'(0.030572) + 1.405319.'13'(0.006163) + 2.891997.'11'(0.006163) + 1.356068.'10'(0.006163) + 1.514295.'7'(0.012099) + 2.809046.'35'(0.000000) + 1.093155.'47'(0.000000) + 0.667851.'51'(0.000000) + 2.260652.'57'(0.000000) + 1.417857.'58'(0.000000) + 2.229466.'59'(0.000000) + 1.757229.'60'(0.000000) + 1.657877.'66'(0.000000) + 2.194061.'70'(0.000000) + 2.028081.'71'(0.000000) + 0.303044.'75'(0.000000) + 1.684253.'83'(0.000000) + 1.801864.'85'(0.000000) + 1.155367.'92'(0.000000) + 1.452926.'93'(0.000000) + 0.476655.'94'(0.000000) + 2.048520.'97'(0.000000) + 2.573317.'98'(0.000000) + 0) <= 1.194905 ('36')
+> [0.000000]: [ker_lmm/DEBUG]  (1.028386.'100'(0.113551) + 0.120647.'87'(0.044062) + 2.464362.'87'(0.044062) + 0.968744.'76'(0.000069) + 1.699420.'49'(0.012099) + 1.643824.'42'(0.000069) + 2.149216.'31'(0.012099) + 1.496767.'29'(0.027475) + 1.694809.'28'(0.000069) + 1.729823.'24'(0.063103) + 1.035522.'22'(0.020365) + 1.688487.'12'(0.012099) + 1.979455.'8'(0.006163) + 0.634950.'35'(0.000000) + 0.966902.'48'(0.000000) + 1.316543.'51'(0.000000) + 2.130642.'53'(0.000000) + 2.531803.'56'(0.000000) + 1.301352.'57'(0.000000) + 0.153387.'58'(0.000000) + 0.997002.'62'(0.000000) + 1.836581.'74'(0.000000) + 1.323560.'75'(0.000000) + 0) <= 6.477494 ('60')
+> [0.000000]: [ker_lmm/DEBUG]  (1.405104.'100'(0.113551) + 1.405491.'88'(0.000069) + 1.072704.'76'(0.000069) + 1.337678.'38'(0.020365) + 1.647286.'36'(0.000069) + 2.217245.'32'(0.178987) + 0.537341.'31'(0.012099) + 2.120782.'26'(0.006163) + 1.750388.'25'(0.020365) + 2.581114.'19'(0.019293) + 1.848952.'18'(0.006163) + 1.443829.'15'(0.030572) + 2.050061.'10'(0.006163) + 1.090738.'8'(0.006163) + 1.915513.'37'(0.000000) + 1.460684.'54'(0.000000) + 1.467436.'55'(0.000000) + 1.350329.'60'(0.000000) + 1.609333.'64'(0.000000) + 1.400969.'74'(0.000000) + 1.643264.'89'(0.000000) + 0.624725.'95'(0.000000) + 1.192688.'98'(0.000000) + 0) <= 4.269098 ('99')
+> [0.000000]: [ker_lmm/DEBUG]  (1.160592.'87'(0.044062) + 2.010318.'87'(0.044062) + 1.011440.'82'(0.006163) + 1.347726.'50'(0.000069) + 2.098365.'49'(0.012099) + 0.887917.'28'(0.000069) + 1.291252.'23'(0.027475) + 1.028630.'13'(0.006163) + 0.917425.'13'(0.006163) + 1.585950.'12'(0.012099) + 0.527916.'10'(0.006163) + 1.837102.'8'(0.006163) + 2.370840.'35'(0.000000) + 3.274995.'43'(0.000000) + 0.803071.'43'(0.000000) + 2.322685.'44'(0.000000) + 2.292077.'48'(0.000000) + 1.304584.'52'(0.000000) + 1.509518.'58'(0.000000) + 0.191116.'66'(0.000000) + 2.173128.'71'(0.000000) + 1.274457.'77'(0.000000) + 0.145568.'77'(0.000000) + 1.653130.'79'(0.000000) + 0.146393.'89'(0.000000) + 1.227434.'92'(0.000000) + 0) <= 6.139383 ('42')
+> [0.000000]: [ker_lmm/DEBUG]  (1.793638.'88'(0.000069) + 1.207472.'87'(0.044062) + 1.640786.'49'(0.012099) + 1.492544.'30'(0.000069) + 1.346231.'24'(0.063103) + 2.300657.'21'(0.012099) + 2.167632.'19'(0.019293) + 2.031915.'9'(0.006163) + 1.548157.'8'(0.006163) + 1.555267.'33'(0.000000) + 1.061562.'43'(0.000000) + 2.772407.'45'(0.000000) + 1.569363.'47'(0.000000) + 2.127742.'52'(0.000000) + 0.634263.'52'(0.000000) + 1.284080.'55'(0.000000) + 0.317868.'56'(0.000000) + 2.037391.'59'(0.000000) + 1.995645.'65'(0.000000) + 1.963792.'69'(0.000000) + 1.673417.'72'(0.000000) + 1.329080.'75'(0.000000) + 1.558805.'77'(0.000000) + 1.072858.'92'(0.000000) + 0.486959.'93'(0.000000) + 0.796534.'97'(0.000000) + 0) <= 5.857593 ('94')
+> [0.000000]: [ker_lmm/DEBUG]  (1.166740.'88'(0.000069) + 0.670081.'34'(0.027475) + 2.557557.'31'(0.012099) + 0.695989.'30'(0.000069) + 1.116681.'25'(0.020365) + 2.318190.'24'(0.063103) + 1.385299.'14'(0.006163) + 1.547427.'13'(0.006163) + 2.266819.'10'(0.006163) + 1.701111.'8'(0.006163) + 2.401656.'33'(0.000000) + 2.630843.'51'(0.000000) + 1.968790.'53'(0.000000) + 1.008675.'59'(0.000000) + 1.251231.'60'(0.000000) + 2.217645.'72'(0.000000) + 1.577242.'74'(0.000000) + 1.563015.'79'(0.000000) + 1.066298.'81'(0.000000) + 2.152406.'92'(0.000000) + 2.585552.'94'(0.000000) + 1.303983.'97'(0.000000) + 1.582619.'98'(0.000000) + 0) <= 8.420309 ('92')
+> [0.000000]: [ker_lmm/DEBUG]  (1.524768.'82'(0.006163) + 1.606699.'50'(0.000069) + 2.235559.'40'(0.012099) + 1.699471.'30'(0.000069) + 1.507236.'28'(0.000069) + 1.755627.'19'(0.019293) + 2.413011.'16'(0.129552) + 2.340438.'15'(0.030572) + 1.595138.'8'(0.006163) + 1.722848.'35'(0.000000) + 1.305391.'41'(0.000000) + 0.336208.'44'(0.000000) + 2.909272.'48'(0.000000) + 0.447815.'54'(0.000000) + 1.617690.'57'(0.000000) + 1.020568.'65'(0.000000) + 0.994294.'72'(0.000000) + 1.974799.'80'(0.000000) + 0.811012.'81'(0.000000) + 0.631385.'81'(0.000000) + 2.127948.'85'(0.000000) + 1.414472.'89'(0.000000) + 1.206571.'97'(0.000000) + 1.302504.'98'(0.000000) + 0) <= 9.034019 ('52')
+> [0.000000]: [ker_lmm/DEBUG]  (1.270133.'76'(0.000069) + 1.445617.'42'(0.000069) + 0.512378.'29'(0.027475) + 1.253041.'27'(0.113551) + 1.143595.'26'(0.006163) + 2.736226.'25'(0.020365) + 1.158903.'23'(0.027475) + 0.865739.'22'(0.020365) + 2.682442.'15'(0.030572) + 2.006404.'9'(0.006163) + 3.054403.'33'(0.000000) + 0.823580.'33'(0.000000) + 1.016073.'37'(0.000000) + 1.564331.'59'(0.000000) + 2.909078.'65'(0.000000) + 0.951618.'70'(0.000000) + 0.572722.'72'(0.000000) + 2.200170.'75'(0.000000) + 1.521441.'79'(0.000000) + 1.600129.'85'(0.000000) + 0.858442.'86'(0.000000) + 0.765892.'93'(0.000000) + 2.022054.'96'(0.000000) + 0) <= 3.965807 ('5')
+> [0.000000]: [ker_lmm/DEBUG]  (2.093934.'100'(0.113551) + 2.417847.'27'(0.113551) + 1.405445.'16'(0.129552) + 0.994695.'9'(0.006163) + 1.454422.'46'(0.000000) + 1.845335.'57'(0.000000) + 1.766428.'60'(0.000000) + 2.798823.'69'(0.000000) + 1.774598.'79'(0.000000) + 1.138548.'83'(0.000000) + 2.638663.'89'(0.000000) + 1.279438.'91'(0.000000) + 1.138915.'96'(0.000000) + 2.943563.'98'(0.000000) + 0.924747.'98'(0.000000) + 0) <= 4.179265 ('95')
+> [0.000000]: [ker_lmm/DEBUG]  (1.043234.'90'(0.240619) + 1.822970.'90'(0.240619) + 1.523744.'88'(0.000069) + 1.863592.'49'(0.012099) + 0.548219.'28'(0.000069) + 1.971675.'15'(0.030572) + 1.808167.'10'(0.006163) + 1.849337.'33'(0.000000) + 1.598957.'41'(0.000000) + 1.388141.'44'(0.000000) + 1.249598.'51'(0.000000) + 0.792863.'53'(0.000000) + 2.307974.'56'(0.000000) + 1.464135.'57'(0.000000) + 0.805015.'65'(0.000000) + 0.035705.'66'(0.000000) + 2.524301.'67'(0.000000) + 1.275692.'68'(0.000000) + 0.499955.'72'(0.000000) + 1.034307.'73'(0.000000) + 0.887078.'80'(0.000000) + 2.688491.'84'(0.000000) + 0.861989.'86'(0.000000) + 0.768805.'92'(0.000000) + 2.177257.'93'(0.000000) + 1.466219.'93'(0.000000) + 0) <= 3.879107 ('6')
+> [0.000000]: [ker_lmm/DEBUG]  (1.291374.'50'(0.000069) + 1.950542.'38'(0.020365) + 1.386950.'36'(0.000069) + 1.587288.'34'(0.027475) + 2.396137.'32'(0.178987) + 1.575724.'25'(0.020365) + 0.805103.'23'(0.027475) + 0.694380.'11'(0.006163) + 2.877807.'11'(0.006163) + 1.199667.'37'(0.000000) + 1.443891.'45'(0.000000) + 0.727671.'52'(0.000000) + 0.347555.'52'(0.000000) + 0.724222.'54'(0.000000) + 0.782665.'59'(0.000000) + 1.609420.'60'(0.000000) + 1.536362.'71'(0.000000) + 1.318535.'75'(0.000000) + 1.680210.'79'(0.000000) + 1.842302.'81'(0.000000) + 1.209645.'83'(0.000000) + 2.682472.'84'(0.000000) + 1.219607.'85'(0.000000) + 1.621102.'91'(0.000000) + 2.013938.'92'(0.000000) + 1.808325.'97'(0.000000) + 2.383492.'98'(0.000000) + 0) <= 5.586898 ('13')
+> [0.000000]: [ker_lmm/DEBUG]  (0.438648.'82'(0.006163) + 1.345093.'78'(0.000069) + 2.151200.'38'(0.020365) + 0.204170.'32'(0.178987) + 2.235736.'32'(0.178987) + 0.809876.'31'(0.012099) + 1.402595.'27'(0.113551) + 1.643900.'19'(0.019293) + 2.548434.'18'(0.006163) + 1.100685.'12'(0.012099) + 1.755388.'33'(0.000000) + 2.272421.'35'(0.000000) + 2.152087.'41'(0.000000) + 1.250271.'41'(0.000000) + 1.233098.'53'(0.000000) + 1.341941.'61'(0.000000) + 1.385342.'61'(0.000000) + 1.069706.'67'(0.000000) + 1.422483.'69'(0.000000) + 1.394979.'70'(0.000000) + 1.465863.'79'(0.000000) + 1.726635.'83'(0.000000) + 1.330512.'89'(0.000000) + 1.158860.'91'(0.000000) + 1.409237.'98'(0.000000) + 0) <= 3.976768 ('55')
+> [0.000000]: [ker_lmm/DEBUG]  (2.045024.'100'(0.113551) + 1.379295.'82'(0.006163) + 1.802277.'49'(0.012099) + 0.975283.'36'(0.000069) + 1.310975.'26'(0.006163) + 0.632499.'25'(0.020365) + 2.732743.'25'(0.020365) + 1.988011.'22'(0.020365) + 1.164316.'21'(0.012099) + 2.100251.'18'(0.006163) + 2.165325.'16'(0.129552) + 1.190563.'41'(0.000000) + 1.661413.'43'(0.000000) + 2.694264.'53'(0.000000) + 1.387519.'54'(0.000000) + 2.151207.'58'(0.000000) + 0.691695.'60'(0.000000) + 1.533238.'62'(0.000000) + 2.333776.'70'(0.000000) + 2.026018.'74'(0.000000) + 1.219417.'75'(0.000000) + 2.077492.'79'(0.000000) + 2.232143.'86'(0.000000) + 1.600785.'89'(0.000000) + 1.249349.'93'(0.000000) + 1.022408.'94'(0.000000) + 1.128534.'97'(0.000000) + 0) <= 5.098103 ('89')
+> [0.000000]: [ker_lmm/DEBUG]  (1.633446.'82'(0.006163) + 1.469177.'40'(0.012099) + 1.417990.'28'(0.000069) + 1.312999.'19'(0.019293) + 3.149961.'19'(0.019293) + 1.681294.'51'(0.000000) + 1.024134.'52'(0.000000) + 1.858344.'58'(0.000000) + 2.909576.'67'(0.000000) + 0.571106.'69'(0.000000) + 1.270577.'71'(0.000000) + 2.256616.'81'(0.000000) + 1.012306.'81'(0.000000) + 2.699627.'84'(0.000000) + 1.368954.'85'(0.000000) + 1.370806.'94'(0.000000) + 2.113437.'96'(0.000000) + 0) <= 2.897600 ('97')
+> [0.000000]: [ker_lmm/DEBUG]  (2.661373.'88'(0.000069) + 2.792546.'78'(0.000069) + 2.099026.'76'(0.000069) + 0.746880.'50'(0.000069) + 0.832919.'42'(0.000069) + 1.442359.'39'(0.000069) + 2.334544.'39'(0.000069) + 0.537732.'36'(0.000069) + 0.749722.'30'(0.000069) + 2.396652.'28'(0.000069) + 2.596263.'43'(0.000000) + 0.076666.'43'(0.000000) + 1.104871.'45'(0.000000) + 1.229418.'46'(0.000000) + 1.895636.'57'(0.000000) + 2.619750.'60'(0.000000) + 1.171261.'62'(0.000000) + 1.072570.'64'(0.000000) + 1.616192.'66'(0.000000) + 0.977803.'68'(0.000000) + 1.581363.'73'(0.000000) + 0) <= 0.001144 ('2')
+> [0.000000]: [ker_lmm/DEBUG] Variables
+> [0.000000]: [ker_lmm/DEBUG] '100'(1.000000) : 0.113551
+> [0.000000]: [ker_lmm/DEBUG] '90'(1.000000) : 0.240619
+> [0.000000]: [ker_lmm/DEBUG] '88'(1.000000) : 0.000069
+> [0.000000]: [ker_lmm/DEBUG] '87'(1.000000) : 0.044062
+> [0.000000]: [ker_lmm/DEBUG] '82'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '78'(1.000000) : 0.000069
+> [0.000000]: [ker_lmm/DEBUG] '76'(1.000000) : 0.000069
+> [0.000000]: [ker_lmm/DEBUG] '50'(1.000000) : 0.000069
+> [0.000000]: [ker_lmm/DEBUG] '49'(1.000000) : 0.012099
+> [0.000000]: [ker_lmm/DEBUG] '42'(1.000000) : 0.000069
+> [0.000000]: [ker_lmm/DEBUG] '40'(1.000000) : 0.012099
+> [0.000000]: [ker_lmm/DEBUG] '39'(1.000000) : 0.000069
+> [0.000000]: [ker_lmm/DEBUG] '38'(1.000000) : 0.020365
+> [0.000000]: [ker_lmm/DEBUG] '36'(1.000000) : 0.000069
+> [0.000000]: [ker_lmm/DEBUG] '34'(1.000000) : 0.027475
+> [0.000000]: [ker_lmm/DEBUG] '32'(1.000000) : 0.178987
+> [0.000000]: [ker_lmm/DEBUG] '31'(1.000000) : 0.012099
+> [0.000000]: [ker_lmm/DEBUG] '30'(1.000000) : 0.000069
+> [0.000000]: [ker_lmm/DEBUG] '29'(1.000000) : 0.027475
+> [0.000000]: [ker_lmm/DEBUG] '28'(1.000000) : 0.000069
+> [0.000000]: [ker_lmm/DEBUG] '27'(1.000000) : 0.113551
+> [0.000000]: [ker_lmm/DEBUG] '26'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '25'(1.000000) : 0.020365
+> [0.000000]: [ker_lmm/DEBUG] '24'(1.000000) : 0.063103
+> [0.000000]: [ker_lmm/DEBUG] '23'(1.000000) : 0.027475
+> [0.000000]: [ker_lmm/DEBUG] '22'(1.000000) : 0.020365
+> [0.000000]: [ker_lmm/DEBUG] '21'(1.000000) : 0.012099
+> [0.000000]: [ker_lmm/DEBUG] '20'(1.000000) : 0.030572
+> [0.000000]: [ker_lmm/DEBUG] '19'(1.000000) : 0.019293
+> [0.000000]: [ker_lmm/DEBUG] '18'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '17'(1.000000) : 0.113551
+> [0.000000]: [ker_lmm/DEBUG] '16'(1.000000) : 0.129552
+> [0.000000]: [ker_lmm/DEBUG] '15'(1.000000) : 0.030572
+> [0.000000]: [ker_lmm/DEBUG] '14'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '13'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '12'(1.000000) : 0.012099
+> [0.000000]: [ker_lmm/DEBUG] '11'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '10'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '9'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '8'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '7'(1.000000) : 0.012099
+> [0.000000]: [ker_lmm/DEBUG] '6'(1.000000) : 0.113551
+> [0.000000]: [ker_lmm/DEBUG] '5'(1.000000) : 0.030572
+> [0.000000]: [ker_lmm/DEBUG] '4'(1.000000) : 0.020365
+> [0.000000]: [ker_lmm/DEBUG] '3'(1.000000) : 0.006163
+> [0.000000]: [ker_lmm/DEBUG] '2'(1.000000) : 0.019293
+> [0.000000]: [ker_lmm/DEBUG] '1'(1.000000) : 0.240619
+> [0.000000]: [ker_lmm/DEBUG] '33'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '35'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '37'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '41'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '43'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '44'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '45'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '46'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '47'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '48'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '51'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '52'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '53'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '54'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '55'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '56'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '57'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '58'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '59'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '60'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '61'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '62'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '63'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '64'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '65'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '66'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '67'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '68'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '69'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '70'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '71'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '72'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '73'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '74'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '75'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '77'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '79'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '80'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '81'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '83'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '84'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '85'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '86'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '89'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '91'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '92'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '93'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '94'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '95'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '96'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '97'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '98'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] '99'(0.000000) : 0.000000
 > Starting 1: (848)
-> [0.000000]: [surf_maxmin/DEBUG] Setting selective_update_active flag to 0
+> [0.000000]: [ker_lmm/DEBUG] Setting selective_update_active flag to 0
 > Starting to solve(628)
-> [0.000000]: [surf_maxmin/DEBUG] Active constraints : 100
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '196' usage: 7.460735 remaining: 5.494968 concurrency: 4<=5<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '194' usage: 15.447986 remaining: 2.149244 concurrency: 8<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '158' usage: 11.030926 remaining: 3.633259 concurrency: 5<=6<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '102' usage: 7.632282 remaining: 9.315409 concurrency: 5<=6<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '170' usage: 11.199829 remaining: 5.321444 concurrency: 7<=7<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '163' usage: 11.665940 remaining: 1.127762 concurrency: 7<=8<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '166' usage: 14.229269 remaining: 6.575124 concurrency: 7<=7<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '164' usage: 21.986404 remaining: 9.624596 concurrency: 12<=13<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '117' usage: 2.842785 remaining: 0.965309 concurrency: 1<=2<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '107' usage: 16.957631 remaining: 2.668273 concurrency: 9<=10<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '118' usage: 12.786024 remaining: 1.271600 concurrency: 7<=8<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '150' usage: 21.257036 remaining: 8.844716 concurrency: 11<=12<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '146' usage: 14.843037 remaining: 4.260225 concurrency: 8<=9<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '122' usage: 15.120533 remaining: 4.677875 concurrency: 9<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '160' usage: 15.993199 remaining: 9.144756 concurrency: 8<=9<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '109' usage: 16.544658 remaining: 1.345799 concurrency: 10<=11<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '169' usage: 7.320898 remaining: 7.861722 concurrency: 4<=5<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '188' usage: 13.829839 remaining: 8.522890 concurrency: 6<=7<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '121' usage: 21.483217 remaining: 5.773081 concurrency: 12<=13<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '182' usage: 13.099475 remaining: 8.963739 concurrency: 6<=7<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '153' usage: 14.213518 remaining: 7.367471 concurrency: 7<=8<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '111' usage: 16.569232 remaining: 7.197542 concurrency: 10<=11<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '143' usage: 20.780876 remaining: 8.002584 concurrency: 11<=12<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '119' usage: 14.969968 remaining: 5.657651 concurrency: 8<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '174' usage: 18.097226 remaining: 1.065725 concurrency: 9<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '132' usage: 14.784336 remaining: 2.587332 concurrency: 7<=7<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '131' usage: 12.257204 remaining: 3.416137 concurrency: 5<=6<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '186' usage: 12.970468 remaining: 2.458112 concurrency: 8<=9<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '124' usage: 9.788928 remaining: 4.830698 concurrency: 4<=5<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '173' usage: 11.128553 remaining: 7.487779 concurrency: 6<=7<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '156' usage: 9.917764 remaining: 2.693888 concurrency: 4<=6<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '138' usage: 19.254342 remaining: 8.508505 concurrency: 10<=11<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '180' usage: 17.339929 remaining: 9.177187 concurrency: 9<=10<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '106' usage: 18.191446 remaining: 1.199505 concurrency: 11<=12<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '189' usage: 15.595341 remaining: 0.102500 concurrency: 9<=10<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '114' usage: 11.717419 remaining: 0.796455 concurrency: 6<=7<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '184' usage: 20.396139 remaining: 4.892662 concurrency: 11<=12<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '127' usage: 22.819742 remaining: 1.194848 concurrency: 10<=11<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '159' usage: 16.698927 remaining: 3.875234 concurrency: 9<=10<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '120' usage: 18.931303 remaining: 1.069457 concurrency: 10<=10<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '171' usage: 24.615031 remaining: 7.780082 concurrency: 10<=11<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '104' usage: 13.954262 remaining: 3.205364 concurrency: 7<=8<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '155' usage: 12.488181 remaining: 3.557536 concurrency: 7<=8<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '161' usage: 16.382919 remaining: 3.508719 concurrency: 9<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '192' usage: 13.459399 remaining: 1.872865 concurrency: 6<=7<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '167' usage: 16.079701 remaining: 2.293860 concurrency: 8<=9<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '144' usage: 12.032338 remaining: 7.065420 concurrency: 6<=7<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '142' usage: 22.624121 remaining: 9.411933 concurrency: 9<=10<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '135' usage: 23.733429 remaining: 9.537422 concurrency: 13<=13<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '130' usage: 16.103797 remaining: 2.172699 concurrency: 9<=10<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '172' usage: 16.258581 remaining: 4.768434 concurrency: 9<=9<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '136' usage: 9.539826 remaining: 8.141384 concurrency: 5<=6<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '183' usage: 11.567474 remaining: 8.378305 concurrency: 7<=8<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '187' usage: 6.755927 remaining: 4.637426 concurrency: 4<=5<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '175' usage: 15.489675 remaining: 2.208379 concurrency: 8<=9<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '165' usage: 20.164500 remaining: 6.470142 concurrency: 10<=10<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '193' usage: 15.639750 remaining: 8.799904 concurrency: 8<=9<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '185' usage: 15.345313 remaining: 3.972540 concurrency: 8<=8<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '152' usage: 11.704423 remaining: 3.939333 concurrency: 8<=9<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '116' usage: 8.774370 remaining: 2.878688 concurrency: 2<=3<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '157' usage: 10.916696 remaining: 8.783003 concurrency: 6<=7<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '199' usage: 13.665900 remaining: 3.350947 concurrency: 8<=9<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '154' usage: 12.731271 remaining: 3.792106 concurrency: 7<=8<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '145' usage: 8.623130 remaining: 1.692254 concurrency: 5<=6<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '168' usage: 16.818720 remaining: 6.438419 concurrency: 7<=7<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '149' usage: 15.425922 remaining: 4.413549 concurrency: 7<=8<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '140' usage: 11.685460 remaining: 7.466314 concurrency: 7<=8<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '101' usage: 10.415850 remaining: 1.850821 concurrency: 5<=6<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '195' usage: 9.231517 remaining: 2.738379 concurrency: 5<=6<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '105' usage: 9.169967 remaining: 2.046486 concurrency: 4<=5<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '110' usage: 21.512903 remaining: 5.867970 concurrency: 10<=11<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '139' usage: 10.405104 remaining: 2.209982 concurrency: 6<=6<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '148' usage: 15.766921 remaining: 9.326286 concurrency: 7<=8<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '112' usage: 12.653327 remaining: 8.539753 concurrency: 7<=8<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '162' usage: 15.085808 remaining: 6.308427 concurrency: 9<=9<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '134' usage: 9.715478 remaining: 4.678425 concurrency: 6<=7<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '151' usage: 13.438726 remaining: 2.597448 concurrency: 7<=9<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '128' usage: 12.332636 remaining: 1.485648 concurrency: 6<=8<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '190' usage: 13.095980 remaining: 6.293597 concurrency: 7<=8<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '133' usage: 11.832758 remaining: 4.367473 concurrency: 7<=8<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '125' usage: 27.774189 remaining: 6.630618 concurrency: 12<=13<=24
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '147' usage: 9.176406 remaining: 3.566243 concurrency: 5<=5<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '191' usage: 10.190998 remaining: 2.951723 concurrency: 5<=6<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '179' usage: 14.357321 remaining: 4.197355 concurrency: 10<=11<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '129' usage: 12.940725 remaining: 9.645511 concurrency: 6<=7<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '141' usage: 15.179451 remaining: 0.671444 concurrency: 8<=9<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '200' usage: 17.211013 remaining: 1.614666 concurrency: 8<=8<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '108' usage: 6.146468 remaining: 8.182267 concurrency: 3<=4<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '178' usage: 10.008436 remaining: 8.951457 concurrency: 5<=6<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '126' usage: 13.620583 remaining: 7.936375 concurrency: 8<=9<=10
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '113' usage: 13.558365 remaining: 4.073078 concurrency: 7<=8<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '115' usage: 12.350525 remaining: 2.970184 concurrency: 6<=7<=-1
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '137' usage: 8.244042 remaining: 9.480904 concurrency: 4<=5<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '177' usage: 8.650443 remaining: 3.462379 concurrency: 5<=6<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '123' usage: 7.284421 remaining: 4.686736 concurrency: 3<=4<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '197' usage: 7.446337 remaining: 2.754379 concurrency: 5<=6<=12
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '181' usage: 7.690708 remaining: 8.262498 concurrency: 4<=5<=9
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '176' usage: 3.200025 remaining: 8.072111 concurrency: 2<=3<=40
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '198' usage: 5.419247 remaining: 0.488681 concurrency: 3<=4<=16
-> [0.000000]: [surf_maxmin/DEBUG] Constraint '103' usage: 4.653753 remaining: 4.353224 concurrency: 3<=4<=12
-> [0.000000]: [surf_maxmin/DEBUG] var=102, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=104, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=105, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=110, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=112, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=131, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=133, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=141, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=156, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=178, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (102) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(102).penalty: 1.000000, Var(102).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (104) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(104).penalty: 1.000000, Var(104).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (105) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(105).penalty: 1.000000, Var(105).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (110) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(110).penalty: 1.000000, Var(110).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (112) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(112).penalty: 1.000000, Var(112).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (131) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(131).penalty: 1.000000, Var(131).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (133) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(133).penalty: 1.000000, Var(133).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (141) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(141).penalty: 1.000000, Var(141).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (156) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(156).penalty: 1.000000, Var(156).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (178) value to 0.006573
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.006573, Var(178).penalty: 1.000000, Var(178).value: 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] index: 34     cnst_light_num: 100     || usage: 0.000000 remaining: 0.000000 bound: 0.102500
-> [0.000000]: [surf_maxmin/DEBUG] var=109, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=111, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=115, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=121, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=127, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=146, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=157, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=181, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (109) value to 0.044234
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.044234, Var(109).penalty: 1.000000, Var(109).value: 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (111) value to 0.044234
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.044234, Var(111).penalty: 1.000000, Var(111).value: 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (115) value to 0.044234
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.044234, Var(115).penalty: 1.000000, Var(115).value: 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (121) value to 0.044234
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.044234, Var(121).penalty: 1.000000, Var(121).value: 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] index: 97     cnst_light_num: 99      || usage: 0.000000 remaining: 8.006012 bound: 8.072111
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (127) value to 0.044234
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.044234, Var(127).penalty: 1.000000, Var(127).value: 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (146) value to 0.044234
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.044234, Var(146).penalty: 1.000000, Var(146).value: 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (157) value to 0.044234
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.044234, Var(157).penalty: 1.000000, Var(157).value: 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] index: 97     cnst_light_num: 98      || usage: 0.000000 remaining: 0.305458 bound: 0.488681
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (181) value to 0.044234
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.044234, Var(181).penalty: 1.000000, Var(181).value: 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] index: 85     cnst_light_num: 97      || usage: 0.000000 remaining: 0.000000 bound: 0.671444
-> [0.000000]: [surf_maxmin/DEBUG] var=107, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=108, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=113, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=120, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=124, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=129, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=132, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (107) value to 0.080095
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.080095, Var(107).penalty: 1.000000, Var(107).value: 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (108) value to 0.080095
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.080095, Var(108).penalty: 1.000000, Var(108).value: 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (113) value to 0.080095
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.080095, Var(113).penalty: 1.000000, Var(113).value: 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (120) value to 0.080095
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.080095, Var(120).penalty: 1.000000, Var(120).value: 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (124) value to 0.080095
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.080095, Var(124).penalty: 1.000000, Var(124).value: 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] index: 71     cnst_light_num: 96      || usage: 0.000000 remaining: 1.607527 bound: 2.209982
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (129) value to 0.080095
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.080095, Var(129).penalty: 1.000000, Var(129).value: 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (132) value to 0.080095
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.080095, Var(132).penalty: 1.000000, Var(132).value: 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] index: 37     cnst_light_num: 95      || usage: 0.000000 remaining: 0.000000 bound: 1.194848
-> [0.000000]: [surf_maxmin/DEBUG] var=103, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.093227, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=117, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.093227, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=118, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.093227, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=126, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.093227, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (103) value to 0.093227
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.093227, Var(103).penalty: 1.000000, Var(103).value: 0.093227
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (117) value to 0.093227
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.093227, Var(117).penalty: 1.000000, Var(117).value: 0.093227
-> [0.000000]: [surf_maxmin/DEBUG] index: 76     cnst_light_num: 94      || usage: 0.000000 remaining: 1.917254 bound: 2.597448
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (118) value to 0.093227
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.093227, Var(118).penalty: 1.000000, Var(118).value: 0.093227
-> [0.000000]: [surf_maxmin/DEBUG] index: 29     cnst_light_num: 93      || usage: 0.000000 remaining: 7.173610 bound: 7.487779
-> [0.000000]: [surf_maxmin/DEBUG] index: 74     cnst_light_num: 92      || usage: 0.000000 remaining: 5.407273 bound: 6.308427
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (126) value to 0.093227
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.093227, Var(126).penalty: 1.000000, Var(126).value: 0.093227
-> [0.000000]: [surf_maxmin/DEBUG] index: 39     cnst_light_num: 91      || usage: 0.000000 remaining: 0.000000 bound: 1.069457
-> [0.000000]: [surf_maxmin/DEBUG] index: 53     cnst_light_num: 90      || usage: 0.000000 remaining: 4.047456 bound: 4.637426
-> [0.000000]: [surf_maxmin/DEBUG] var=116, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.125579, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=119, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.125579, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=128, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.125579, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (116) value to 0.125579
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.125579, Var(116).penalty: 1.000000, Var(116).value: 0.125579
-> [0.000000]: [surf_maxmin/DEBUG] index: 23     cnst_light_num: 89      || usage: 0.000000 remaining: 4.807236 bound: 5.657651
-> [0.000000]: [surf_maxmin/DEBUG] index: 79     cnst_light_num: 88      || usage: 0.000000 remaining: 3.551739 bound: 4.367473
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (119) value to 0.125579
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.125579, Var(119).penalty: 1.000000, Var(119).value: 0.125579
-> [0.000000]: [surf_maxmin/DEBUG] index: 29     cnst_light_num: 87      || usage: 0.000000 remaining: 9.111474 bound: 9.480904
-> [0.000000]: [surf_maxmin/DEBUG] index: 60     cnst_light_num: 86      || usage: 0.000000 remaining: 8.206631 bound: 8.783003
-> [0.000000]: [surf_maxmin/DEBUG] index: 84     cnst_light_num: 85      || usage: 0.000000 remaining: 9.142856 bound: 9.645511
-> [0.000000]: [surf_maxmin/DEBUG] index: 44     cnst_light_num: 84      || usage: 0.000000 remaining: 1.147453 bound: 1.872865
-> [0.000000]: [surf_maxmin/DEBUG] index: 49     cnst_light_num: 83      || usage: 0.000000 remaining: 1.044083 bound: 2.172699
-> [0.000000]: [surf_maxmin/DEBUG] index: 30     cnst_light_num: 82      || usage: 0.000000 remaining: 1.908915 bound: 2.693888
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (128) value to 0.125579
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.125579, Var(128).penalty: 1.000000, Var(128).value: 0.125579
-> [0.000000]: [surf_maxmin/DEBUG] index: 51     cnst_light_num: 81      || usage: 0.000000 remaining: 7.421856 bound: 8.141384
-> [0.000000]: [surf_maxmin/DEBUG] index: 71     cnst_light_num: 80      || usage: 0.000000 remaining: 2.178851 bound: 2.754379
-> [0.000000]: [surf_maxmin/DEBUG] index: 75     cnst_light_num: 79      || usage: 0.000000 remaining: 3.933665 bound: 4.678425
-> [0.000000]: [surf_maxmin/DEBUG] index: 52     cnst_light_num: 78      || usage: 0.000000 remaining: 7.680517 bound: 8.378305
-> [0.000000]: [surf_maxmin/DEBUG] index: 24     cnst_light_num: 77      || usage: 0.000000 remaining: 0.000000 bound: 1.065725
-> [0.000000]: [surf_maxmin/DEBUG] var=106, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.142396, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=114, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.142396, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (106) value to 0.142396
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.142396, Var(106).penalty: 1.000000, Var(106).value: 0.142396
-> [0.000000]: [surf_maxmin/DEBUG] index: 50     cnst_light_num: 76      || usage: 0.000000 remaining: 3.625189 bound: 4.768434
-> [0.000000]: [surf_maxmin/DEBUG] index: 32     cnst_light_num: 75      || usage: 0.000000 remaining: 8.349213 bound: 9.177187
-> [0.000000]: [surf_maxmin/DEBUG] index: 69     cnst_light_num: 74      || usage: 0.000000 remaining: 1.402286 bound: 2.046486
-> [0.000000]: [surf_maxmin/DEBUG] index: 42     cnst_light_num: 73      || usage: 0.000000 remaining: 2.903159 bound: 3.557536
-> [0.000000]: [surf_maxmin/DEBUG] index: 47     cnst_light_num: 72      || usage: 0.000000 remaining: 8.034610 bound: 9.411933
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (114) value to 0.142396
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.142396, Var(114).penalty: 1.000000, Var(114).value: 0.142396
-> [0.000000]: [surf_maxmin/DEBUG] index: 33     cnst_light_num: 71      || usage: 0.000000 remaining: 0.000000 bound: 1.199505
-> [0.000000]: [surf_maxmin/DEBUG] index: 62     cnst_light_num: 70      || usage: 0.000000 remaining: 3.059841 bound: 3.792106
-> [0.000000]: [surf_maxmin/DEBUG] index: 23     cnst_light_num: 69      || usage: 0.000000 remaining: 8.177615 bound: 8.951457
-> [0.000000]: [surf_maxmin/DEBUG] index: 32     cnst_light_num: 68      || usage: 0.000000 remaining: 2.205190 bound: 2.970184
-> [0.000000]: [surf_maxmin/DEBUG] index: 23     cnst_light_num: 67      || usage: 0.000000 remaining: 1.931792 bound: 2.738379
-> [0.000000]: [surf_maxmin/DEBUG] index: 30     cnst_light_num: 66      || usage: 0.000000 remaining: 3.064219 bound: 3.566243
-> [0.000000]: [surf_maxmin/DEBUG] index: 57     cnst_light_num: 65      || usage: 0.000000 remaining: 2.898415 bound: 3.972540
-> [0.000000]: [surf_maxmin/DEBUG] index: 37     cnst_light_num: 64      || usage: 0.000000 remaining: 4.233168 bound: 4.686736
-> [0.000000]: [surf_maxmin/DEBUG] index: 30     cnst_light_num: 63      || usage: 0.000000 remaining: 3.411989 bound: 4.413549
-> [0.000000]: [surf_maxmin/DEBUG] var=101, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.187080, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] var=154, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.187080, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (101) value to 0.187080
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.187080, Var(101).penalty: 1.000000, Var(101).value: 0.187080
-> [0.000000]: [surf_maxmin/DEBUG] index: 0      cnst_light_num: 62      || usage: 0.000000 remaining: 4.543074 bound: 5.494968
-> [0.000000]: [surf_maxmin/DEBUG] index: 8      cnst_light_num: 61      || usage: 0.000000 remaining: 0.672839 bound: 0.965309
-> [0.000000]: [surf_maxmin/DEBUG] index: 10     cnst_light_num: 60      || usage: 0.000000 remaining: 0.594432 bound: 1.271600
-> [0.000000]: [surf_maxmin/DEBUG] index: 16     cnst_light_num: 59      || usage: 0.000000 remaining: 7.198298 bound: 7.861722
-> [0.000000]: [surf_maxmin/DEBUG] index: 7      cnst_light_num: 58      || usage: 0.000000 remaining: 7.691813 bound: 9.624596
-> [0.000000]: [surf_maxmin/DEBUG] index: 18     cnst_light_num: 57      || usage: 0.000000 remaining: 4.594752 bound: 5.773081
-> [0.000000]: [surf_maxmin/DEBUG] index: 21     cnst_light_num: 56      || usage: 0.000000 remaining: 6.130917 bound: 7.197542
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (154) value to 0.187080
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.187080, Var(154).penalty: 1.000000, Var(154).value: 0.187080
-> [0.000000]: [surf_maxmin/DEBUG] index: 35     cnst_light_num: 55      || usage: 0.000000 remaining: 0.222965 bound: 0.796455
-> [0.000000]: [surf_maxmin/DEBUG] index: 23     cnst_light_num: 54      || usage: 0.000000 remaining: 6.400720 bound: 7.466314
-> [0.000000]: [surf_maxmin/DEBUG] index: 3      cnst_light_num: 53      || usage: 0.000000 remaining: 8.401680 bound: 9.315409
-> [0.000000]: [surf_maxmin/DEBUG] index: 41     cnst_light_num: 52      || usage: 0.000000 remaining: 2.310077 bound: 3.205364
-> [0.000000]: [surf_maxmin/DEBUG] index: 48     cnst_light_num: 51      || usage: 0.000000 remaining: 8.149738 bound: 9.537422
-> [0.000000]: [surf_maxmin/DEBUG] index: 49     cnst_light_num: 50      || usage: 0.000000 remaining: 2.064680 bound: 2.951723
-> [0.000000]: [surf_maxmin/DEBUG] index: 18     cnst_light_num: 49      || usage: 0.000000 remaining: 7.914012 bound: 8.799904
-> [0.000000]: [surf_maxmin/DEBUG] index: 30     cnst_light_num: 48      || usage: 0.000000 remaining: 7.601579 bound: 8.539753
-> [0.000000]: [surf_maxmin/DEBUG] index: 5      cnst_light_num: 47      || usage: 0.000000 remaining: 0.330693 bound: 1.127762
-> [0.000000]: [surf_maxmin/DEBUG] index: 3      cnst_light_num: 46      || usage: 0.000000 remaining: 0.165361 bound: 1.485648
-> [0.000000]: [surf_maxmin/DEBUG] index: 12     cnst_light_num: 45      || usage: 0.000000 remaining: 3.344634 bound: 4.260225
-> [0.000000]: [surf_maxmin/DEBUG] index: 15     cnst_light_num: 44      || usage: 0.000000 remaining: 0.000000 bound: 1.345799
-> [0.000000]: [surf_maxmin/DEBUG] var=123, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.468422, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (123) value to 0.468422
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.468422, Var(123).penalty: 1.000000, Var(123).value: 0.468422
-> [0.000000]: [surf_maxmin/DEBUG] index: 39     cnst_light_num: 43      || usage: 0.000000 remaining: 2.644445 bound: 4.073078
-> [0.000000]: [surf_maxmin/DEBUG] index: 38     cnst_light_num: 42      || usage: 0.000000 remaining: 2.428297 bound: 3.875234
-> [0.000000]: [surf_maxmin/DEBUG] index: 16     cnst_light_num: 41      || usage: 0.000000 remaining: 2.831610 bound: 3.939333
-> [0.000000]: [surf_maxmin/DEBUG] index: 39     cnst_light_num: 40      || usage: 0.000000 remaining: 6.931026 bound: 9.326286
-> [0.000000]: [surf_maxmin/DEBUG] index: 8      cnst_light_num: 39      || usage: 0.000000 remaining: 6.977522 bound: 8.262498
-> [0.000000]: [surf_maxmin/DEBUG] index: 13     cnst_light_num: 38      || usage: 0.000000 remaining: 2.872130 bound: 4.677875
-> [0.000000]: [surf_maxmin/DEBUG] index: 7      cnst_light_num: 37      || usage: 0.000000 remaining: 5.481945 bound: 6.438419
-> [0.000000]: [surf_maxmin/DEBUG] index: 0      cnst_light_num: 36      || usage: 0.000000 remaining: 2.151726 bound: 3.350947
-> [0.000000]: [surf_maxmin/DEBUG] index: 6      cnst_light_num: 35      || usage: 0.000000 remaining: 5.419353 bound: 6.575124
-> [0.000000]: [surf_maxmin/DEBUG] index: 27     cnst_light_num: 34      || usage: 0.000000 remaining: 1.110040 bound: 2.458112
-> [0.000000]: [surf_maxmin/DEBUG] index: 29     cnst_light_num: 33      || usage: 0.000000 remaining: 0.000000 bound: 1.614666
-> [0.000000]: [surf_maxmin/DEBUG] index: 3      cnst_light_num: 32      || usage: 0.000000 remaining: 0.868811 bound: 2.293860
-> [0.000000]: [surf_maxmin/DEBUG] index: 3      cnst_light_num: 31      || usage: 0.000000 remaining: 7.056819 bound: 8.508505
-> [0.000000]: [surf_maxmin/DEBUG] index: 1      cnst_light_num: 30      || usage: 0.000000 remaining: 0.488628 bound: 2.149244
-> [0.000000]: [surf_maxmin/DEBUG] index: 6      cnst_light_num: 29      || usage: 0.000000 remaining: 3.539186 bound: 4.353224
-> [0.000000]: [surf_maxmin/DEBUG] index: 26     cnst_light_num: 28      || usage: 0.000000 remaining: 2.190069 bound: 3.416137
-> [0.000000]: [surf_maxmin/DEBUG] index: 11     cnst_light_num: 27      || usage: 0.000000 remaining: 7.130780 bound: 8.844716
-> [0.000000]: [surf_maxmin/DEBUG] index: 6      cnst_light_num: 26      || usage: 0.000000 remaining: 3.528848 bound: 4.830698
-> [0.000000]: [surf_maxmin/DEBUG] index: 9      cnst_light_num: 25      || usage: 0.000000 remaining: 1.215170 bound: 2.668273
-> [0.000000]: [surf_maxmin/DEBUG] var=136, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.788434, var.bound*var.penalty=-1.000000
-> [0.000000]: [surf_maxmin/DEBUG] Setting var (136) value to 0.788434
->
-> [0.000000]: [surf_maxmin/DEBUG] Min usage: 0.788434, Var(136).penalty: 1.000000, Var(136).value: 0.788434
-> [0.000000]: [surf_maxmin/DEBUG] index: 16     cnst_light_num: 24      || usage: 0.000000 remaining: 4.798491 bound: 7.780082
-> [0.000000]: [surf_maxmin/DEBUG] index: 17     cnst_light_num: 23      || usage: 0.000000 remaining: 5.238985 bound: 8.522890
-> [0.000000]: [surf_maxmin/DEBUG] index: 0      cnst_light_num: 22      || usage: 0.000000 remaining: 0.622665 bound: 2.208379
-> [0.000000]: [surf_maxmin/DEBUG] index: 18     cnst_light_num: 21      || usage: 0.000000 remaining: 4.624058 bound: 6.293597
-> [0.000000]: [surf_maxmin/DEBUG] index: 13     cnst_light_num: 20      || usage: 0.000000 remaining: 0.000000 bound: 1.692254
-> [0.000000]: [surf_maxmin/DEBUG] index: 17     cnst_light_num: 19      || usage: 0.000000 remaining: 4.706638 bound: 8.002584
-> [0.000000]: [surf_maxmin/DEBUG] index: 0      cnst_light_num: 18      || usage: 0.000000 remaining: 3.783871 bound: 6.470142
-> [0.000000]: [surf_maxmin/DEBUG] index: 12     cnst_light_num: 17      || usage: 0.000000 remaining: 1.985989 bound: 4.197355
-> [0.000000]: [surf_maxmin/DEBUG] index: 13     cnst_light_num: 16      || usage: 0.000000 remaining: 7.132004 bound: 8.963739
-> [0.000000]: [surf_maxmin/DEBUG] index: 7      cnst_light_num: 15      || usage: 0.000000 remaining: 2.868277 bound: 4.892662
-> [0.000000]: [surf_maxmin/DEBUG] index: 3      cnst_light_num: 14      || usage: 0.000000 remaining: 7.087076 bound: 8.182267
-> [0.000000]: [surf_maxmin/DEBUG] index: 9      cnst_light_num: 13      || usage: 0.000000 remaining: 1.618314 bound: 3.462379
-> [0.000000]: [surf_maxmin/DEBUG] index: 11     cnst_light_num: 12      || usage: 0.000000 remaining: 3.526809 bound: 5.867970
-> [0.000000]: [surf_maxmin/DEBUG] index: 4      cnst_light_num: 11      || usage: 0.000000 remaining: 3.307772 bound: 5.321444
-> [0.000000]: [surf_maxmin/DEBUG] index: 6      cnst_light_num: 10      || usage: 0.000000 remaining: 0.843154 bound: 2.587332
-> [0.000000]: [surf_maxmin/DEBUG] index: 2      cnst_light_num: 9       || usage: 0.000000 remaining: 2.306140 bound: 3.633259
-> [0.000000]: [surf_maxmin/DEBUG] index: 7      cnst_light_num: 8       || usage: 0.000000 remaining: 5.691549 bound: 9.144756
-> [0.000000]: [surf_maxmin/DEBUG] index: 5      cnst_light_num: 7       || usage: 0.000000 remaining: 4.534049 bound: 7.065420
-> [0.000000]: [surf_maxmin/DEBUG] index: 2      cnst_light_num: 6       || usage: 0.000000 remaining: 3.031484 bound: 6.630618
-> [0.000000]: [surf_maxmin/DEBUG] index: 2      cnst_light_num: 5       || usage: 0.000000 remaining: 6.435390 bound: 7.936375
-> [0.000000]: [surf_maxmin/DEBUG] index: 2      cnst_light_num: 4       || usage: 0.000000 remaining: 1.506182 bound: 2.878688
-> [0.000000]: [surf_maxmin/DEBUG] index: 1      cnst_light_num: 3       || usage: 0.000000 remaining: 0.612029 bound: 1.850821
-> [0.000000]: [surf_maxmin/DEBUG] index: 0      cnst_light_num: 2       || usage: 0.000000 remaining: 5.711985 bound: 7.367471
-> [0.000000]: [surf_maxmin/DEBUG] index: 0      cnst_light_num: 1       || usage: 0.000000 remaining: 1.545428 bound: 3.508719
-> [0.000000]: [surf_maxmin/DEBUG] MAX-MIN ( '181'(1.000000) '178'(1.000000) '157'(1.000000) '156'(1.000000) '154'(1.000000) '146'(1.000000) '141'(1.000000) '136'(1.000000) '133'(1.000000) '132'(1.000000) '131'(1.000000) '129'(1.000000) '128'(1.000000) '127'(1.000000) '126'(1.000000) '124'(1.000000) '123'(1.000000) '121'(1.000000) '120'(1.000000) '119'(1.000000) '118'(1.000000) '117'(1.000000) '116'(1.000000) '115'(1.000000) '114'(1.000000) '113'(1.000000) '112'(1.000000) '111'(1.000000) '110'(1.000000) '109'(1.000000) '108'(1.000000) '107'(1.000000) '106'(1.000000) '105'(1.000000) '104'(1.000000) '103'(1.000000) '102'(1.000000) '101'(1.000000) '122'(0.000000) '125'(0.000000) '130'(0.000000) '134'(0.000000) '135'(0.000000) '137'(0.000000) '138'(0.000000) '139'(0.000000) '140'(0.000000) '142'(0.000000) '143'(0.000000) '144'(0.000000) '145'(0.000000) '147'(0.000000) '148'(0.000000) '149'(0.000000) '150'(0.000000) '151'(0.000000) '152'(0.000000) '153'(0.000000) '155'(0.000000) '158'(0.000000) '159'(0.000000) '160'(0.000000) '161'(0.000000) '162'(0.000000) '163'(0.000000) '164'(0.000000) '165'(0.000000) '166'(0.000000) '167'(0.000000) '168'(0.000000) '169'(0.000000) '170'(0.000000) '171'(0.000000) '172'(0.000000) '173'(0.000000) '174'(0.000000) '175'(0.000000) '176'(0.000000) '177'(0.000000) '179'(0.000000) '180'(0.000000) '182'(0.000000) '183'(0.000000) '184'(0.000000) '185'(0.000000) '186'(0.000000) '187'(0.000000) '188'(0.000000) '189'(0.000000) '190'(0.000000) '191'(0.000000) '192'(0.000000) '193'(0.000000) '194'(0.000000) '195'(0.000000) '196'(0.000000) '197'(0.000000) '198'(0.000000) '199'(0.000000) '200'(0.000000) )
-> [0.000000]: [surf_maxmin/DEBUG] Constraints
-> [0.000000]: [surf_maxmin/DEBUG]      (1.433022.'124'(0.080095) + 0.541059.'117'(0.093227) + 1.883325.'117'(0.093227) + 1.410174.'106'(0.142396) + 2.193155.'101'(0.187080) + 1.739308.'130'(0.000000) + 0.353261.'134'(0.000000) + 0.931475.'148'(0.000000) + 0.925072.'155'(0.000000) + 1.179081.'158'(0.000000) + 0.264000.'159'(0.000000) + 0.996939.'160'(0.000000) + 0.994831.'162'(0.000000) + 1.082725.'166'(0.000000) + 1.506649.'172'(0.000000) + 2.016268.'179'(0.000000) + 0.999280.'191'(0.000000) + 1.878270.'197'(0.000000) + 2.281745.'199'(0.000000) + 0) <= 5.494968 ('196')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.455459.'157'(0.044234) + 1.921293.'156'(0.006573) + 0.619423.'141'(0.006573) + 1.540313.'131'(0.006573) + 1.897129.'129'(0.080095) + 1.838708.'123'(0.468422) + 1.800117.'113'(0.080095) + 1.461105.'110'(0.006573) + 1.914439.'101'(0.187080) + 1.099137.'125'(0.000000) + 0.305214.'137'(0.000000) + 1.285699.'139'(0.000000) + 2.902966.'144'(0.000000) + 2.512110.'150'(0.000000) + 1.230485.'158'(0.000000) + 1.029909.'163'(0.000000) + 1.169173.'166'(0.000000) + 1.521168.'168'(0.000000) + 0.069600.'183'(0.000000) + 2.537470.'184'(0.000000) + 0.731545.'186'(0.000000) + 1.492293.'191'(0.000000) + 0.550003.'198'(0.000000) + 2.632881.'200'(0.000000) + 0) <= 2.149244 ('194')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.387774.'156'(0.006573) + 1.236258.'146'(0.044234) + 0.755181.'136'(0.788434) + 1.082141.'132'(0.080095) + 1.706266.'116'(0.125579) + 0.449282.'107'(0.080095) + 2.937747.'107'(0.080095) + 0.476275.'101'(0.187080) + 2.051009.'139'(0.000000) + 2.502568.'142'(0.000000) + 1.841852.'144'(0.000000) + 2.542973.'147'(0.000000) + 0.006377.'147'(0.000000) + 1.067164.'148'(0.000000) + 1.094115.'151'(0.000000) + 0.963843.'159'(0.000000) + 0.337873.'175'(0.000000) + 1.485642.'176'(0.000000) + 0.372956.'180'(0.000000) + 2.752761.'183'(0.000000) + 1.020197.'184'(0.000000) + 1.952502.'185'(0.000000) + 1.597149.'193'(0.000000) + 1.889212.'195'(0.000000) + 1.648966.'200'(0.000000) + 0) <= 3.633259 ('158')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.509699.'157'(0.044234) + 2.393742.'154'(0.187080) + 1.039456.'133'(0.006573) + 1.001638.'128'(0.125579) + 0.524576.'126'(0.093227) + 1.163170.'101'(0.187080) + 1.469780.'137'(0.000000) + 0.951197.'140'(0.000000) + 2.793369.'143'(0.000000) + 1.677272.'144'(0.000000) + 1.318163.'145'(0.000000) + 2.652271.'162'(0.000000) + 0.736277.'162'(0.000000) + 2.253047.'164'(0.000000) + 0.522677.'166'(0.000000) + 1.769038.'167'(0.000000) + 0.646025.'172'(0.000000) + 2.120430.'173'(0.000000) + 1.140972.'174'(0.000000) + 2.107906.'177'(0.000000) + 0.779530.'179'(0.000000) + 1.595091.'185'(0.000000) + 0.740557.'185'(0.000000) + 2.321670.'186'(0.000000) + 2.760617.'189'(0.000000) + 1.596598.'190'(0.000000) + 1.564114.'192'(0.000000) + 1.410047.'194'(0.000000) + 2.485737.'200'(0.000000) + 0) <= 9.315409 ('102')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.307825.'136'(0.788434) + 1.307132.'124'(0.080095) + 1.828280.'116'(0.125579) + 0.730583.'112'(0.006573) + 1.377534.'108'(0.080095) + 1.938664.'106'(0.142396) + 1.384390.'104'(0.006573) + 0.063644.'101'(0.187080) + 1.261776.'101'(0.187080) + 2.106355.'134'(0.000000) + 2.069010.'138'(0.000000) + 0.202361.'139'(0.000000) + 1.646021.'145'(0.000000) + 1.068512.'163'(0.000000) + 0.966948.'171'(0.000000) + 0.568364.'171'(0.000000) + 0.848841.'175'(0.000000) + 0.656028.'195'(0.000000) + 0.236385.'196'(0.000000) + 0.780020.'200'(0.000000) + 0) <= 5.321444 ('170')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.425401.'156'(0.006573) + 0.154584.'154'(0.187080) + 0.548654.'131'(0.006573) + 1.722397.'119'(0.125579) + 2.132262.'110'(0.006573) + 1.490148.'108'(0.080095) + 1.399617.'105'(0.006573) + 1.344438.'103'(0.093227) + 1.448438.'101'(0.187080) + 1.852043.'125'(0.000000) + 1.123716.'137'(0.000000) + 1.508365.'140'(0.000000) + 1.240966.'142'(0.000000) + 1.041989.'143'(0.000000) + 1.489813.'144'(0.000000) + 0.541002.'145'(0.000000) + 2.301701.'160'(0.000000) + 2.138572.'162'(0.000000) + 1.675152.'163'(0.000000) + 0.833485.'165'(0.000000) + 0.637468.'168'(0.000000) + 1.147239.'170'(0.000000) + 1.958307.'173'(0.000000) + 2.454653.'179'(0.000000) + 2.198024.'180'(0.000000) + 2.347603.'183'(0.000000) + 0.754346.'187'(0.000000) + 1.130689.'190'(0.000000) + 1.497366.'190'(0.000000) + 1.786182.'193'(0.000000) + 0.164571.'193'(0.000000) + 0) <= 1.127762 ('163')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.190286.'178'(0.006573) + 0.317598.'154'(0.187080) + 1.619622.'141'(0.006573) + 1.921506.'133'(0.006573) + 2.078778.'129'(0.080095) + 1.583544.'124'(0.080095) + 0.405724.'123'(0.468422) + 0.577363.'107'(0.080095) + 0.642048.'107'(0.080095) + 1.422250.'106'(0.142396) + 1.470552.'101'(0.187080) + 0.527734.'130'(0.000000) + 0.973053.'135'(0.000000) + 1.554388.'137'(0.000000) + 1.549425.'150'(0.000000) + 2.427502.'152'(0.000000) + 2.288840.'155'(0.000000) + 0.776809.'155'(0.000000) + 2.644127.'166'(0.000000) + 0.824841.'169'(0.000000) + 1.497360.'176'(0.000000) + 2.271010.'179'(0.000000) + 2.361619.'184'(0.000000) + 0.212837.'199'(0.000000) + 0) <= 6.575124 ('166')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.229561.'178'(0.006573) + 2.685634.'157'(0.044234) + 1.032374.'132'(0.080095) + 0.290412.'127'(0.044234) + 1.967314.'124'(0.080095) + 1.729079.'117'(0.093227) + 1.061923.'116'(0.125579) + 2.150119.'114'(0.142396) + 1.087906.'112'(0.006573) + 1.244460.'109'(0.044234) + 0.978748.'108'(0.080095) + 1.006286.'105'(0.006573) + 2.432402.'103'(0.093227) + 0.666861.'101'(0.187080) + 2.423325.'101'(0.187080) + 1.905722.'143'(0.000000) + 1.103123.'150'(0.000000) + 0.337605.'153'(0.000000) + 0.885875.'159'(0.000000) + 1.729425.'171'(0.000000) + 1.471480.'171'(0.000000) + 1.987164.'172'(0.000000) + 2.792852.'174'(0.000000) + 2.722538.'182'(0.000000) + 1.916794.'190'(0.000000) + 0.637097.'191'(0.000000) + 1.466872.'194'(0.000000) + 1.389352.'194'(0.000000) + 1.684725.'196'(0.000000) + 1.365106.'197'(0.000000) + 0) <= 9.624596 ('164')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.996020.'116'(0.125579) + 0.645957.'102'(0.006573) + 0.200807.'101'(0.187080) + 2.454105.'140'(0.000000) + 2.336439.'143'(0.000000) + 2.779330.'158'(0.000000) + 0.197980.'158'(0.000000) + 1.979456.'161'(0.000000) + 0.983993.'174'(0.000000) + 1.403433.'179'(0.000000) + 1.015372.'187'(0.000000) + 1.371309.'188'(0.000000) + 0.903818.'198'(0.000000) + 0) <= 0.965309 ('117')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.048835.'146'(0.044234) + 1.880545.'128'(0.125579) + 1.143784.'126'(0.093227) + 1.263859.'123'(0.468422) + 0.556100.'117'(0.093227) + 0.984808.'116'(0.125579) + 1.190054.'112'(0.006573) + 2.133338.'109'(0.044234) + 1.255115.'105'(0.006573) + 2.362139.'105'(0.006573) + 1.517851.'102'(0.006573) + 0.621204.'101'(0.187080) + 1.851807.'144'(0.000000) + 2.149198.'145'(0.000000) + 3.985905.'147'(0.000000) + 0.415198.'147'(0.000000) + 1.858342.'149'(0.000000) + 0.782526.'152'(0.000000) + 0.747166.'158'(0.000000) + 1.633364.'161'(0.000000) + 2.233626.'167'(0.000000) + 2.385708.'172'(0.000000) + 2.124336.'187'(0.000000) + 1.453500.'194'(0.000000) + 0) <= 2.668273 ('107')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.069278.'157'(0.044234) + 0.169612.'156'(0.006573) + 1.015199.'133'(0.006573) + 1.430531.'131'(0.006573) + 2.046741.'126'(0.093227) + 1.503159.'115'(0.044234) + 1.483234.'113'(0.080095) + 1.912668.'111'(0.044234) + 2.183522.'105'(0.006573) + 0.972081.'101'(0.187080) + 1.445258.'130'(0.000000) + 0.793967.'144'(0.000000) + 1.959728.'145'(0.000000) + 1.949197.'165'(0.000000) + 0.504038.'171'(0.000000) + 2.926376.'180'(0.000000) + 2.519570.'182'(0.000000) + 1.414029.'182'(0.000000) + 2.149848.'191'(0.000000) + 0.928363.'194'(0.000000) + 1.523158.'200'(0.000000) + 0) <= 1.271600 ('118')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.107083.'181'(0.044234) + 2.254471.'156'(0.006573) + 2.235914.'141'(0.006573) + 1.801153.'133'(0.006573) + 1.203944.'124'(0.080095) + 0.658006.'123'(0.468422) + 1.304923.'121'(0.044234) + 0.291770.'118'(0.093227) + 2.035867.'113'(0.080095) + 1.967586.'108'(0.080095) + 2.128295.'106'(0.142396) + 1.548094.'103'(0.093227) + 1.719931.'101'(0.187080) + 1.504381.'140'(0.000000) + 1.722078.'142'(0.000000) + 1.673503.'149'(0.000000) + 0.833293.'152'(0.000000) + 1.733293.'160'(0.000000) + 1.546950.'161'(0.000000) + 1.717347.'171'(0.000000) + 1.918461.'174'(0.000000) + 1.246914.'187'(0.000000) + 0.725083.'190'(0.000000) + 2.658667.'196'(0.000000) + 0) <= 8.844716 ('150')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.442721.'157'(0.044234) + 1.581565.'156'(0.006573) + 1.586316.'154'(0.187080) + 1.397711.'131'(0.006573) + 1.542615.'120'(0.080095) + 2.066212.'115'(0.044234) + 1.460712.'105'(0.006573) + 1.792321.'103'(0.093227) + 2.039527.'102'(0.006573) + 0.933336.'101'(0.187080) + 0.856747.'122'(0.000000) + 0.750113.'135'(0.000000) + 1.316408.'138'(0.000000) + 1.959119.'151'(0.000000) + 1.522037.'161'(0.000000) + 2.382086.'164'(0.000000) + 1.193590.'174'(0.000000) + 1.073759.'180'(0.000000) + 0.639613.'196'(0.000000) + 0) <= 4.260225 ('146')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.522300.'141'(0.006573) + 2.351782.'132'(0.080095) + 1.427606.'131'(0.006573) + 1.980810.'123'(0.468422) + 0.810418.'121'(0.044234) + 0.377075.'120'(0.080095) + 1.605283.'116'(0.125579) + 1.179479.'112'(0.006573) + 1.029359.'105'(0.006573) + 1.520020.'103'(0.093227) + 1.316401.'101'(0.187080) + 1.270669.'122'(0.000000) + 1.287899.'134'(0.000000) + 0.559410.'144'(0.000000) + 1.318026.'145'(0.000000) + 0.192294.'150'(0.000000) + 1.089990.'151'(0.000000) + 1.577451.'152'(0.000000) + 0.183516.'159'(0.000000) + 0.441672.'162'(0.000000) + 2.235450.'163'(0.000000) + 0.658733.'167'(0.000000) + 2.924359.'172'(0.000000) + 0.411216.'174'(0.000000) + 0.221377.'177'(0.000000) + 2.012222.'182'(0.000000) + 0.428462.'182'(0.000000) + 0.915748.'184'(0.000000) + 0.951439.'186'(0.000000) + 1.097806.'187'(0.000000) + 0) <= 4.677875 ('122')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.360246.'181'(0.044234) + 2.320562.'136'(0.788434) + 2.814010.'131'(0.006573) + 1.246452.'123'(0.468422) + 1.087148.'120'(0.080095) + 0.337508.'115'(0.044234) + 1.204764.'107'(0.080095) + 2.704043.'107'(0.080095) + 2.918466.'101'(0.187080) + 2.186089.'122'(0.000000) + 2.643328.'135'(0.000000) + 2.422929.'143'(0.000000) + 1.269801.'145'(0.000000) + 0.730713.'153'(0.000000) + 1.602474.'165'(0.000000) + 1.865591.'166'(0.000000) + 2.252932.'169'(0.000000) + 1.716006.'195'(0.000000) + 1.366675.'198'(0.000000) + 2.620918.'200'(0.000000) + 0) <= 9.144756 ('160')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.368075.'178'(0.006573) + 1.186852.'154'(0.187080) + 2.430440.'154'(0.187080) + 1.189272.'124'(0.080095) + 1.295366.'113'(0.080095) + 2.263130.'112'(0.006573) + 2.049234.'111'(0.044234) + 0.171133.'110'(0.006573) + 2.165844.'104'(0.006573) + 1.209648.'103'(0.093227) + 1.215663.'101'(0.187080) + 2.623947.'130'(0.000000) + 0.402708.'142'(0.000000) + 0.292749.'152'(0.000000) + 1.639435.'153'(0.000000) + 1.947608.'163'(0.000000) + 1.313816.'165'(0.000000) + 2.159961.'169'(0.000000) + 1.707004.'177'(0.000000) + 0.889814.'184'(0.000000) + 1.050483.'191'(0.000000) + 0.640548.'191'(0.000000) + 2.632083.'192'(0.000000) + 0.167023.'192'(0.000000) + 1.481138.'197'(0.000000) + 1.894754.'199'(0.000000) + 0) <= 1.345799 ('109')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.929618.'129'(0.080095) + 1.474985.'121'(0.044234) + 1.901841.'113'(0.080095) + 1.066712.'110'(0.006573) + 1.947742.'101'(0.187080) + 0.577163.'134'(0.000000) + 0.838958.'137'(0.000000) + 1.572850.'138'(0.000000) + 1.859719.'143'(0.000000) + 0.905837.'151'(0.000000) + 2.697428.'155'(0.000000) + 2.487137.'158'(0.000000) + 1.806866.'161'(0.000000) + 1.286858.'168'(0.000000) + 1.814139.'177'(0.000000) + 2.039481.'180'(0.000000) + 0.238723.'186'(0.000000) + 2.220134.'188'(0.000000) + 2.418038.'192'(0.000000) + 2.001101.'193'(0.000000) + 1.461401.'197'(0.000000) + 0) <= 7.861722 ('169')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.579904.'181'(0.044234) + 2.797735.'136'(0.788434) + 0.565433.'131'(0.006573) + 0.863306.'127'(0.044234) + 1.301063.'126'(0.093227) + 0.397356.'123'(0.468422) + 1.822397.'117'(0.093227) + 1.177754.'112'(0.006573) + 0.734527.'111'(0.044234) + 1.670493.'108'(0.080095) + 1.919871.'101'(0.187080) + 0.916513.'137'(0.000000) + 2.182235.'142'(0.000000) + 0.275574.'143'(0.000000) + 2.445854.'148'(0.000000) + 1.476633.'160'(0.000000) + 2.250126.'169'(0.000000) + 1.169488.'170'(0.000000) + 1.644297.'171'(0.000000) + 0.806967.'177'(0.000000) + 0.966871.'179'(0.000000) + 1.651911.'182'(0.000000) + 1.767767.'187'(0.000000) + 0.968273.'189'(0.000000) + 1.140350.'190'(0.000000) + 1.783664.'194'(0.000000) + 0.961071.'198'(0.000000) + 1.009297.'200'(0.000000) + 0) <= 8.522890 ('188')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.048524.'156'(0.006573) + 1.140563.'141'(0.006573) + 1.005971.'133'(0.006573) + 2.023314.'128'(0.125579) + 1.096219.'127'(0.044234) + 1.409475.'120'(0.080095) + 0.802817.'118'(0.093227) + 1.721854.'117'(0.093227) + 2.362538.'113'(0.080095) + 1.963407.'112'(0.006573) + 1.432301.'110'(0.006573) + 1.180632.'107'(0.080095) + 2.341878.'105'(0.006573) + 0.953725.'101'(0.187080) + 1.874038.'122'(0.000000) + 1.992576.'125'(0.000000) + 0.745961.'134'(0.000000) + 1.858194.'142'(0.000000) + 0.505207.'144'(0.000000) + 1.369199.'148'(0.000000) + 0.580875.'160'(0.000000) + 1.697874.'162'(0.000000) + 1.275802.'164'(0.000000) + 2.332860.'165'(0.000000) + 1.124230.'167'(0.000000) + 1.769951.'168'(0.000000) + 2.777239.'170'(0.000000) + 1.772093.'171'(0.000000) + 0.497572.'172'(0.000000) + 1.618476.'173'(0.000000) + 0.166142.'173'(0.000000) + 1.404154.'176'(0.000000) + 1.556745.'195'(0.000000) + 0.781693.'199'(0.000000) + 0) <= 5.773081 ('121')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.118393.'181'(0.044234) + 1.698841.'154'(0.187080) + 2.195235.'146'(0.044234) + 0.856465.'136'(0.788434) + 0.871141.'132'(0.080095) + 0.651491.'114'(0.142396) + 2.226702.'113'(0.080095) + 0.985936.'106'(0.142396) + 1.418357.'104'(0.006573) + 1.076915.'101'(0.187080) + 1.808355.'125'(0.000000) + 0.440112.'134'(0.000000) + 1.473567.'150'(0.000000) + 2.316861.'158'(0.000000) + 2.455907.'160'(0.000000) + 0.977776.'166'(0.000000) + 1.491342.'174'(0.000000) + 1.369962.'188'(0.000000) + 1.825533.'190'(0.000000) + 1.740009.'195'(0.000000) + 1.869625.'197'(0.000000) + 0.721972.'197'(0.000000) + 1.214766.'198'(0.000000) + 0) <= 8.963739 ('182')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.861839.'136'(0.788434) + 1.306431.'127'(0.044234) + 1.268093.'127'(0.044234) + 1.941857.'121'(0.044234) + 0.956861.'120'(0.080095) + 1.482325.'116'(0.125579) + 1.639935.'115'(0.044234) + 0.723015.'114'(0.142396) + 2.307945.'112'(0.006573) + 1.725216.'101'(0.187080) + 1.825497.'125'(0.000000) + 0.481774.'138'(0.000000) + 0.761948.'149'(0.000000) + 1.349291.'162'(0.000000) + 1.017765.'167'(0.000000) + 0.989346.'170'(0.000000) + 2.567170.'177'(0.000000) + 1.713396.'182'(0.000000) + 1.225851.'185'(0.000000) + 0.887108.'187'(0.000000) + 2.268193.'196'(0.000000) + 0.784655.'198'(0.000000) + 0) <= 7.367471 ('153')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.492149.'181'(0.044234) + 1.984585.'181'(0.044234) + 1.334616.'146'(0.044234) + 1.144619.'131'(0.006573) + 2.449759.'131'(0.006573) + 1.135302.'128'(0.125579) + 1.017314.'124'(0.080095) + 1.768664.'117'(0.093227) + 1.261052.'111'(0.044234) + 0.954311.'104'(0.006573) + 2.026861.'101'(0.187080) + 1.988665.'135'(0.000000) + 1.884184.'137'(0.000000) + 2.705131.'138'(0.000000) + 1.652874.'139'(0.000000) + 1.605803.'140'(0.000000) + 1.458204.'140'(0.000000) + 0.176270.'145'(0.000000) + 0.815790.'149'(0.000000) + 0.547076.'152'(0.000000) + 0.826784.'160'(0.000000) + 1.047491.'190'(0.000000) + 1.135548.'197'(0.000000) + 0) <= 7.197542 ('111')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.646002.'178'(0.006573) + 1.813992.'154'(0.187080) + 2.068744.'136'(0.788434) + 0.693474.'132'(0.080095) + 1.032504.'129'(0.080095) + 0.083919.'128'(0.125579) + 1.748582.'124'(0.080095) + 1.237885.'119'(0.125579) + 2.234923.'114'(0.142396) + 1.268505.'113'(0.080095) + 1.730075.'108'(0.080095) + 2.044380.'106'(0.142396) + 2.039620.'104'(0.006573) + 2.138271.'102'(0.006573) + 2.345194.'143'(0.000000) + 2.531660.'153'(0.000000) + 0.815005.'161'(0.000000) + 2.505692.'167'(0.000000) + 2.261423.'184'(0.000000) + 1.101416.'192'(0.000000) + 0) <= 8.002584 ('143')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.470854.'146'(0.044234) + 0.219197.'127'(0.044234) + 2.800634.'127'(0.044234) + 2.626489.'121'(0.044234) + 1.725196.'118'(0.093227) + 1.661360.'117'(0.093227) + 1.452061.'116'(0.125579) + 0.470484.'111'(0.044234) + 1.026585.'105'(0.006573) + 1.517108.'102'(0.006573) + 2.547191.'130'(0.000000) + 2.512654.'134'(0.000000) + 1.117218.'139'(0.000000) + 3.478259.'158'(0.000000) + 0.097204.'158'(0.000000) + 1.111019.'161'(0.000000) + 2.077750.'170'(0.000000) + 1.809540.'172'(0.000000) + 1.565027.'174'(0.000000) + 2.317451.'175'(0.000000) + 1.669532.'176'(0.000000) + 1.583863.'177'(0.000000) + 0.436953.'182'(0.000000) + 0.488556.'184'(0.000000) + 1.406009.'185'(0.000000) + 1.468006.'187'(0.000000) + 2.585853.'191'(0.000000) + 0.144456.'193'(0.000000) + 0.828711.'194'(0.000000) + 1.316570.'196'(0.000000) + 0) <= 5.657651 ('119')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.505156.'128'(0.125579) + 1.687184.'121'(0.044234) + 1.107880.'119'(0.125579) + 2.669250.'116'(0.125579) + 2.231424.'115'(0.044234) + 2.083142.'111'(0.044234) + 2.867142.'110'(0.006573) + 1.252980.'108'(0.080095) + 2.693068.'102'(0.006573) + 1.978152.'122'(0.000000) + 0.851835.'122'(0.000000) + 2.860527.'125'(0.000000) + 1.170105.'125'(0.000000) + 0.605369.'130'(0.000000) + 1.179262.'137'(0.000000) + 0.346467.'138'(0.000000) + 0.582071.'140'(0.000000) + 1.052183.'147'(0.000000) + 0.041136.'148'(0.000000) + 1.884012.'153'(0.000000) + 1.301877.'153'(0.000000) + 1.106617.'160'(0.000000) + 1.014506.'166'(0.000000) + 2.427124.'168'(0.000000) + 0.836237.'169'(0.000000) + 0.252491.'171'(0.000000) + 1.373071.'188'(0.000000) + 1.436014.'192'(0.000000) + 0.413873.'196'(0.000000) + 0.020277.'199'(0.000000) + 0) <= 1.065725 ('174')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.927850.'178'(0.006573) + 1.451361.'136'(0.788434) + 0.800191.'133'(0.006573) + 0.665692.'124'(0.080095) + 1.453221.'121'(0.044234) + 1.896009.'120'(0.080095) + 1.851794.'114'(0.142396) + 2.170263.'112'(0.006573) + 0.468794.'109'(0.044234) + 0.327403.'104'(0.006573) + 1.771757.'102'(0.006573) + 1.390533.'122'(0.000000) + 0.845540.'125'(0.000000) + 0.739088.'134'(0.000000) + 2.284217.'147'(0.000000) + 1.806170.'155'(0.000000) + 0.920377.'161'(0.000000) + 2.410731.'163'(0.000000) + 2.554756.'170'(0.000000) + 1.686135.'171'(0.000000) + 1.338119.'177'(0.000000) + 1.982064.'195'(0.000000) + 0) <= 2.587332 ('132')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.846229.'141'(0.006573) + 0.992550.'126'(0.093227) + 1.979740.'123'(0.468422) + 1.396254.'121'(0.044234) + 0.777864.'119'(0.125579) + 1.812272.'112'(0.006573) + 2.726314.'105'(0.006573) + 0.725981.'102'(0.006573) + 2.018552.'122'(0.000000) + 1.525326.'140'(0.000000) + 0.319031.'147'(0.000000) + 1.465903.'148'(0.000000) + 0.779951.'152'(0.000000) + 1.346927.'168'(0.000000) + 1.142659.'169'(0.000000) + 1.492529.'171'(0.000000) + 2.561673.'173'(0.000000) + 1.993323.'176'(0.000000) + 0.558564.'182'(0.000000) + 2.098417.'189'(0.000000) + 0.802989.'191'(0.000000) + 1.768171.'200'(0.000000) + 0) <= 3.416137 ('131')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.265329.'181'(0.044234) + 1.418964.'154'(0.187080) + 1.674292.'141'(0.006573) + 0.784381.'123'(0.468422) + 1.094004.'119'(0.125579) + 2.599500.'118'(0.093227) + 1.644776.'116'(0.125579) + 1.210240.'111'(0.044234) + 1.278982.'102'(0.006573) + 0.231865.'130'(0.000000) + 1.677647.'142'(0.000000) + 2.529465.'144'(0.000000) + 0.990291.'149'(0.000000) + 1.397020.'152'(0.000000) + 1.958440.'155'(0.000000) + 1.301208.'160'(0.000000) + 1.469147.'167'(0.000000) + 1.411597.'170'(0.000000) + 1.343979.'172'(0.000000) + 2.469177.'173'(0.000000) + 0.689815.'174'(0.000000) + 0.962076.'180'(0.000000) + 2.374322.'185'(0.000000) + 1.415662.'197'(0.000000) + 0) <= 2.458112 ('186')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.456544.'181'(0.044234) + 1.264615.'157'(0.044234) + 1.975372.'123'(0.468422) + 2.135422.'118'(0.093227) + 0.994221.'112'(0.006573) + 0.962754.'102'(0.006573) + 1.730231.'139'(0.000000) + 2.182538.'142'(0.000000) + 1.553151.'143'(0.000000) + 0.855133.'149'(0.000000) + 0.246511.'151'(0.000000) + 1.503059.'161'(0.000000) + 1.140075.'162'(0.000000) + 1.030920.'165'(0.000000) + 2.409633.'168'(0.000000) + 1.673390.'170'(0.000000) + 2.087911.'171'(0.000000) + 2.010358.'172'(0.000000) + 0.251684.'176'(0.000000) + 2.086270.'180'(0.000000) + 1.486400.'183'(0.000000) + 1.393699.'185'(0.000000) + 2.342975.'188'(0.000000) + 0.333028.'188'(0.000000) + 1.383046.'189'(0.000000) + 0) <= 4.830698 ('124')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.235208.'156'(0.006573) + 1.527822.'132'(0.080095) + 0.497654.'127'(0.044234) + 1.268891.'118'(0.093227) + 1.976091.'112'(0.006573) + 2.366939.'104'(0.006573) + 2.255948.'102'(0.006573) + 1.465904.'137'(0.000000) + 0.966409.'144'(0.000000) + 1.753987.'151'(0.000000) + 0.668113.'159'(0.000000) + 2.518223.'161'(0.000000) + 0.294101.'164'(0.000000) + 0.925704.'168'(0.000000) + 0.321709.'177'(0.000000) + 1.909817.'190'(0.000000) + 1.372313.'190'(0.000000) + 2.219288.'191'(0.000000) + 1.223017.'192'(0.000000) + 0.479495.'192'(0.000000) + 1.342383.'198'(0.000000) + 1.508053.'199'(0.000000) + 0) <= 7.487779 ('173')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.824826.'157'(0.044234) + 2.520914.'126'(0.093227) + 0.571938.'120'(0.080095) + 1.857027.'119'(0.125579) + 1.794088.'113'(0.080095) + 0.348971.'102'(0.006573) + 1.911939.'122'(0.000000) + 0.671482.'138'(0.000000) + 1.669593.'148'(0.000000) + 0.771768.'160'(0.000000) + 2.092829.'162'(0.000000) + 1.778057.'163'(0.000000) + 3.505969.'164'(0.000000) + 1.101744.'164'(0.000000) + 2.140202.'168'(0.000000) + 1.889152.'169'(0.000000) + 1.345898.'171'(0.000000) + 0.063032.'171'(0.000000) + 0.219459.'172'(0.000000) + 1.652126.'176'(0.000000) + 1.629885.'180'(0.000000) + 1.417902.'182'(0.000000) + 1.398543.'188'(0.000000) + 2.405729.'197'(0.000000) + 3.144010.'198'(0.000000) + 1.363661.'198'(0.000000) + 0) <= 2.693888 ('156')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.392435.'181'(0.044234) + 1.026858.'156'(0.006573) + 1.265256.'133'(0.006573) + 1.845821.'124'(0.080095) + 1.448460.'123'(0.468422) + 2.039013.'121'(0.044234) + 0.998206.'117'(0.093227) + 0.583055.'111'(0.044234) + 0.771442.'110'(0.006573) + 1.545717.'106'(0.142396) + 1.455822.'104'(0.006573) + 3.082484.'104'(0.006573) + 1.275001.'103'(0.093227) + 1.524773.'102'(0.006573) + 1.597146.'122'(0.000000) + 1.279573.'122'(0.000000) + 2.119160.'134'(0.000000) + 1.161894.'135'(0.000000) + 1.355661.'143'(0.000000) + 1.612572.'145'(0.000000) + 2.344769.'150'(0.000000) + 1.323127.'151'(0.000000) + 2.008943.'168'(0.000000) + 1.956497.'171'(0.000000) + 2.216070.'174'(0.000000) + 1.494362.'179'(0.000000) + 0.489763.'184'(0.000000) + 0.690239.'188'(0.000000) + 0.287952.'190'(0.000000) + 0.847703.'192'(0.000000) + 2.232011.'194'(0.000000) + 0.462545.'198'(0.000000) + 0) <= 8.508505 ('138')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.016590.'157'(0.044234) + 2.448289.'132'(0.080095) + 1.570261.'124'(0.080095) + 1.886243.'115'(0.044234) + 1.235086.'112'(0.006573) + 0.208889.'110'(0.006573) + 3.031710.'110'(0.006573) + 2.276711.'106'(0.142396) + 1.858324.'105'(0.006573) + 1.807827.'102'(0.006573) + 1.745848.'138'(0.000000) + 1.363235.'139'(0.000000) + 2.015837.'142'(0.000000) + 2.089193.'143'(0.000000) + 0.929518.'145'(0.000000) + 0.744644.'148'(0.000000) + 1.915211.'151'(0.000000) + 1.881492.'153'(0.000000) + 1.148612.'164'(0.000000) + 1.433948.'168'(0.000000) + 1.586371.'170'(0.000000) + 2.483010.'175'(0.000000) + 1.939351.'183'(0.000000) + 1.797873.'189'(0.000000) + 1.368063.'189'(0.000000) + 2.044454.'191'(0.000000) + 1.201581.'194'(0.000000) + 2.153052.'200'(0.000000) + 0) <= 9.177187 ('180')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.030828.'156'(0.006573) + 1.675969.'156'(0.006573) + 2.885648.'133'(0.006573) + 1.520061.'126'(0.093227) + 1.443122.'119'(0.125579) + 1.173064.'118'(0.093227) + 1.172512.'114'(0.142396) + 1.922487.'114'(0.142396) + 2.016209.'109'(0.044234) + 1.314392.'106'(0.142396) + 2.037155.'102'(0.006573) + 2.753228.'122'(0.000000) + 0.742382.'122'(0.000000) + 1.720484.'140'(0.000000) + 1.597604.'153'(0.000000) + 1.338471.'159'(0.000000) + 1.919807.'160'(0.000000) + 0.706727.'168'(0.000000) + 0.709561.'176'(0.000000) + 1.111750.'190'(0.000000) + 1.679421.'191'(0.000000) + 2.192361.'192'(0.000000) + 0.328905.'197'(0.000000) + 0) <= 1.199505 ('106')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.194363.'178'(0.006573) + 1.341555.'156'(0.006573) + 1.957920.'141'(0.006573) + 1.094722.'133'(0.006573) + 1.901653.'131'(0.006573) + 0.916426.'112'(0.006573) + 1.214869.'110'(0.006573) + 0.405871.'105'(0.006573) + 1.278394.'104'(0.006573) + 2.083266.'104'(0.006573) + 2.206301.'102'(0.006573) + 0.598816.'137'(0.000000) + 1.634703.'140'(0.000000) + 1.838075.'142'(0.000000) + 1.650438.'145'(0.000000) + 1.063233.'151'(0.000000) + 0.474800.'152'(0.000000) + 0.561056.'164'(0.000000) + 1.993440.'179'(0.000000) + 1.411523.'180'(0.000000) + 1.931005.'182'(0.000000) + 1.534029.'189'(0.000000) + 1.782875.'193'(0.000000) + 1.429516.'194'(0.000000) + 1.655950.'198'(0.000000) + 0) <= 0.102500 ('189')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.962565.'157'(0.044234) + 0.370522.'154'(0.187080) + 1.631906.'141'(0.006573) + 0.432804.'117'(0.093227) + 2.091676.'115'(0.044234) + 2.618160.'113'(0.080095) + 1.245575.'109'(0.044234) + 1.364211.'102'(0.006573) + 2.272680.'122'(0.000000) + 1.621969.'125'(0.000000) + 2.904262.'139'(0.000000) + 0.674648.'140'(0.000000) + 1.294658.'150'(0.000000) + 0.903709.'158'(0.000000) + 1.773777.'160'(0.000000) + 0.380477.'160'(0.000000) + 2.444595.'166'(0.000000) + 1.611624.'169'(0.000000) + 1.123016.'173'(0.000000) + 1.644913.'176'(0.000000) + 1.759712.'179'(0.000000) + 1.914200.'184'(0.000000) + 2.004309.'189'(0.000000) + 1.250370.'193'(0.000000) + 1.382927.'196'(0.000000) + 1.161028.'200'(0.000000) + 0) <= 0.796455 ('114')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.501611.'181'(0.044234) + 1.523222.'178'(0.006573) + 2.302499.'141'(0.006573) + 1.421497.'136'(0.788434) + 1.285322.'131'(0.006573) + 1.983604.'131'(0.006573) + 2.232520.'126'(0.093227) + 1.646694.'124'(0.080095) + 0.826415.'115'(0.044234) + 2.043915.'107'(0.080095) + 1.667176.'106'(0.142396) + 1.961664.'102'(0.006573) + 0.076906.'125'(0.000000) + 0.366224.'147'(0.000000) + 2.568213.'148'(0.000000) + 0.857487.'149'(0.000000) + 1.761931.'153'(0.000000) + 0.487706.'159'(0.000000) + 0.861101.'169'(0.000000) + 2.204569.'170'(0.000000) + 1.806997.'173'(0.000000) + 2.474156.'175'(0.000000) + 2.220512.'176'(0.000000) + 1.052198.'177'(0.000000) + 0.321398.'194'(0.000000) + 0.621442.'195'(0.000000) + 1.352246.'196'(0.000000) + 0) <= 4.892662 ('184')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.287831.'133'(0.006573) + 1.996744.'132'(0.080095) + 1.614739.'131'(0.006573) + 2.446007.'129'(0.080095) + 2.861000.'127'(0.044234) + 1.733125.'124'(0.080095) + 0.465702.'120'(0.080095) + 1.557604.'120'(0.080095) + 1.789221.'115'(0.044234) + 0.938532.'113'(0.080095) + 1.936362.'108'(0.080095) + 0.755425.'107'(0.080095) + 2.437449.'102'(0.006573) + 1.510937.'145'(0.000000) + 2.442994.'150'(0.000000) + 1.063546.'159'(0.000000) + 0.995329.'163'(0.000000) + 1.221189.'165'(0.000000) + 1.004390.'168'(0.000000) + 2.199298.'173'(0.000000) + 1.239636.'177'(0.000000) + 0.920497.'182'(0.000000) + 0.944410.'183'(0.000000) + 2.160218.'185'(0.000000) + 0.829135.'186'(0.000000) + 1.042340.'191'(0.000000) + 1.429066.'196'(0.000000) + 1.990473.'198'(0.000000) + 0.572691.'198'(0.000000) + 1.207629.'199'(0.000000) + 0) <= 1.194848 ('127')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.428373.'146'(0.044234) + 1.437430.'131'(0.006573) + 1.442125.'128'(0.125579) + 1.759067.'126'(0.093227) + 1.030309.'124'(0.080095) + 0.845693.'123'(0.468422) + 1.359112.'120'(0.080095) + 1.881026.'113'(0.080095) + 1.525616.'106'(0.142396) + 1.578471.'105'(0.006573) + 0.983534.'103'(0.093227) + 2.428170.'102'(0.006573) + 1.055263.'134'(0.000000) + 1.514943.'135'(0.000000) + 0.724891.'138'(0.000000) + 1.528502.'149'(0.000000) + 0.626851.'150'(0.000000) + 0.689266.'161'(0.000000) + 0.665623.'163'(0.000000) + 0.179409.'164'(0.000000) + 1.498973.'165'(0.000000) + 1.539309.'173'(0.000000) + 0.772486.'175'(0.000000) + 1.586864.'179'(0.000000) + 1.349153.'193'(0.000000) + 0.766953.'193'(0.000000) + 2.521674.'197'(0.000000) + 2.661441.'199'(0.000000) + 0) <= 3.875234 ('159')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.227276.'178'(0.006573) + 1.694834.'156'(0.006573) + 1.386400.'129'(0.080095) + 0.861262.'126'(0.093227) + 2.345599.'120'(0.080095) + 2.376101.'118'(0.093227) + 2.299503.'117'(0.093227) + 1.101300.'112'(0.006573) + 1.232403.'111'(0.044234) + 1.666836.'103'(0.093227) + 1.739789.'102'(0.006573) + 1.477499.'138'(0.000000) + 2.011130.'144'(0.000000) + 1.749361.'147'(0.000000) + 2.110913.'152'(0.000000) + 1.604494.'153'(0.000000) + 0.782774.'155'(0.000000) + 2.064280.'159'(0.000000) + 1.470928.'161'(0.000000) + 2.056027.'165'(0.000000) + 1.488805.'166'(0.000000) + 0.958041.'169'(0.000000) + 1.286198.'170'(0.000000) + 0.420843.'173'(0.000000) + 0.293257.'179'(0.000000) + 2.187942.'183'(0.000000) + 0.575051.'184'(0.000000) + 2.103383.'191'(0.000000) + 3.471705.'193'(0.000000) + 0.147929.'193'(0.000000) + 0.417406.'195'(0.000000) + 0.622687.'200'(0.000000) + 0) <= 1.069457 ('120')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.395076.'136'(0.788434) + 0.216529.'132'(0.080095) + 1.766862.'131'(0.006573) + 2.017363.'128'(0.125579) + 0.617829.'126'(0.093227) + 0.652071.'120'(0.080095) + 2.594600.'119'(0.125579) + 2.062283.'118'(0.093227) + 1.469108.'115'(0.044234) + 0.839934.'113'(0.080095) + 0.540039.'109'(0.044234) + 2.480324.'109'(0.044234) + 0.297000.'107'(0.080095) + 2.690217.'107'(0.080095) + 1.504788.'106'(0.142396) + 0.592821.'103'(0.093227) + 2.052735.'103'(0.093227) + 0.825453.'102'(0.006573) + 1.317518.'137'(0.000000) + 1.225164.'145'(0.000000) + 1.131012.'151'(0.000000) + 2.470487.'158'(0.000000) + 2.432689.'159'(0.000000) + 1.213512.'168'(0.000000) + 1.731118.'173'(0.000000) + 0.838672.'173'(0.000000) + 1.175490.'179'(0.000000) + 1.242742.'183'(0.000000) + 1.879711.'189'(0.000000) + 0.052446.'189'(0.000000) + 1.322908.'200'(0.000000) + 0) <= 7.780082 ('171')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.455080.'154'(0.187080) + 1.828968.'146'(0.044234) + 1.776728.'131'(0.006573) + 0.972692.'126'(0.093227) + 1.064437.'124'(0.080095) + 0.627877.'121'(0.044234) + 0.992121.'118'(0.093227) + 1.998377.'115'(0.044234) + 1.013984.'114'(0.142396) + 1.089760.'109'(0.044234) + 1.718587.'108'(0.080095) + 0.415653.'102'(0.006573) + 2.072675.'125'(0.000000) + 1.041072.'135'(0.000000) + 1.593143.'137'(0.000000) + 2.490151.'140'(0.000000) + 1.483036.'142'(0.000000) + 1.672005.'145'(0.000000) + 0.840943.'151'(0.000000) + 1.042253.'155'(0.000000) + 1.927915.'158'(0.000000) + 0.887154.'165'(0.000000) + 2.399489.'168'(0.000000) + 2.136523.'179'(0.000000) + 2.877228.'180'(0.000000) + 0.866043.'184'(0.000000) + 0.898467.'186'(0.000000) + 0.364225.'186'(0.000000) + 2.005638.'199'(0.000000) + 0) <= 3.205364 ('104')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.072573.'178'(0.006573) + 1.520784.'133'(0.006573) + 1.856668.'127'(0.044234) + 1.963620.'124'(0.080095) + 0.951764.'120'(0.080095) + 2.039825.'111'(0.044234) + 1.555007.'106'(0.142396) + 1.527940.'102'(0.006573) + 2.343177.'130'(0.000000) + 1.944857.'137'(0.000000) + 1.168720.'138'(0.000000) + 1.646124.'139'(0.000000) + 1.744112.'148'(0.000000) + 0.830406.'151'(0.000000) + 1.290892.'159'(0.000000) + 2.391685.'162'(0.000000) + 1.132469.'169'(0.000000) + 1.487794.'182'(0.000000) + 0.830738.'192'(0.000000) + 2.054383.'200'(0.000000) + 0) <= 3.557536 ('155')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.386330.'141'(0.006573) + 1.158021.'136'(0.788434) + 1.346146.'129'(0.080095) + 0.871124.'129'(0.080095) + 0.858731.'121'(0.044234) + 2.151642.'119'(0.125579) + 0.604649.'117'(0.093227) + 1.799876.'116'(0.125579) + 0.527510.'114'(0.142396) + 1.227734.'111'(0.044234) + 1.427370.'105'(0.006573) + 1.704697.'104'(0.006573) + 1.319089.'103'(0.093227) + 2.279213.'130'(0.000000) + 1.151271.'139'(0.000000) + 0.293729.'142'(0.000000) + 0.933752.'143'(0.000000) + 1.664818.'144'(0.000000) + 1.275956.'151'(0.000000) + 0.203839.'152'(0.000000) + 1.806466.'153'(0.000000) + 1.426030.'155'(0.000000) + 1.171905.'158'(0.000000) + 1.615945.'162'(0.000000) + 0.968727.'165'(0.000000) + 0.687858.'167'(0.000000) + 1.424485.'168'(0.000000) + 2.108198.'169'(0.000000) + 0.335052.'172'(0.000000) + 2.157240.'173'(0.000000) + 0.692906.'173'(0.000000) + 2.032173.'174'(0.000000) + 0.954689.'175'(0.000000) + 1.311012.'183'(0.000000) + 1.427137.'195'(0.000000) + 1.104519.'197'(0.000000) + 0) <= 3.508719 ('161')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.384164.'178'(0.006573) + 1.741066.'157'(0.044234) + 2.380023.'133'(0.006573) + 0.973260.'131'(0.006573) + 2.155747.'126'(0.093227) + 1.641631.'119'(0.125579) + 1.386048.'118'(0.093227) + 0.797460.'103'(0.093227) + 1.473246.'130'(0.000000) + 1.898866.'134'(0.000000) + 1.686935.'147'(0.000000) + 1.892385.'148'(0.000000) + 0.930982.'163'(0.000000) + 1.332234.'170'(0.000000) + 2.033684.'171'(0.000000) + 1.614402.'175'(0.000000) + 1.620139.'176'(0.000000) + 0.837078.'180'(0.000000) + 1.149652.'182'(0.000000) + 1.058332.'197'(0.000000) + 0) <= 1.872865 ('192')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.434240.'157'(0.044234) + 1.271752.'132'(0.080095) + 0.584455.'123'(0.468422) + 0.364425.'121'(0.044234) + 0.864082.'116'(0.125579) + 0.684738.'115'(0.044234) + 2.421397.'113'(0.080095) + 1.516396.'108'(0.080095) + 1.642852.'106'(0.142396) + 1.880500.'105'(0.006573) + 1.154789.'103'(0.093227) + 1.260074.'103'(0.093227) + 0.208440.'130'(0.000000) + 2.336803.'140'(0.000000) + 0.550436.'147'(0.000000) + 0.344020.'150'(0.000000) + 0.196627.'152'(0.000000) + 1.705157.'158'(0.000000) + 1.686370.'163'(0.000000) + 1.770677.'168'(0.000000) + 0.377494.'169'(0.000000) + 1.016244.'173'(0.000000) + 0.729589.'182'(0.000000) + 2.280199.'185'(0.000000) + 1.550732.'186'(0.000000) + 0.463207.'186'(0.000000) + 1.384538.'188'(0.000000) + 1.178534.'189'(0.000000) + 1.948033.'196'(0.000000) + 1.909783.'197'(0.000000) + 1.450769.'199'(0.000000) + 0.379864.'200'(0.000000) + 0) <= 2.293860 ('167')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.514890.'178'(0.006573) + 1.061676.'154'(0.187080) + 2.212168.'136'(0.788434) + 1.216145.'133'(0.006573) + 2.335190.'129'(0.080095) + 2.267677.'118'(0.093227) + 0.964539.'115'(0.044234) + 1.460051.'103'(0.093227) + 0.939038.'122'(0.000000) + 1.186390.'148'(0.000000) + 0.978607.'150'(0.000000) + 0.464472.'155'(0.000000) + 1.827950.'158'(0.000000) + 0.292528.'162'(0.000000) + 2.087971.'166'(0.000000) + 1.262450.'185'(0.000000) + 1.719752.'188'(0.000000) + 1.631298.'189'(0.000000) + 0.786606.'191'(0.000000) + 1.680166.'193'(0.000000) + 1.829660.'194'(0.000000) + 0.455731.'194'(0.000000) + 1.129350.'197'(0.000000) + 0) <= 7.065420 ('144')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.722515.'141'(0.006573) + 1.691158.'131'(0.006573) + 1.775634.'128'(0.125579) + 0.356763.'116'(0.125579) + 1.968056.'112'(0.006573) + 2.580966.'110'(0.006573) + 1.967096.'109'(0.044234) + 2.110741.'107'(0.080095) + 0.718770.'106'(0.142396) + 3.021201.'106'(0.142396) + 0.969152.'104'(0.006573) + 2.742068.'103'(0.093227) + 0.997344.'148'(0.000000) + 2.112786.'150'(0.000000) + 0.893490.'152'(0.000000) + 1.497893.'153'(0.000000) + 1.713164.'161'(0.000000) + 1.333663.'164'(0.000000) + 1.444281.'170'(0.000000) + 2.076272.'173'(0.000000) + 1.199382.'177'(0.000000) + 1.271357.'187'(0.000000) + 3.624889.'190'(0.000000) + 1.443096.'190'(0.000000) + 0) <= 9.411933 ('142')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.512057.'181'(0.044234) + 3.071045.'181'(0.044234) + 2.199614.'157'(0.044234) + 1.152513.'156'(0.006573) + 1.199829.'154'(0.187080) + 1.213281.'141'(0.006573) + 1.177545.'131'(0.006573) + 0.107313.'129'(0.080095) + 2.837312.'129'(0.080095) + 2.572453.'127'(0.044234) + 1.292911.'126'(0.093227) + 1.817922.'117'(0.093227) + 1.351466.'113'(0.080095) + 0.699162.'112'(0.006573) + 0.191132.'107'(0.080095) + 1.172628.'104'(0.006573) + 1.165246.'103'(0.093227) + 1.482661.'125'(0.000000) + 1.379792.'130'(0.000000) + 1.174179.'135'(0.000000) + 1.859481.'139'(0.000000) + 0.911493.'139'(0.000000) + 0.674215.'148'(0.000000) + 1.557109.'152'(0.000000) + 1.696058.'155'(0.000000) + 2.092266.'168'(0.000000) + 2.746896.'174'(0.000000) + 1.479090.'180'(0.000000) + 1.503270.'184'(0.000000) + 1.386597.'194'(0.000000) + 0) <= 9.537422 ('135')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.901242.'146'(0.044234) + 1.684058.'141'(0.006573) + 1.167249.'132'(0.080095) + 1.311484.'129'(0.080095) + 1.595389.'119'(0.125579) + 2.214264.'116'(0.125579) + 1.896587.'112'(0.006573) + 2.223912.'109'(0.044234) + 1.143503.'103'(0.093227) + 1.966108.'103'(0.093227) + 1.770890.'137'(0.000000) + 0.965037.'140'(0.000000) + 1.233559.'147'(0.000000) + 1.223799.'152'(0.000000) + 2.240931.'155'(0.000000) + 1.102296.'159'(0.000000) + 0.479441.'160'(0.000000) + 2.352743.'161'(0.000000) + 1.265973.'161'(0.000000) + 0.664642.'162'(0.000000) + 0.687668.'163'(0.000000) + 2.674598.'165'(0.000000) + 2.361611.'166'(0.000000) + 0.997284.'167'(0.000000) + 2.151681.'168'(0.000000) + 0.722815.'169'(0.000000) + 1.160824.'170'(0.000000) + 2.654701.'174'(0.000000) + 1.631252.'193'(0.000000) + 1.222890.'194'(0.000000) + 2.577937.'199'(0.000000) + 0) <= 2.172699 ('130')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.301885.'128'(0.125579) + 1.371551.'127'(0.044234) + 1.128690.'124'(0.080095) + 1.121216.'116'(0.125579) + 2.844005.'115'(0.044234) + 0.795435.'111'(0.044234) + 1.576517.'110'(0.006573) + 1.410583.'109'(0.044234) + 1.405771.'107'(0.080095) + 0.683844.'106'(0.142396) + 2.619084.'103'(0.093227) + 1.169475.'134'(0.000000) + 0.100269.'135'(0.000000) + 0.672361.'138'(0.000000) + 1.082631.'139'(0.000000) + 1.207389.'139'(0.000000) + 1.890997.'142'(0.000000) + 1.021173.'145'(0.000000) + 1.109350.'147'(0.000000) + 1.344645.'149'(0.000000) + 1.191929.'150'(0.000000) + 1.740289.'166'(0.000000) + 1.486841.'170'(0.000000) + 1.399274.'176'(0.000000) + 1.510011.'183'(0.000000) + 1.108266.'190'(0.000000) + 0.614959.'190'(0.000000) + 1.337446.'194'(0.000000) + 0) <= 4.768434 ('172')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.881306.'128'(0.125579) + 2.170511.'124'(0.080095) + 1.194940.'119'(0.125579) + 1.061002.'118'(0.093227) + 0.219503.'105'(0.006573) + 0.061869.'104'(0.006573) + 2.124824.'104'(0.006573) + 1.825870.'103'(0.093227) + 1.235328.'130'(0.000000) + 2.572400.'134'(0.000000) + 1.127211.'135'(0.000000) + 2.088416.'139'(0.000000) + 1.751423.'140'(0.000000) + 0.781165.'142'(0.000000) + 0.169138.'153'(0.000000) + 1.179401.'159'(0.000000) + 1.579365.'161'(0.000000) + 3.175654.'164'(0.000000) + 0.686512.'164'(0.000000) + 1.072593.'165'(0.000000) + 1.112457.'173'(0.000000) + 1.247665.'176'(0.000000) + 1.993801.'179'(0.000000) + 1.802504.'185'(0.000000) + 2.261780.'188'(0.000000) + 1.682292.'190'(0.000000) + 1.713570.'193'(0.000000) + 0.580511.'195'(0.000000) + 1.615488.'196'(0.000000) + 2.174601.'200'(0.000000) + 0) <= 8.141384 ('136')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.361194.'181'(0.044234) + 1.820431.'178'(0.006573) + 1.314341.'128'(0.125579) + 0.806123.'127'(0.044234) + 2.111399.'120'(0.080095) + 1.114955.'118'(0.093227) + 1.517211.'110'(0.006573) + 1.521821.'103'(0.093227) + 2.498404.'130'(0.000000) + 1.184414.'140'(0.000000) + 0.961269.'148'(0.000000) + 0.906685.'152'(0.000000) + 1.470382.'158'(0.000000) + 1.856893.'165'(0.000000) + 1.034040.'166'(0.000000) + 1.696721.'167'(0.000000) + 2.019718.'177'(0.000000) + 3.035953.'187'(0.000000) + 0.157777.'187'(0.000000) + 1.769783.'188'(0.000000) + 1.327285.'192'(0.000000) + 2.453630.'199'(0.000000) + 0) <= 8.378305 ('183')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.845346.'129'(0.080095) + 1.939248.'126'(0.093227) + 1.190279.'120'(0.080095) + 1.781053.'103'(0.093227) + 0.449494.'125'(0.000000) + 2.609063.'130'(0.000000) + 2.601482.'135'(0.000000) + 0.853103.'145'(0.000000) + 1.631306.'161'(0.000000) + 2.218292.'169'(0.000000) + 0.892219.'177'(0.000000) + 0.164239.'185'(0.000000) + 2.082659.'188'(0.000000) + 2.514556.'190'(0.000000) + 2.596843.'194'(0.000000) + 1.372731.'197'(0.000000) + 0) <= 4.637426 ('187')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.272392.'156'(0.006573) + 2.776708.'154'(0.187080) + 0.208071.'136'(0.788434) + 2.351107.'129'(0.080095) + 2.157764.'120'(0.080095) + 1.415520.'119'(0.125579) + 2.298813.'118'(0.093227) + 1.643685.'113'(0.080095) + 1.365614.'104'(0.006573) + 0.893884.'125'(0.000000) + 1.793261.'135'(0.000000) + 1.601148.'137'(0.000000) + 0.895192.'148'(0.000000) + 2.086872.'150'(0.000000) + 1.500062.'151'(0.000000) + 1.518935.'155'(0.000000) + 2.102960.'161'(0.000000) + 1.350142.'164'(0.000000) + 2.014534.'179'(0.000000) + 0.340089.'184'(0.000000) + 2.640327.'186'(0.000000) + 0.491970.'187'(0.000000) + 2.091613.'199'(0.000000) + 0) <= 2.208379 ('175')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.491663.'157'(0.044234) + 1.464826.'146'(0.044234) + 1.527953.'136'(0.788434) + 1.802031.'128'(0.125579) + 2.915259.'126'(0.093227) + 2.181123.'119'(0.125579) + 1.696801.'118'(0.093227) + 2.458787.'111'(0.044234) + 1.866065.'109'(0.044234) + 1.277628.'106'(0.142396) + 0.482364.'104'(0.006573) + 2.651085.'130'(0.000000) + 0.575176.'135'(0.000000) + 2.287878.'162'(0.000000) + 1.622682.'165'(0.000000) + 0.402705.'172'(0.000000) + 0.728424.'180'(0.000000) + 2.105850.'183'(0.000000) + 0) <= 6.470142 ('165')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.952705.'181'(0.044234) + 1.186987.'178'(0.006573) + 0.909699.'154'(0.187080) + 2.457878.'132'(0.080095) + 2.056541.'127'(0.044234) + 0.018780.'116'(0.125579) + 1.097357.'114'(0.142396) + 1.361903.'111'(0.044234) + 2.246796.'111'(0.044234) + 2.351104.'104'(0.006573) + 0.953507.'135'(0.000000) + 1.542317.'138'(0.000000) + 2.071817.'139'(0.000000) + 1.580873.'140'(0.000000) + 1.840657.'144'(0.000000) + 1.186730.'148'(0.000000) + 2.109041.'155'(0.000000) + 0.091614.'155'(0.000000) + 1.002108.'158'(0.000000) + 1.517398.'166'(0.000000) + 1.749295.'168'(0.000000) + 1.518646.'175'(0.000000) + 2.153496.'185'(0.000000) + 2.518437.'186'(0.000000) + 1.196290.'192'(0.000000) + 1.538106.'199'(0.000000) + 1.310543.'200'(0.000000) + 0) <= 8.799904 ('193')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.016910.'146'(0.044234) + 2.259166.'131'(0.006573) + 2.968000.'128'(0.125579) + 0.591802.'127'(0.044234) + 1.445521.'121'(0.044234) + 1.486794.'119'(0.125579) + 1.118213.'114'(0.142396) + 1.884486.'108'(0.080095) + 1.574422.'104'(0.006573) + 2.549654.'140'(0.000000) + 1.540848.'143'(0.000000) + 0.768872.'144'(0.000000) + 1.953354.'147'(0.000000) + 1.901082.'151'(0.000000) + 1.406621.'164'(0.000000) + 1.493331.'167'(0.000000) + 1.660930.'182'(0.000000) + 1.484453.'185'(0.000000) + 3.053787.'186'(0.000000) + 0.681377.'186'(0.000000) + 0.242872.'189'(0.000000) + 2.200641.'195'(0.000000) + 0) <= 3.972540 ('185')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.051637.'178'(0.006573) + 0.134149.'156'(0.006573) + 1.800062.'156'(0.006573) + 0.276480.'146'(0.044234) + 1.469582.'123'(0.468422) + 1.745740.'119'(0.125579) + 1.125175.'116'(0.125579) + 1.024126.'110'(0.006573) + 1.035585.'105'(0.006573) + 2.041887.'104'(0.006573) + 1.726493.'139'(0.000000) + 1.576323.'159'(0.000000) + 1.677314.'162'(0.000000) + 1.426826.'162'(0.000000) + 0.393193.'175'(0.000000) + 2.193377.'180'(0.000000) + 2.395733.'191'(0.000000) + 1.792308.'193'(0.000000) + 0.840646.'195'(0.000000) + 0) <= 3.939333 ('152')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.945350.'136'(0.788434) + 2.614928.'128'(0.125579) + 0.977603.'124'(0.080095) + 0.891334.'121'(0.044234) + 1.135399.'117'(0.093227) + 0.981975.'111'(0.044234) + 0.629195.'109'(0.044234) + 0.598586.'104'(0.006573) + 0.692825.'125'(0.000000) + 1.559825.'142'(0.000000) + 0.967597.'143'(0.000000) + 1.283493.'148'(0.000000) + 1.223258.'155'(0.000000) + 2.170129.'160'(0.000000) + 1.134909.'161'(0.000000) + 0.946675.'163'(0.000000) + 1.328765.'166'(0.000000) + 2.254859.'172'(0.000000) + 1.359211.'175'(0.000000) + 1.704611.'176'(0.000000) + 2.074427.'184'(0.000000) + 1.804545.'185'(0.000000) + 0.555812.'186'(0.000000) + 2.608935.'187'(0.000000) + 1.694606.'191'(0.000000) + 1.534407.'192'(0.000000) + 0.399892.'192'(0.000000) + 1.887023.'200'(0.000000) + 0) <= 2.878688 ('116')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.919684.'146'(0.044234) + 1.547827.'129'(0.080095) + 2.153157.'119'(0.125579) + 1.153388.'118'(0.093227) + 1.676089.'112'(0.006573) + 1.668515.'105'(0.006573) + 1.798036.'104'(0.006573) + 1.895971.'137'(0.000000) + 1.994966.'140'(0.000000) + 1.082526.'140'(0.000000) + 1.838746.'144'(0.000000) + 1.713244.'147'(0.000000) + 1.815431.'151'(0.000000) + 1.615343.'163'(0.000000) + 1.532149.'167'(0.000000) + 1.392378.'170'(0.000000) + 2.269544.'171'(0.000000) + 1.532268.'172'(0.000000) + 1.957934.'173'(0.000000) + 0.529921.'173'(0.000000) + 1.481287.'175'(0.000000) + 1.646681.'179'(0.000000) + 0.999516.'189'(0.000000) + 2.304956.'194'(0.000000) + 1.853959.'197'(0.000000) + 0) <= 8.783003 ('157')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.337260.'156'(0.006573) + 0.092446.'154'(0.187080) + 1.213552.'128'(0.125579) + 1.321980.'123'(0.468422) + 0.391209.'116'(0.125579) + 1.332670.'115'(0.044234) + 1.364693.'111'(0.044234) + 1.766435.'110'(0.006573) + 2.314414.'109'(0.044234) + 1.393201.'107'(0.080095) + 0.138042.'104'(0.006573) + 1.150811.'134'(0.000000) + 1.221880.'142'(0.000000) + 1.147789.'143'(0.000000) + 0.377358.'145'(0.000000) + 2.456853.'158'(0.000000) + 2.311073.'160'(0.000000) + 0.391678.'166'(0.000000) + 1.553053.'170'(0.000000) + 0.927805.'174'(0.000000) + 1.675405.'184'(0.000000) + 1.797583.'195'(0.000000) + 1.570210.'196'(0.000000) + 0.798483.'198'(0.000000) + 1.880589.'200'(0.000000) + 0) <= 3.350947 ('199')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.811395.'178'(0.006573) + 2.315240.'133'(0.006573) + 1.349717.'129'(0.080095) + 1.899638.'117'(0.093227) + 0.921370.'114'(0.142396) + 1.056284.'113'(0.080095) + 1.339526.'106'(0.142396) + 2.038101.'105'(0.006573) + 2.276968.'130'(0.000000) + 1.099526.'143'(0.000000) + 1.023644.'147'(0.000000) + 0.635996.'148'(0.000000) + 0.988943.'149'(0.000000) + 1.449803.'150'(0.000000) + 1.253780.'159'(0.000000) + 1.476570.'162'(0.000000) + 0.776173.'167'(0.000000) + 1.293241.'170'(0.000000) + 2.438064.'171'(0.000000) + 2.129567.'172'(0.000000) + 2.327549.'173'(0.000000) + 2.152855.'174'(0.000000) + 1.552752.'175'(0.000000) + 0.608196.'177'(0.000000) + 0.279445.'184'(0.000000) + 1.960885.'187'(0.000000) + 0.784466.'192'(0.000000) + 0) <= 3.792106 ('154')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.755000.'181'(0.044234) + 0.518030.'141'(0.006573) + 1.667257.'136'(0.788434) + 0.707797.'126'(0.093227) + 1.626550.'121'(0.044234) + 1.055250.'114'(0.142396) + 1.293246.'105'(0.006573) + 0.359167.'134'(0.000000) + 1.559394.'135'(0.000000) + 0.931364.'143'(0.000000) + 3.490726.'160'(0.000000) + 0.690606.'160'(0.000000) + 2.521005.'165'(0.000000) + 0.499409.'169'(0.000000) + 2.197413.'170'(0.000000) + 0.850779.'170'(0.000000) + 1.550288.'183'(0.000000) + 1.655458.'184'(0.000000) + 0) <= 1.692254 ('145')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.586980.'178'(0.006573) + 1.628420.'157'(0.044234) + 2.011585.'131'(0.006573) + 1.689523.'129'(0.080095) + 0.488515.'128'(0.125579) + 0.124365.'127'(0.044234) + 3.292347.'127'(0.044234) + 0.429476.'126'(0.093227) + 0.640624.'123'(0.468422) + 0.539090.'116'(0.125579) + 2.026765.'115'(0.044234) + 2.361033.'105'(0.006573) + 0.797958.'122'(0.000000) + 1.056117.'138'(0.000000) + 1.466533.'142'(0.000000) + 1.658476.'147'(0.000000) + 1.459721.'150'(0.000000) + 0.929290.'151'(0.000000) + 0.885607.'159'(0.000000) + 0.977209.'163'(0.000000) + 2.290498.'175'(0.000000) + 1.694487.'184'(0.000000) + 0.962736.'185'(0.000000) + 0.998133.'187'(0.000000) + 0.525389.'189'(0.000000) + 0.487445.'194'(0.000000) + 0) <= 6.438419 ('168')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.558296.'133'(0.006573) + 2.735626.'124'(0.080095) + 1.413389.'117'(0.093227) + 3.056772.'117'(0.093227) + 0.720651.'114'(0.142396) + 1.087560.'112'(0.006573) + 2.908016.'108'(0.080095) + 1.945611.'105'(0.006573) + 1.158176.'125'(0.000000) + 0.827676.'134'(0.000000) + 1.086766.'137'(0.000000) + 1.459203.'138'(0.000000) + 1.454437.'139'(0.000000) + 1.405312.'140'(0.000000) + 2.272148.'149'(0.000000) + 2.488098.'151'(0.000000) + 1.472804.'159'(0.000000) + 1.030548.'164'(0.000000) + 1.560846.'170'(0.000000) + 0.286661.'171'(0.000000) + 1.396189.'173'(0.000000) + 1.609894.'179'(0.000000) + 3.271612.'180'(0.000000) + 0.975598.'180'(0.000000) + 0.664358.'182'(0.000000) + 2.665548.'192'(0.000000) + 2.742165.'195'(0.000000) + 0) <= 4.413549 ('149')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.742378.'154'(0.187080) + 1.933787.'115'(0.044234) + 1.274366.'114'(0.142396) + 1.707456.'111'(0.044234) + 1.803126.'109'(0.044234) + 0.309146.'106'(0.142396) + 1.871253.'106'(0.142396) + 1.043947.'105'(0.006573) + 2.054258.'122'(0.000000) + 1.261268.'134'(0.000000) + 1.656795.'137'(0.000000) + 1.551267.'153'(0.000000) + 1.392869.'162'(0.000000) + 0.949743.'163'(0.000000) + 1.673832.'165'(0.000000) + 2.094397.'177'(0.000000) + 1.550925.'179'(0.000000) + 2.167174.'180'(0.000000) + 1.340495.'184'(0.000000) + 0.860345.'187'(0.000000) + 1.265129.'191'(0.000000) + 1.637195.'198'(0.000000) + 0) <= 7.466314 ('140')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.731209.'146'(0.044234) + 0.698458.'136'(0.788434) + 2.490136.'128'(0.125579) + 0.865869.'121'(0.044234) + 1.681110.'113'(0.080095) + 0.754958.'111'(0.044234) + 1.061627.'108'(0.080095) + 1.132484.'105'(0.006573) + 0.943649.'125'(0.000000) + 1.927897.'142'(0.000000) + 1.858166.'144'(0.000000) + 1.345591.'145'(0.000000) + 1.561557.'149'(0.000000) + 1.258082.'163'(0.000000) + 1.732862.'165'(0.000000) + 1.872341.'166'(0.000000) + 1.894645.'176'(0.000000) + 0.831638.'200'(0.000000) + 0) <= 1.850821 ('101')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.391859.'178'(0.006573) + 1.803626.'156'(0.006573) + 2.048667.'128'(0.125579) + 1.552797.'114'(0.142396) + 1.276080.'113'(0.080095) + 1.537551.'108'(0.080095) + 0.620937.'106'(0.142396) + 2.524391.'137'(0.000000) + 1.193210.'139'(0.000000) + 2.155776.'161'(0.000000) + 1.376931.'172'(0.000000) + 1.519302.'174'(0.000000) + 0.491635.'175'(0.000000) + 1.961210.'179'(0.000000) + 1.452636.'190'(0.000000) + 1.593845.'191'(0.000000) + 1.190660.'192'(0.000000) + 1.222442.'194'(0.000000) + 2.022743.'195'(0.000000) + 1.533094.'196'(0.000000) + 0) <= 2.738379 ('195')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.383062.'156'(0.006573) + 2.790130.'156'(0.006573) + 2.039550.'132'(0.080095) + 1.367320.'113'(0.080095) + 0.186621.'111'(0.044234) + 2.403285.'106'(0.142396) + 1.172991.'134'(0.000000) + 1.722428.'135'(0.000000) + 2.029463.'159'(0.000000) + 2.205598.'171'(0.000000) + 1.538754.'174'(0.000000) + 1.731477.'183'(0.000000) + 1.149176.'186'(0.000000) + 1.422536.'187'(0.000000) + 0.957509.'191'(0.000000) + 2.149453.'196'(0.000000) + 0) <= 2.046486 ('105')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.897088.'157'(0.044234) + 0.886878.'136'(0.788434) + 1.719242.'133'(0.006573) + 2.518737.'129'(0.080095) + 2.674065.'127'(0.044234) + 2.335713.'126'(0.093227) + 2.714390.'119'(0.125579) + 1.007045.'114'(0.142396) + 1.778746.'111'(0.044234) + 1.292101.'108'(0.080095) + 2.224073.'108'(0.080095) + 1.464826.'106'(0.142396) + 1.241090.'125'(0.000000) + 1.881498.'150'(0.000000) + 1.582442.'152'(0.000000) + 1.671070.'163'(0.000000) + 0.341896.'167'(0.000000) + 1.179227.'170'(0.000000) + 1.970401.'172'(0.000000) + 0.538695.'183'(0.000000) + 1.752148.'187'(0.000000) + 2.319190.'193'(0.000000) + 1.909827.'195'(0.000000) + 0) <= 5.867970 ('110')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.383040.'181'(0.044234) + 2.278186.'157'(0.044234) + 1.852404.'127'(0.044234) + 1.180661.'124'(0.080095) + 0.926230.'111'(0.044234) + 1.573932.'108'(0.080095) + 1.210650.'107'(0.080095) + 1.098231.'125'(0.000000) + 1.364375.'134'(0.000000) + 0.683410.'143'(0.000000) + 1.218981.'145'(0.000000) + 0.922359.'147'(0.000000) + 0.794845.'148'(0.000000) + 1.730717.'155'(0.000000) + 0.079535.'155'(0.000000) + 1.735411.'166'(0.000000) + 0.544329.'169'(0.000000) + 0.563272.'176'(0.000000) + 0.185752.'185'(0.000000) + 2.511743.'190'(0.000000) + 1.422490.'193'(0.000000) + 1.765857.'195'(0.000000) + 0) <= 2.209982 ('139')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.196098.'181'(0.044234) + 2.404397.'157'(0.044234) + 2.182877.'154'(0.187080) + 0.523049.'146'(0.044234) + 0.758012.'141'(0.006573) + 1.110814.'132'(0.080095) + 2.434842.'126'(0.093227) + 2.838479.'123'(0.468422) + 0.090325.'119'(0.125579) + 1.228028.'107'(0.080095) + 2.103447.'130'(0.000000) + 1.275225.'135'(0.000000) + 1.243363.'137'(0.000000) + 1.974218.'139'(0.000000) + 1.873831.'144'(0.000000) + 0.598393.'149'(0.000000) + 1.121787.'159'(0.000000) + 1.521620.'160'(0.000000) + 1.498658.'164'(0.000000) + 1.570137.'166'(0.000000) + 2.088682.'169'(0.000000) + 1.945039.'172'(0.000000) + 2.672294.'183'(0.000000) + 2.381893.'187'(0.000000) + 2.033243.'188'(0.000000) + 1.564595.'191'(0.000000) + 1.218497.'191'(0.000000) + 1.565429.'193'(0.000000) + 1.183184.'195'(0.000000) + 0.891262.'197'(0.000000) + 1.443094.'199'(0.000000) + 0) <= 9.326286 ('148')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.126795.'154'(0.187080) + 1.953195.'146'(0.044234) + 0.836967.'141'(0.006573) + 1.209919.'132'(0.080095) + 0.962010.'126'(0.093227) + 1.752513.'115'(0.044234) + 1.256292.'114'(0.142396) + 1.255635.'110'(0.006573) + 2.300000.'107'(0.080095) + 2.210692.'125'(0.000000) + 0.988810.'125'(0.000000) + 1.365348.'137'(0.000000) + 1.851814.'142'(0.000000) + 0.846778.'160'(0.000000) + 1.363828.'163'(0.000000) + 1.980842.'168'(0.000000) + 1.000508.'172'(0.000000) + 1.682079.'175'(0.000000) + 1.287123.'176'(0.000000) + 1.663643.'185'(0.000000) + 1.202301.'185'(0.000000) + 0.954825.'188'(0.000000) + 2.120862.'197'(0.000000) + 0) <= 8.539753 ('112')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.597687.'181'(0.044234) + 2.193406.'157'(0.044234) + 1.234849.'141'(0.006573) + 0.096874.'120'(0.080095) + 2.056760.'120'(0.080095) + 1.368753.'118'(0.093227) + 1.306683.'113'(0.080095) + 1.338015.'112'(0.006573) + 2.069278.'108'(0.080095) + 1.823503.'107'(0.080095) + 2.353006.'125'(0.000000) + 1.671996.'130'(0.000000) + 1.618170.'138'(0.000000) + 1.086153.'139'(0.000000) + 1.801304.'140'(0.000000) + 0.339085.'148'(0.000000) + 1.587015.'150'(0.000000) + 1.709849.'155'(0.000000) + 1.193711.'165'(0.000000) + 1.679492.'167'(0.000000) + 0) <= 6.308427 ('162')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.091663.'132'(0.080095) + 1.558993.'128'(0.125579) + 1.468368.'127'(0.044234) + 2.066548.'124'(0.080095) + 1.440323.'109'(0.044234) + 2.089583.'107'(0.080095) + 1.514635.'130'(0.000000) + 1.471114.'135'(0.000000) + 0.266230.'142'(0.000000) + 1.201433.'149'(0.000000) + 1.127015.'150'(0.000000) + 1.642509.'153'(0.000000) + 1.380017.'155'(0.000000) + 1.747018.'161'(0.000000) + 1.010199.'162'(0.000000) + 0.987443.'166'(0.000000) + 1.601249.'180'(0.000000) + 1.623683.'182'(0.000000) + 2.620437.'183'(0.000000) + 0.340152.'185'(0.000000) + 1.088817.'193'(0.000000) + 0.790240.'195'(0.000000) + 1.834279.'197'(0.000000) + 1.964277.'199'(0.000000) + 2.145070.'200'(0.000000) + 0) <= 4.678425 ('134')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.242071.'146'(0.044234) + 1.693652.'141'(0.006573) + 1.853304.'133'(0.006573) + 0.418551.'132'(0.080095) + 0.384686.'129'(0.080095) + 1.623144.'127'(0.044234) + 1.451005.'120'(0.080095) + 0.644561.'117'(0.093227) + 0.966393.'117'(0.093227) + 1.500341.'111'(0.044234) + 1.661019.'107'(0.080095) + 0.627210.'130'(0.000000) + 2.256083.'135'(0.000000) + 0.903341.'139'(0.000000) + 1.619058.'143'(0.000000) + 2.050916.'149'(0.000000) + 1.608607.'152'(0.000000) + 0.612353.'153'(0.000000) + 2.620937.'164'(0.000000) + 1.033952.'164'(0.000000) + 2.512009.'172'(0.000000) + 0.753144.'174'(0.000000) + 2.175224.'177'(0.000000) + 2.510380.'185'(0.000000) + 1.034143.'194'(0.000000) + 2.530046.'198'(0.000000) + 1.063042.'198'(0.000000) + 0) <= 2.597448 ('151')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.120571.'154'(0.187080) + 1.952150.'154'(0.187080) + 0.934873.'133'(0.006573) + 1.536775.'128'(0.125579) + 2.152093.'126'(0.093227) + 1.604570.'117'(0.093227) + 1.302993.'115'(0.044234) + 0.795801.'113'(0.080095) + 0.932811.'107'(0.080095) + 1.596722.'122'(0.000000) + 1.379251.'137'(0.000000) + 1.748070.'143'(0.000000) + 0.672030.'149'(0.000000) + 2.526441.'152'(0.000000) + 1.892819.'158'(0.000000) + 0.898531.'158'(0.000000) + 1.544084.'163'(0.000000) + 2.221927.'166'(0.000000) + 0.996356.'171'(0.000000) + 0.331004.'183'(0.000000) + 1.324384.'186'(0.000000) + 1.217625.'186'(0.000000) + 1.568895.'196'(0.000000) + 2.511966.'199'(0.000000) + 0) <= 1.485648 ('128')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.144359.'178'(0.006573) + 1.410992.'154'(0.187080) + 1.710112.'146'(0.044234) + 0.481585.'136'(0.788434) + 2.285144.'128'(0.125579) + 0.694923.'123'(0.468422) + 1.210108.'121'(0.044234) + 1.303988.'117'(0.093227) + 1.854770.'107'(0.080095) + 1.920198.'135'(0.000000) + 0.222533.'138'(0.000000) + 0.831274.'142'(0.000000) + 1.109375.'147'(0.000000) + 2.641894.'162'(0.000000) + 1.080735.'166'(0.000000) + 2.195155.'167'(0.000000) + 0.354347.'174'(0.000000) + 0.917449.'179'(0.000000) + 2.639312.'186'(0.000000) + 1.679188.'187'(0.000000) + 1.734942.'189'(0.000000) + 0) <= 6.293597 ('190')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.523182.'120'(0.080095) + 1.532386.'117'(0.093227) + 0.947317.'116'(0.125579) + 2.029818.'110'(0.006573) + 1.282256.'109'(0.044234) + 1.122278.'108'(0.080095) + 2.020838.'108'(0.080095) + 1.374684.'107'(0.080095) + 0.855172.'125'(0.000000) + 1.604560.'135'(0.000000) + 1.447236.'137'(0.000000) + 2.564457.'143'(0.000000) + 0.486644.'149'(0.000000) + 0.895001.'150'(0.000000) + 1.304455.'158'(0.000000) + 1.183921.'176'(0.000000) + 0.956768.'180'(0.000000) + 1.580929.'183'(0.000000) + 1.721069.'187'(0.000000) + 1.315867.'193'(0.000000) + 0) <= 4.367473 ('133')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.191476.'181'(0.044234) + 2.282457.'154'(0.187080) + 1.285449.'136'(0.788434) + 1.894737.'133'(0.006573) + 0.803402.'129'(0.080095) + 3.618294.'129'(0.080095) + 1.802447.'126'(0.093227) + 2.346251.'124'(0.080095) + 0.906872.'123'(0.468422) + 0.605877.'119'(0.125579) + 2.804799.'119'(0.125579) + 2.462886.'118'(0.093227) + 1.387182.'109'(0.044234) + 3.114408.'109'(0.044234) + 1.267651.'108'(0.080095) + 2.630982.'122'(0.000000) + 0.448885.'122'(0.000000) + 1.511591.'135'(0.000000) + 1.902512.'139'(0.000000) + 1.261492.'145'(0.000000) + 0.845447.'159'(0.000000) + 0.750665.'164'(0.000000) + 0.871667.'185'(0.000000) + 1.444614.'192'(0.000000) + 2.562058.'199'(0.000000) + 0) <= 6.630618 ('125')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.519933.'178'(0.006573) + 1.554477.'141'(0.006573) + 1.874230.'133'(0.006573) + 1.747360.'118'(0.093227) + 1.732405.'114'(0.142396) + 0.748000.'108'(0.080095) + 1.425544.'125'(0.000000) + 1.331880.'139'(0.000000) + 0.702448.'143'(0.000000) + 1.851396.'145'(0.000000) + 2.048021.'147'(0.000000) + 2.236568.'152'(0.000000) + 0.700473.'167'(0.000000) + 2.505321.'177'(0.000000) + 1.033884.'182'(0.000000) + 0.857235.'188'(0.000000) + 2.561236.'190'(0.000000) + 2.422524.'191'(0.000000) + 0) <= 3.566243 ('147')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.926480.'178'(0.006573) + 0.703703.'157'(0.044234) + 2.221532.'154'(0.187080) + 1.685624.'132'(0.080095) + 2.387038.'129'(0.080095) + 1.266622.'108'(0.080095) + 2.038429.'138'(0.000000) + 1.373921.'144'(0.000000) + 2.744484.'150'(0.000000) + 2.062855.'153'(0.000000) + 1.110365.'162'(0.000000) + 1.827045.'167'(0.000000) + 1.316331.'170'(0.000000) + 2.019319.'172'(0.000000) + 1.452096.'175'(0.000000) + 0.428011.'184'(0.000000) + 2.187461.'188'(0.000000) + 1.196913.'196'(0.000000) + 0) <= 2.951723 ('191')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.104913.'136'(0.788434) + 1.321674.'126'(0.093227) + 1.301663.'123'(0.468422) + 1.126057.'119'(0.125579) + 1.381167.'117'(0.093227) + 1.015165.'115'(0.044234) + 1.359017.'113'(0.080095) + 2.061299.'112'(0.006573) + 1.706437.'110'(0.006573) + 1.979929.'108'(0.080095) + 1.516692.'144'(0.000000) + 1.301389.'165'(0.000000) + 2.293934.'177'(0.000000) + 2.629457.'182'(0.000000) + 1.035455.'182'(0.000000) + 0.874759.'183'(0.000000) + 2.446881.'186'(0.000000) + 1.433376.'186'(0.000000) + 0.674607.'187'(0.000000) + 2.223194.'189'(0.000000) + 1.560765.'196'(0.000000) + 1.656795.'199'(0.000000) + 0) <= 4.197355 ('179')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.683427.'156'(0.006573) + 1.055731.'133'(0.006573) + 2.338004.'132'(0.080095) + 0.616731.'127'(0.044234) + 1.136847.'119'(0.125579) + 0.995944.'110'(0.006573) + 2.799002.'110'(0.006573) + 2.315039.'109'(0.044234) + 1.794389.'134'(0.000000) + 0.730601.'143'(0.000000) + 0.292055.'144'(0.000000) + 1.917220.'155'(0.000000) + 2.835395.'161'(0.000000) + 0.756519.'167'(0.000000) + 1.254752.'186'(0.000000) + 0.515291.'188'(0.000000) + 2.142264.'192'(0.000000) + 1.319012.'195'(0.000000) + 0) <= 9.645511 ('129')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.620493.'181'(0.044234) + 2.887648.'157'(0.044234) + 1.026653.'146'(0.044234) + 2.217494.'127'(0.044234) + 1.403767.'121'(0.044234) + 1.812942.'115'(0.044234) + 2.488436.'111'(0.044234) + 1.722017.'109'(0.044234) + 1.507934.'145'(0.000000) + 0.684248.'147'(0.000000) + 1.511607.'149'(0.000000) + 1.149401.'150'(0.000000) + 1.250487.'151'(0.000000) + 1.917856.'155'(0.000000) + 1.796474.'163'(0.000000) + 1.738163.'164'(0.000000) + 0.584669.'169'(0.000000) + 1.309684.'172'(0.000000) + 1.799833.'175'(0.000000) + 0.522240.'176'(0.000000) + 1.007642.'177'(0.000000) + 1.628015.'180'(0.000000) + 2.552048.'187'(0.000000) + 0.886275.'192'(0.000000) + 1.456398.'199'(0.000000) + 0) <= 0.671444 ('141')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.949232.'181'(0.044234) + 3.062353.'181'(0.044234) + 1.377924.'178'(0.006573) + 0.913310.'146'(0.044234) + 0.944538.'132'(0.080095) + 1.618467.'131'(0.006573) + 1.236457.'123'(0.468422) + 2.230415.'116'(0.125579) + 1.419536.'114'(0.142396) + 2.427850.'113'(0.080095) + 1.030932.'109'(0.044234) + 1.265223.'142'(0.000000) + 1.265871.'152'(0.000000) + 2.219911.'161'(0.000000) + 1.046766.'163'(0.000000) + 1.169002.'167'(0.000000) + 1.848966.'169'(0.000000) + 0.500711.'175'(0.000000) + 1.532990.'176'(0.000000) + 1.910522.'182'(0.000000) + 1.067690.'191'(0.000000) + 1.244499.'195'(0.000000) + 0) <= 1.614666 ('200')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.769079.'157'(0.044234) + 1.048550.'136'(0.788434) + 0.692203.'120'(0.080095) + 0.370586.'117'(0.093227) + 2.266050.'109'(0.044234) + 2.598885.'149'(0.000000) + 2.353623.'153'(0.000000) + 0.630391.'159'(0.000000) + 0.811153.'160'(0.000000) + 2.907953.'162'(0.000000) + 1.179129.'162'(0.000000) + 1.288826.'164'(0.000000) + 1.527605.'168'(0.000000) + 0.981706.'169'(0.000000) + 2.144796.'174'(0.000000) + 1.122994.'177'(0.000000) + 1.174844.'188'(0.000000) + 1.060947.'190'(0.000000) + 1.257881.'193'(0.000000) + 1.420841.'194'(0.000000) + 1.925011.'196'(0.000000) + 2.194755.'200'(0.000000) + 0) <= 8.182267 ('108')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.621348.'178'(0.006573) + 0.186934.'157'(0.044234) + 1.218556.'141'(0.006573) + 0.877338.'132'(0.080095) + 1.216014.'116'(0.125579) + 0.442531.'114'(0.142396) + 2.882380.'114'(0.142396) + 0.495798.'112'(0.006573) + 1.067537.'109'(0.044234) + 0.762595.'122'(0.000000) + 1.404421.'138'(0.000000) + 1.128510.'143'(0.000000) + 2.057733.'145'(0.000000) + 0.699267.'160'(0.000000) + 0.834368.'163'(0.000000) + 2.242216.'165'(0.000000) + 1.629621.'167'(0.000000) + 1.686753.'176'(0.000000) + 2.555356.'177'(0.000000) + 0.383730.'190'(0.000000) + 1.027224.'192'(0.000000) + 1.267400.'196'(0.000000) + 0.840786.'198'(0.000000) + 1.878909.'199'(0.000000) + 1.710821.'200'(0.000000) + 0) <= 8.951457 ('178')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.048963.'181'(0.044234) + 2.594041.'181'(0.044234) + 1.051091.'178'(0.006573) + 1.161794.'136'(0.788434) + 1.987777.'133'(0.006573) + 1.682603.'132'(0.080095) + 1.788536.'128'(0.125579) + 1.779188.'121'(0.044234) + 1.526591.'110'(0.006573) + 1.847849.'144'(0.000000) + 2.036464.'158'(0.000000) + 1.551607.'164'(0.000000) + 1.147550.'169'(0.000000) + 0.949058.'173'(0.000000) + 1.465067.'174'(0.000000) + 2.365833.'176'(0.000000) + 1.341048.'179'(0.000000) + 1.299245.'194'(0.000000) + 1.309585.'198'(0.000000) + 0) <= 7.936375 ('126')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.343719.'156'(0.006573) + 1.751623.'132'(0.080095) + 1.234351.'123'(0.468422) + 1.490744.'120'(0.080095) + 2.365799.'118'(0.093227) + 2.739711.'116'(0.125579) + 1.632418.'110'(0.006573) + 1.649615.'134'(0.000000) + 1.309043.'144'(0.000000) + 1.013174.'149'(0.000000) + 1.745304.'151'(0.000000) + 0.780178.'159'(0.000000) + 2.268712.'165'(0.000000) + 1.138333.'169'(0.000000) + 2.207712.'170'(0.000000) + 1.189419.'174'(0.000000) + 1.712372.'176'(0.000000) + 1.539847.'177'(0.000000) + 1.547292.'179'(0.000000) + 2.781864.'183'(0.000000) + 0.940050.'183'(0.000000) + 0.358077.'184'(0.000000) + 0.768068.'186'(0.000000) + 1.013228.'189'(0.000000) + 1.506872.'190'(0.000000) + 1.524577.'191'(0.000000) + 1.399217.'197'(0.000000) + 1.934920.'199'(0.000000) + 0) <= 4.073078 ('113')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.572410.'146'(0.044234) + 1.586248.'141'(0.006573) + 2.535224.'129'(0.080095) + 1.353952.'124'(0.080095) + 0.523659.'121'(0.044234) + 2.040275.'115'(0.044234) + 1.782459.'114'(0.142396) + 0.956299.'110'(0.006573) + 1.742378.'130'(0.000000) + 0.783543.'134'(0.000000) + 1.098399.'135'(0.000000) + 2.190297.'137'(0.000000) + 2.582353.'138'(0.000000) + 0.878158.'140'(0.000000) + 1.765990.'149'(0.000000) + 1.051855.'150'(0.000000) + 1.631497.'153'(0.000000) + 1.598539.'166'(0.000000) + 1.656169.'171'(0.000000) + 0.421557.'171'(0.000000) + 1.452877.'174'(0.000000) + 1.233593.'176'(0.000000) + 1.399907.'179'(0.000000) + 1.550680.'182'(0.000000) + 1.256761.'184'(0.000000) + 1.665016.'188'(0.000000) + 1.784692.'189'(0.000000) + 0.473424.'189'(0.000000) + 0.788897.'197'(0.000000) + 1.596575.'200'(0.000000) + 0) <= 2.970184 ('115')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.213544.'146'(0.044234) + 1.532525.'127'(0.044234) + 0.427397.'119'(0.125579) + 1.422920.'118'(0.093227) + 2.647657.'110'(0.006573) + 1.397317.'122'(0.000000) + 1.787444.'138'(0.000000) + 2.015154.'144'(0.000000) + 2.343522.'158'(0.000000) + 1.919484.'164'(0.000000) + 1.071371.'169'(0.000000) + 1.299777.'180'(0.000000) + 2.346711.'186'(0.000000) + 2.000317.'187'(0.000000) + 2.229100.'189'(0.000000) + 2.001809.'194'(0.000000) + 1.714312.'196'(0.000000) + 1.812991.'197'(0.000000) + 2.817329.'198'(0.000000) + 0.721766.'198'(0.000000) + 0.336199.'200'(0.000000) + 0) <= 9.480904 ('137')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.982857.'136'(0.788434) + 2.485934.'121'(0.044234) + 1.427843.'120'(0.080095) + 1.016670.'115'(0.044234) + 1.737139.'112'(0.006573) + 1.636861.'122'(0.000000) + 2.057161.'134'(0.000000) + 1.811295.'138'(0.000000) + 1.616269.'142'(0.000000) + 1.850457.'148'(0.000000) + 2.348076.'151'(0.000000) + 2.688700.'152'(0.000000) + 2.209898.'153'(0.000000) + 0.233155.'153'(0.000000) + 1.064474.'167'(0.000000) + 1.124668.'168'(0.000000) + 1.898826.'175'(0.000000) + 2.237685.'180'(0.000000) + 0.349859.'182'(0.000000) + 2.164164.'185'(0.000000) + 2.367319.'188'(0.000000) + 1.376298.'192'(0.000000) + 2.402276.'195'(0.000000) + 0) <= 3.462379 ('177')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.933551.'133'(0.006573) + 0.676591.'131'(0.006573) + 2.564258.'121'(0.044234) + 1.154168.'115'(0.044234) + 1.955853.'114'(0.142396) + 0.425964.'122'(0.000000) + 0.831636.'138'(0.000000) + 0.653588.'147'(0.000000) + 2.247081.'148'(0.000000) + 0.771407.'149'(0.000000) + 1.781544.'153'(0.000000) + 2.296339.'167'(0.000000) + 0.714518.'174'(0.000000) + 1.596788.'175'(0.000000) + 1.655182.'180'(0.000000) + 1.368243.'183'(0.000000) + 0.791356.'193'(0.000000) + 0.902708.'199'(0.000000) + 0) <= 4.686736 ('123')
-> [0.000000]: [surf_maxmin/DEBUG]      (0.801449.'146'(0.044234) + 1.058976.'131'(0.006573) + 1.355089.'129'(0.080095) + 0.207605.'128'(0.125579) + 1.492094.'120'(0.080095) + 1.201001.'118'(0.093227) + 1.330124.'116'(0.125579) + 2.500418.'130'(0.000000) + 1.364227.'138'(0.000000) + 2.365679.'148'(0.000000) + 1.804827.'149'(0.000000) + 0.202294.'151'(0.000000) + 0.620938.'152'(0.000000) + 1.240604.'162'(0.000000) + 1.904059.'168'(0.000000) + 1.303241.'171'(0.000000) + 1.590560.'180'(0.000000) + 0.768038.'184'(0.000000) + 0.345055.'195'(0.000000) + 1.577548.'196'(0.000000) + 2.356737.'197'(0.000000) + 0) <= 2.754379 ('197')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.048644.'178'(0.006573) + 0.938948.'157'(0.044234) + 0.730708.'146'(0.044234) + 1.525860.'132'(0.080095) + 2.027490.'123'(0.468422) + 1.419058.'118'(0.093227) + 1.960421.'130'(0.000000) + 0.155360.'135'(0.000000) + 0.823425.'144'(0.000000) + 1.280530.'145'(0.000000) + 1.387016.'149'(0.000000) + 1.337360.'150'(0.000000) + 1.712563.'151'(0.000000) + 1.101667.'158'(0.000000) + 2.455372.'159'(0.000000) + 2.436143.'165'(0.000000) + 0.505747.'166'(0.000000) + 1.395778.'172'(0.000000) + 1.919610.'175'(0.000000) + 1.568943.'183'(0.000000) + 2.764253.'184'(0.000000) + 1.496593.'188'(0.000000) + 1.131883.'196'(0.000000) + 1.204626.'198'(0.000000) + 0) <= 8.262498 ('181')
-> [0.000000]: [surf_maxmin/DEBUG]      (2.003371.'156'(0.006573) + 1.196653.'121'(0.044234) + 2.727363.'159'(0.000000) + 1.392364.'160'(0.000000) + 0.422932.'160'(0.000000) + 0.895474.'164'(0.000000) + 1.701311.'165'(0.000000) + 1.143587.'167'(0.000000) + 2.050506.'173'(0.000000) + 1.699907.'175'(0.000000) + 1.115891.'179'(0.000000) + 2.224623.'188'(0.000000) + 2.172114.'189'(0.000000) + 0.162931.'189'(0.000000) + 1.007320.'193'(0.000000) + 1.132002.'193'(0.000000) + 0.470256.'195'(0.000000) + 0) <= 8.072111 ('176')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.916112.'157'(0.044234) + 1.227966.'146'(0.044234) + 1.499970.'141'(0.006573) + 0.775199.'121'(0.044234) + 1.613763.'142'(0.000000) + 1.025678.'147'(0.000000) + 1.326996.'153'(0.000000) + 1.965814.'155'(0.000000) + 1.184417.'155'(0.000000) + 2.214742.'163'(0.000000) + 1.193177.'172'(0.000000) + 2.303894.'177'(0.000000) + 1.623380.'183'(0.000000) + 2.077884.'185'(0.000000) + 2.170289.'189'(0.000000) + 1.440668.'192'(0.000000) + 2.051578.'198'(0.000000) + 0) <= 0.488681 ('198')
-> [0.000000]: [surf_maxmin/DEBUG]      (1.388822.'141'(0.006573) + 1.568598.'133'(0.006573) + 1.696333.'123'(0.468422) + 2.469580.'134'(0.000000) + 1.962807.'140'(0.000000) + 1.142159.'147'(0.000000) + 1.739371.'151'(0.000000) + 0.569391.'152'(0.000000) + 2.437737.'153'(0.000000) + 0.807530.'161'(0.000000) + 1.542964.'175'(0.000000) + 2.013315.'186'(0.000000) + 2.547993.'188'(0.000000) + 1.383158.'196'(0.000000) + 2.034516.'198'(0.000000) + 2.258494.'199'(0.000000) + 0) <= 4.353224 ('103')
-> [0.000000]: [surf_maxmin/DEBUG] Variables
-> [0.000000]: [surf_maxmin/DEBUG] '181'(1.000000) : 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] '178'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '157'(1.000000) : 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] '156'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '154'(1.000000) : 0.187080
-> [0.000000]: [surf_maxmin/DEBUG] '146'(1.000000) : 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] '141'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '136'(1.000000) : 0.788434
-> [0.000000]: [surf_maxmin/DEBUG] '133'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '132'(1.000000) : 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] '131'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '129'(1.000000) : 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] '128'(1.000000) : 0.125579
-> [0.000000]: [surf_maxmin/DEBUG] '127'(1.000000) : 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] '126'(1.000000) : 0.093227
-> [0.000000]: [surf_maxmin/DEBUG] '124'(1.000000) : 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] '123'(1.000000) : 0.468422
-> [0.000000]: [surf_maxmin/DEBUG] '121'(1.000000) : 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] '120'(1.000000) : 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] '119'(1.000000) : 0.125579
-> [0.000000]: [surf_maxmin/DEBUG] '118'(1.000000) : 0.093227
-> [0.000000]: [surf_maxmin/DEBUG] '117'(1.000000) : 0.093227
-> [0.000000]: [surf_maxmin/DEBUG] '116'(1.000000) : 0.125579
-> [0.000000]: [surf_maxmin/DEBUG] '115'(1.000000) : 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] '114'(1.000000) : 0.142396
-> [0.000000]: [surf_maxmin/DEBUG] '113'(1.000000) : 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] '112'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '111'(1.000000) : 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] '110'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '109'(1.000000) : 0.044234
-> [0.000000]: [surf_maxmin/DEBUG] '108'(1.000000) : 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] '107'(1.000000) : 0.080095
-> [0.000000]: [surf_maxmin/DEBUG] '106'(1.000000) : 0.142396
-> [0.000000]: [surf_maxmin/DEBUG] '105'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '104'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '103'(1.000000) : 0.093227
-> [0.000000]: [surf_maxmin/DEBUG] '102'(1.000000) : 0.006573
-> [0.000000]: [surf_maxmin/DEBUG] '101'(1.000000) : 0.187080
-> [0.000000]: [surf_maxmin/DEBUG] '122'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '125'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '130'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '134'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '135'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '137'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '138'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '139'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '140'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '142'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '143'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '144'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '145'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '147'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '148'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '149'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '150'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '151'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '152'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '153'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '155'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '158'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '159'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '160'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '161'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '162'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '163'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '164'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '165'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '166'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '167'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '168'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '169'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '170'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '171'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '172'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '173'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '174'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '175'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '176'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '177'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '179'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '180'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '182'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '183'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '184'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '185'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '186'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '187'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '188'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '189'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '190'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '191'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '192'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '193'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '194'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '195'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '196'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '197'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '198'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '199'(0.000000) : 0.000000
-> [0.000000]: [surf_maxmin/DEBUG] '200'(0.000000) : 0.000000
+> [0.000000]: [ker_lmm/DEBUG] Active constraints : 100
+> [0.000000]: [ker_lmm/DEBUG] Constraint '196' usage: 7.460735 remaining: 5.494968 concurrency: 4<=5<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '194' usage: 15.447986 remaining: 2.149244 concurrency: 8<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '158' usage: 11.030926 remaining: 3.633259 concurrency: 5<=6<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '102' usage: 7.632282 remaining: 9.315409 concurrency: 5<=6<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '170' usage: 11.199829 remaining: 5.321444 concurrency: 7<=7<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '163' usage: 11.665940 remaining: 1.127762 concurrency: 7<=8<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '166' usage: 14.229269 remaining: 6.575124 concurrency: 7<=7<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '164' usage: 21.986404 remaining: 9.624596 concurrency: 12<=13<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '117' usage: 2.842785 remaining: 0.965309 concurrency: 1<=2<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '107' usage: 16.957631 remaining: 2.668273 concurrency: 9<=10<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '118' usage: 12.786024 remaining: 1.271600 concurrency: 7<=8<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '150' usage: 21.257036 remaining: 8.844716 concurrency: 11<=12<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '146' usage: 14.843037 remaining: 4.260225 concurrency: 8<=9<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '122' usage: 15.120533 remaining: 4.677875 concurrency: 9<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '160' usage: 15.993199 remaining: 9.144756 concurrency: 8<=9<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '109' usage: 16.544658 remaining: 1.345799 concurrency: 10<=11<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '169' usage: 7.320898 remaining: 7.861722 concurrency: 4<=5<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '188' usage: 13.829839 remaining: 8.522890 concurrency: 6<=7<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '121' usage: 21.483217 remaining: 5.773081 concurrency: 12<=13<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '182' usage: 13.099475 remaining: 8.963739 concurrency: 6<=7<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '153' usage: 14.213518 remaining: 7.367471 concurrency: 7<=8<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '111' usage: 16.569232 remaining: 7.197542 concurrency: 10<=11<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '143' usage: 20.780876 remaining: 8.002584 concurrency: 11<=12<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '119' usage: 14.969968 remaining: 5.657651 concurrency: 8<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '174' usage: 18.097226 remaining: 1.065725 concurrency: 9<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '132' usage: 14.784336 remaining: 2.587332 concurrency: 7<=7<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '131' usage: 12.257204 remaining: 3.416137 concurrency: 5<=6<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '186' usage: 12.970468 remaining: 2.458112 concurrency: 8<=9<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '124' usage: 9.788928 remaining: 4.830698 concurrency: 4<=5<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '173' usage: 11.128553 remaining: 7.487779 concurrency: 6<=7<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '156' usage: 9.917764 remaining: 2.693888 concurrency: 4<=6<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '138' usage: 19.254342 remaining: 8.508505 concurrency: 10<=11<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '180' usage: 17.339929 remaining: 9.177187 concurrency: 9<=10<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '106' usage: 18.191446 remaining: 1.199505 concurrency: 11<=12<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '189' usage: 15.595341 remaining: 0.102500 concurrency: 9<=10<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '114' usage: 11.717419 remaining: 0.796455 concurrency: 6<=7<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '184' usage: 20.396139 remaining: 4.892662 concurrency: 11<=12<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '127' usage: 22.819742 remaining: 1.194848 concurrency: 10<=11<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '159' usage: 16.698927 remaining: 3.875234 concurrency: 9<=10<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '120' usage: 18.931303 remaining: 1.069457 concurrency: 10<=10<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '171' usage: 24.615031 remaining: 7.780082 concurrency: 10<=11<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '104' usage: 13.954262 remaining: 3.205364 concurrency: 7<=8<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '155' usage: 12.488181 remaining: 3.557536 concurrency: 7<=8<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '161' usage: 16.382919 remaining: 3.508719 concurrency: 9<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '192' usage: 13.459399 remaining: 1.872865 concurrency: 6<=7<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '167' usage: 16.079701 remaining: 2.293860 concurrency: 8<=9<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '144' usage: 12.032338 remaining: 7.065420 concurrency: 6<=7<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '142' usage: 22.624121 remaining: 9.411933 concurrency: 9<=10<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '135' usage: 23.733429 remaining: 9.537422 concurrency: 13<=13<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '130' usage: 16.103797 remaining: 2.172699 concurrency: 9<=10<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '172' usage: 16.258581 remaining: 4.768434 concurrency: 9<=9<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '136' usage: 9.539826 remaining: 8.141384 concurrency: 5<=6<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '183' usage: 11.567474 remaining: 8.378305 concurrency: 7<=8<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '187' usage: 6.755927 remaining: 4.637426 concurrency: 4<=5<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '175' usage: 15.489675 remaining: 2.208379 concurrency: 8<=9<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '165' usage: 20.164500 remaining: 6.470142 concurrency: 10<=10<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '193' usage: 15.639750 remaining: 8.799904 concurrency: 8<=9<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '185' usage: 15.345313 remaining: 3.972540 concurrency: 8<=8<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '152' usage: 11.704423 remaining: 3.939333 concurrency: 8<=9<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '116' usage: 8.774370 remaining: 2.878688 concurrency: 2<=3<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '157' usage: 10.916696 remaining: 8.783003 concurrency: 6<=7<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '199' usage: 13.665900 remaining: 3.350947 concurrency: 8<=9<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '154' usage: 12.731271 remaining: 3.792106 concurrency: 7<=8<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '145' usage: 8.623130 remaining: 1.692254 concurrency: 5<=6<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '168' usage: 16.818720 remaining: 6.438419 concurrency: 7<=7<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '149' usage: 15.425922 remaining: 4.413549 concurrency: 7<=8<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '140' usage: 11.685460 remaining: 7.466314 concurrency: 7<=8<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '101' usage: 10.415850 remaining: 1.850821 concurrency: 5<=6<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '195' usage: 9.231517 remaining: 2.738379 concurrency: 5<=6<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '105' usage: 9.169967 remaining: 2.046486 concurrency: 4<=5<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '110' usage: 21.512903 remaining: 5.867970 concurrency: 10<=11<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '139' usage: 10.405104 remaining: 2.209982 concurrency: 6<=6<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '148' usage: 15.766921 remaining: 9.326286 concurrency: 7<=8<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '112' usage: 12.653327 remaining: 8.539753 concurrency: 7<=8<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '162' usage: 15.085808 remaining: 6.308427 concurrency: 9<=9<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '134' usage: 9.715478 remaining: 4.678425 concurrency: 6<=7<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '151' usage: 13.438726 remaining: 2.597448 concurrency: 7<=9<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '128' usage: 12.332636 remaining: 1.485648 concurrency: 6<=8<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '190' usage: 13.095980 remaining: 6.293597 concurrency: 7<=8<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '133' usage: 11.832758 remaining: 4.367473 concurrency: 7<=8<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '125' usage: 27.774189 remaining: 6.630618 concurrency: 12<=13<=24
+> [0.000000]: [ker_lmm/DEBUG] Constraint '147' usage: 9.176406 remaining: 3.566243 concurrency: 5<=5<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '191' usage: 10.190998 remaining: 2.951723 concurrency: 5<=6<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '179' usage: 14.357321 remaining: 4.197355 concurrency: 10<=11<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '129' usage: 12.940725 remaining: 9.645511 concurrency: 6<=7<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '141' usage: 15.179451 remaining: 0.671444 concurrency: 8<=9<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '200' usage: 17.211013 remaining: 1.614666 concurrency: 8<=8<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '108' usage: 6.146468 remaining: 8.182267 concurrency: 3<=4<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '178' usage: 10.008436 remaining: 8.951457 concurrency: 5<=6<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '126' usage: 13.620583 remaining: 7.936375 concurrency: 8<=9<=10
+> [0.000000]: [ker_lmm/DEBUG] Constraint '113' usage: 13.558365 remaining: 4.073078 concurrency: 7<=8<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '115' usage: 12.350525 remaining: 2.970184 concurrency: 6<=7<=-1
+> [0.000000]: [ker_lmm/DEBUG] Constraint '137' usage: 8.244042 remaining: 9.480904 concurrency: 4<=5<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '177' usage: 8.650443 remaining: 3.462379 concurrency: 5<=6<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '123' usage: 7.284421 remaining: 4.686736 concurrency: 3<=4<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '197' usage: 7.446337 remaining: 2.754379 concurrency: 5<=6<=12
+> [0.000000]: [ker_lmm/DEBUG] Constraint '181' usage: 7.690708 remaining: 8.262498 concurrency: 4<=5<=9
+> [0.000000]: [ker_lmm/DEBUG] Constraint '176' usage: 3.200025 remaining: 8.072111 concurrency: 2<=3<=40
+> [0.000000]: [ker_lmm/DEBUG] Constraint '198' usage: 5.419247 remaining: 0.488681 concurrency: 3<=4<=16
+> [0.000000]: [ker_lmm/DEBUG] Constraint '103' usage: 4.653753 remaining: 4.353224 concurrency: 3<=4<=12
+> [0.000000]: [ker_lmm/DEBUG] var=102, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=104, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=105, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=110, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=112, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=131, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=133, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=141, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=156, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=178, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.006573, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (102) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(102).penalty: 1.000000, Var(102).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] Setting var (104) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(104).penalty: 1.000000, Var(104).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] Setting var (105) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(105).penalty: 1.000000, Var(105).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] Setting var (110) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(110).penalty: 1.000000, Var(110).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] Setting var (112) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(112).penalty: 1.000000, Var(112).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] Setting var (131) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(131).penalty: 1.000000, Var(131).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] Setting var (133) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(133).penalty: 1.000000, Var(133).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] Setting var (141) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(141).penalty: 1.000000, Var(141).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] Setting var (156) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(156).penalty: 1.000000, Var(156).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] Setting var (178) value to 0.006573
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.006573, Var(178).penalty: 1.000000, Var(178).value: 0.006573
+> [0.000000]: [ker_lmm/DEBUG] index: 34         cnst_light_num: 100     || usage: 0.000000 remaining: 0.000000 bound: 0.102500
+> [0.000000]: [ker_lmm/DEBUG] var=109, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=111, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=115, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=121, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=127, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=146, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=157, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=181, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.044234, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (109) value to 0.044234
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.044234, Var(109).penalty: 1.000000, Var(109).value: 0.044234
+> [0.000000]: [ker_lmm/DEBUG] Setting var (111) value to 0.044234
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.044234, Var(111).penalty: 1.000000, Var(111).value: 0.044234
+> [0.000000]: [ker_lmm/DEBUG] Setting var (115) value to 0.044234
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.044234, Var(115).penalty: 1.000000, Var(115).value: 0.044234
+> [0.000000]: [ker_lmm/DEBUG] Setting var (121) value to 0.044234
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.044234, Var(121).penalty: 1.000000, Var(121).value: 0.044234
+> [0.000000]: [ker_lmm/DEBUG] index: 97         cnst_light_num: 99      || usage: 0.000000 remaining: 8.006012 bound: 8.072111
+> [0.000000]: [ker_lmm/DEBUG] Setting var (127) value to 0.044234
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.044234, Var(127).penalty: 1.000000, Var(127).value: 0.044234
+> [0.000000]: [ker_lmm/DEBUG] Setting var (146) value to 0.044234
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.044234, Var(146).penalty: 1.000000, Var(146).value: 0.044234
+> [0.000000]: [ker_lmm/DEBUG] Setting var (157) value to 0.044234
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.044234, Var(157).penalty: 1.000000, Var(157).value: 0.044234
+> [0.000000]: [ker_lmm/DEBUG] index: 97         cnst_light_num: 98      || usage: 0.000000 remaining: 0.305458 bound: 0.488681
+> [0.000000]: [ker_lmm/DEBUG] Setting var (181) value to 0.044234
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.044234, Var(181).penalty: 1.000000, Var(181).value: 0.044234
+> [0.000000]: [ker_lmm/DEBUG] index: 85         cnst_light_num: 97      || usage: 0.000000 remaining: 0.000000 bound: 0.671444
+> [0.000000]: [ker_lmm/DEBUG] var=107, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=108, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=113, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=120, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=124, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=129, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=132, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.080095, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (107) value to 0.080095
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.080095, Var(107).penalty: 1.000000, Var(107).value: 0.080095
+> [0.000000]: [ker_lmm/DEBUG] Setting var (108) value to 0.080095
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.080095, Var(108).penalty: 1.000000, Var(108).value: 0.080095
+> [0.000000]: [ker_lmm/DEBUG] Setting var (113) value to 0.080095
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.080095, Var(113).penalty: 1.000000, Var(113).value: 0.080095
+> [0.000000]: [ker_lmm/DEBUG] Setting var (120) value to 0.080095
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.080095, Var(120).penalty: 1.000000, Var(120).value: 0.080095
+> [0.000000]: [ker_lmm/DEBUG] Setting var (124) value to 0.080095
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.080095, Var(124).penalty: 1.000000, Var(124).value: 0.080095
+> [0.000000]: [ker_lmm/DEBUG] index: 71         cnst_light_num: 96      || usage: 0.000000 remaining: 1.607527 bound: 2.209982
+> [0.000000]: [ker_lmm/DEBUG] Setting var (129) value to 0.080095
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.080095, Var(129).penalty: 1.000000, Var(129).value: 0.080095
+> [0.000000]: [ker_lmm/DEBUG] Setting var (132) value to 0.080095
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.080095, Var(132).penalty: 1.000000, Var(132).value: 0.080095
+> [0.000000]: [ker_lmm/DEBUG] index: 37         cnst_light_num: 95      || usage: 0.000000 remaining: 0.000000 bound: 1.194848
+> [0.000000]: [ker_lmm/DEBUG] var=103, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.093227, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=117, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.093227, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=118, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.093227, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=126, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.093227, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (103) value to 0.093227
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.093227, Var(103).penalty: 1.000000, Var(103).value: 0.093227
+> [0.000000]: [ker_lmm/DEBUG] Setting var (117) value to 0.093227
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.093227, Var(117).penalty: 1.000000, Var(117).value: 0.093227
+> [0.000000]: [ker_lmm/DEBUG] index: 76         cnst_light_num: 94      || usage: 0.000000 remaining: 1.917254 bound: 2.597448
+> [0.000000]: [ker_lmm/DEBUG] Setting var (118) value to 0.093227
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.093227, Var(118).penalty: 1.000000, Var(118).value: 0.093227
+> [0.000000]: [ker_lmm/DEBUG] index: 29         cnst_light_num: 93      || usage: 0.000000 remaining: 7.173610 bound: 7.487779
+> [0.000000]: [ker_lmm/DEBUG] index: 74         cnst_light_num: 92      || usage: 0.000000 remaining: 5.407273 bound: 6.308427
+> [0.000000]: [ker_lmm/DEBUG] Setting var (126) value to 0.093227
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.093227, Var(126).penalty: 1.000000, Var(126).value: 0.093227
+> [0.000000]: [ker_lmm/DEBUG] index: 39         cnst_light_num: 91      || usage: 0.000000 remaining: 0.000000 bound: 1.069457
+> [0.000000]: [ker_lmm/DEBUG] index: 53         cnst_light_num: 90      || usage: 0.000000 remaining: 4.047456 bound: 4.637426
+> [0.000000]: [ker_lmm/DEBUG] var=116, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.125579, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=119, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.125579, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=128, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.125579, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (116) value to 0.125579
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.125579, Var(116).penalty: 1.000000, Var(116).value: 0.125579
+> [0.000000]: [ker_lmm/DEBUG] index: 23         cnst_light_num: 89      || usage: 0.000000 remaining: 4.807236 bound: 5.657651
+> [0.000000]: [ker_lmm/DEBUG] index: 79         cnst_light_num: 88      || usage: 0.000000 remaining: 3.551739 bound: 4.367473
+> [0.000000]: [ker_lmm/DEBUG] Setting var (119) value to 0.125579
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.125579, Var(119).penalty: 1.000000, Var(119).value: 0.125579
+> [0.000000]: [ker_lmm/DEBUG] index: 29         cnst_light_num: 87      || usage: 0.000000 remaining: 9.111474 bound: 9.480904
+> [0.000000]: [ker_lmm/DEBUG] index: 60         cnst_light_num: 86      || usage: 0.000000 remaining: 8.206631 bound: 8.783003
+> [0.000000]: [ker_lmm/DEBUG] index: 84         cnst_light_num: 85      || usage: 0.000000 remaining: 9.142856 bound: 9.645511
+> [0.000000]: [ker_lmm/DEBUG] index: 44         cnst_light_num: 84      || usage: 0.000000 remaining: 1.147453 bound: 1.872865
+> [0.000000]: [ker_lmm/DEBUG] index: 49         cnst_light_num: 83      || usage: 0.000000 remaining: 1.044083 bound: 2.172699
+> [0.000000]: [ker_lmm/DEBUG] index: 30         cnst_light_num: 82      || usage: 0.000000 remaining: 1.908915 bound: 2.693888
+> [0.000000]: [ker_lmm/DEBUG] Setting var (128) value to 0.125579
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.125579, Var(128).penalty: 1.000000, Var(128).value: 0.125579
+> [0.000000]: [ker_lmm/DEBUG] index: 51         cnst_light_num: 81      || usage: 0.000000 remaining: 7.421856 bound: 8.141384
+> [0.000000]: [ker_lmm/DEBUG] index: 71         cnst_light_num: 80      || usage: 0.000000 remaining: 2.178851 bound: 2.754379
+> [0.000000]: [ker_lmm/DEBUG] index: 75         cnst_light_num: 79      || usage: 0.000000 remaining: 3.933665 bound: 4.678425
+> [0.000000]: [ker_lmm/DEBUG] index: 52         cnst_light_num: 78      || usage: 0.000000 remaining: 7.680517 bound: 8.378305
+> [0.000000]: [ker_lmm/DEBUG] index: 24         cnst_light_num: 77      || usage: 0.000000 remaining: 0.000000 bound: 1.065725
+> [0.000000]: [ker_lmm/DEBUG] var=106, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.142396, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=114, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.142396, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (106) value to 0.142396
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.142396, Var(106).penalty: 1.000000, Var(106).value: 0.142396
+> [0.000000]: [ker_lmm/DEBUG] index: 50         cnst_light_num: 76      || usage: 0.000000 remaining: 3.625189 bound: 4.768434
+> [0.000000]: [ker_lmm/DEBUG] index: 32         cnst_light_num: 75      || usage: 0.000000 remaining: 8.349213 bound: 9.177187
+> [0.000000]: [ker_lmm/DEBUG] index: 69         cnst_light_num: 74      || usage: 0.000000 remaining: 1.402286 bound: 2.046486
+> [0.000000]: [ker_lmm/DEBUG] index: 42         cnst_light_num: 73      || usage: 0.000000 remaining: 2.903159 bound: 3.557536
+> [0.000000]: [ker_lmm/DEBUG] index: 47         cnst_light_num: 72      || usage: 0.000000 remaining: 8.034610 bound: 9.411933
+> [0.000000]: [ker_lmm/DEBUG] Setting var (114) value to 0.142396
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.142396, Var(114).penalty: 1.000000, Var(114).value: 0.142396
+> [0.000000]: [ker_lmm/DEBUG] index: 33         cnst_light_num: 71      || usage: 0.000000 remaining: 0.000000 bound: 1.199505
+> [0.000000]: [ker_lmm/DEBUG] index: 62         cnst_light_num: 70      || usage: 0.000000 remaining: 3.059841 bound: 3.792106
+> [0.000000]: [ker_lmm/DEBUG] index: 23         cnst_light_num: 69      || usage: 0.000000 remaining: 8.177615 bound: 8.951457
+> [0.000000]: [ker_lmm/DEBUG] index: 32         cnst_light_num: 68      || usage: 0.000000 remaining: 2.205190 bound: 2.970184
+> [0.000000]: [ker_lmm/DEBUG] index: 23         cnst_light_num: 67      || usage: 0.000000 remaining: 1.931792 bound: 2.738379
+> [0.000000]: [ker_lmm/DEBUG] index: 30         cnst_light_num: 66      || usage: 0.000000 remaining: 3.064219 bound: 3.566243
+> [0.000000]: [ker_lmm/DEBUG] index: 57         cnst_light_num: 65      || usage: 0.000000 remaining: 2.898415 bound: 3.972540
+> [0.000000]: [ker_lmm/DEBUG] index: 37         cnst_light_num: 64      || usage: 0.000000 remaining: 4.233168 bound: 4.686736
+> [0.000000]: [ker_lmm/DEBUG] index: 30         cnst_light_num: 63      || usage: 0.000000 remaining: 3.411989 bound: 4.413549
+> [0.000000]: [ker_lmm/DEBUG] var=101, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.187080, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] var=154, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.187080, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (101) value to 0.187080
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.187080, Var(101).penalty: 1.000000, Var(101).value: 0.187080
+> [0.000000]: [ker_lmm/DEBUG] index: 0          cnst_light_num: 62      || usage: 0.000000 remaining: 4.543074 bound: 5.494968
+> [0.000000]: [ker_lmm/DEBUG] index: 8          cnst_light_num: 61      || usage: 0.000000 remaining: 0.672839 bound: 0.965309
+> [0.000000]: [ker_lmm/DEBUG] index: 10         cnst_light_num: 60      || usage: 0.000000 remaining: 0.594432 bound: 1.271600
+> [0.000000]: [ker_lmm/DEBUG] index: 16         cnst_light_num: 59      || usage: 0.000000 remaining: 7.198298 bound: 7.861722
+> [0.000000]: [ker_lmm/DEBUG] index: 7          cnst_light_num: 58      || usage: 0.000000 remaining: 7.691813 bound: 9.624596
+> [0.000000]: [ker_lmm/DEBUG] index: 18         cnst_light_num: 57      || usage: 0.000000 remaining: 4.594752 bound: 5.773081
+> [0.000000]: [ker_lmm/DEBUG] index: 21         cnst_light_num: 56      || usage: 0.000000 remaining: 6.130917 bound: 7.197542
+> [0.000000]: [ker_lmm/DEBUG] Setting var (154) value to 0.187080
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.187080, Var(154).penalty: 1.000000, Var(154).value: 0.187080
+> [0.000000]: [ker_lmm/DEBUG] index: 35         cnst_light_num: 55      || usage: 0.000000 remaining: 0.222965 bound: 0.796455
+> [0.000000]: [ker_lmm/DEBUG] index: 23         cnst_light_num: 54      || usage: 0.000000 remaining: 6.400720 bound: 7.466314
+> [0.000000]: [ker_lmm/DEBUG] index: 3          cnst_light_num: 53      || usage: 0.000000 remaining: 8.401680 bound: 9.315409
+> [0.000000]: [ker_lmm/DEBUG] index: 41         cnst_light_num: 52      || usage: 0.000000 remaining: 2.310077 bound: 3.205364
+> [0.000000]: [ker_lmm/DEBUG] index: 48         cnst_light_num: 51      || usage: 0.000000 remaining: 8.149738 bound: 9.537422
+> [0.000000]: [ker_lmm/DEBUG] index: 49         cnst_light_num: 50      || usage: 0.000000 remaining: 2.064680 bound: 2.951723
+> [0.000000]: [ker_lmm/DEBUG] index: 18         cnst_light_num: 49      || usage: 0.000000 remaining: 7.914012 bound: 8.799904
+> [0.000000]: [ker_lmm/DEBUG] index: 30         cnst_light_num: 48      || usage: 0.000000 remaining: 7.601579 bound: 8.539753
+> [0.000000]: [ker_lmm/DEBUG] index: 5          cnst_light_num: 47      || usage: 0.000000 remaining: 0.330693 bound: 1.127762
+> [0.000000]: [ker_lmm/DEBUG] index: 3          cnst_light_num: 46      || usage: 0.000000 remaining: 0.165361 bound: 1.485648
+> [0.000000]: [ker_lmm/DEBUG] index: 12         cnst_light_num: 45      || usage: 0.000000 remaining: 3.344634 bound: 4.260225
+> [0.000000]: [ker_lmm/DEBUG] index: 15         cnst_light_num: 44      || usage: 0.000000 remaining: 0.000000 bound: 1.345799
+> [0.000000]: [ker_lmm/DEBUG] var=123, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.468422, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (123) value to 0.468422
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.468422, Var(123).penalty: 1.000000, Var(123).value: 0.468422
+> [0.000000]: [ker_lmm/DEBUG] index: 39         cnst_light_num: 43      || usage: 0.000000 remaining: 2.644445 bound: 4.073078
+> [0.000000]: [ker_lmm/DEBUG] index: 38         cnst_light_num: 42      || usage: 0.000000 remaining: 2.428297 bound: 3.875234
+> [0.000000]: [ker_lmm/DEBUG] index: 16         cnst_light_num: 41      || usage: 0.000000 remaining: 2.831610 bound: 3.939333
+> [0.000000]: [ker_lmm/DEBUG] index: 39         cnst_light_num: 40      || usage: 0.000000 remaining: 6.931026 bound: 9.326286
+> [0.000000]: [ker_lmm/DEBUG] index: 8          cnst_light_num: 39      || usage: 0.000000 remaining: 6.977522 bound: 8.262498
+> [0.000000]: [ker_lmm/DEBUG] index: 13         cnst_light_num: 38      || usage: 0.000000 remaining: 2.872130 bound: 4.677875
+> [0.000000]: [ker_lmm/DEBUG] index: 7          cnst_light_num: 37      || usage: 0.000000 remaining: 5.481945 bound: 6.438419
+> [0.000000]: [ker_lmm/DEBUG] index: 0          cnst_light_num: 36      || usage: 0.000000 remaining: 2.151726 bound: 3.350947
+> [0.000000]: [ker_lmm/DEBUG] index: 6          cnst_light_num: 35      || usage: 0.000000 remaining: 5.419353 bound: 6.575124
+> [0.000000]: [ker_lmm/DEBUG] index: 27         cnst_light_num: 34      || usage: 0.000000 remaining: 1.110040 bound: 2.458112
+> [0.000000]: [ker_lmm/DEBUG] index: 29         cnst_light_num: 33      || usage: 0.000000 remaining: 0.000000 bound: 1.614666
+> [0.000000]: [ker_lmm/DEBUG] index: 3          cnst_light_num: 32      || usage: 0.000000 remaining: 0.868811 bound: 2.293860
+> [0.000000]: [ker_lmm/DEBUG] index: 3          cnst_light_num: 31      || usage: 0.000000 remaining: 7.056819 bound: 8.508505
+> [0.000000]: [ker_lmm/DEBUG] index: 1          cnst_light_num: 30      || usage: 0.000000 remaining: 0.488628 bound: 2.149244
+> [0.000000]: [ker_lmm/DEBUG] index: 6          cnst_light_num: 29      || usage: 0.000000 remaining: 3.539186 bound: 4.353224
+> [0.000000]: [ker_lmm/DEBUG] index: 26         cnst_light_num: 28      || usage: 0.000000 remaining: 2.190069 bound: 3.416137
+> [0.000000]: [ker_lmm/DEBUG] index: 11         cnst_light_num: 27      || usage: 0.000000 remaining: 7.130780 bound: 8.844716
+> [0.000000]: [ker_lmm/DEBUG] index: 6          cnst_light_num: 26      || usage: 0.000000 remaining: 3.528848 bound: 4.830698
+> [0.000000]: [ker_lmm/DEBUG] index: 9          cnst_light_num: 25      || usage: 0.000000 remaining: 1.215170 bound: 2.668273
+> [0.000000]: [ker_lmm/DEBUG] var=136, var.bound=-1.000000, var.penalty=1.000000, min_usage=0.788434, var.bound*var.penalty=-1.000000
+> [0.000000]: [ker_lmm/DEBUG] Setting var (136) value to 0.788434
+>
+> [0.000000]: [ker_lmm/DEBUG] Min usage: 0.788434, Var(136).penalty: 1.000000, Var(136).value: 0.788434
+> [0.000000]: [ker_lmm/DEBUG] index: 16         cnst_light_num: 24      || usage: 0.000000 remaining: 4.798491 bound: 7.780082
+> [0.000000]: [ker_lmm/DEBUG] index: 17         cnst_light_num: 23      || usage: 0.000000 remaining: 5.238985 bound: 8.522890
+> [0.000000]: [ker_lmm/DEBUG] index: 0          cnst_light_num: 22      || usage: 0.000000 remaining: 0.622665 bound: 2.208379
+> [0.000000]: [ker_lmm/DEBUG] index: 18         cnst_light_num: 21      || usage: 0.000000 remaining: 4.624058 bound: 6.293597
+> [0.000000]: [ker_lmm/DEBUG] index: 13         cnst_light_num: 20      || usage: 0.000000 remaining: 0.000000 bound: 1.692254
+> [0.000000]: [ker_lmm/DEBUG] index: 17         cnst_light_num: 19      || usage: 0.000000 remaining: 4.706638 bound: 8.002584
+> [0.000000]: [ker_lmm/DEBUG] index: 0          cnst_light_num: 18      || usage: 0.000000 remaining: 3.783871 bound: 6.470142
+> [0.000000]: [ker_lmm/DEBUG] index: 12         cnst_light_num: 17      || usage: 0.000000 remaining: 1.985989 bound: 4.197355
+> [0.000000]: [ker_lmm/DEBUG] index: 13         cnst_light_num: 16      || usage: 0.000000 remaining: 7.132004 bound: 8.963739
+> [0.000000]: [ker_lmm/DEBUG] index: 7          cnst_light_num: 15      || usage: 0.000000 remaining: 2.868277 bound: 4.892662
+> [0.000000]: [ker_lmm/DEBUG] index: 3          cnst_light_num: 14      || usage: 0.000000 remaining: 7.087076 bound: 8.182267
+> [0.000000]: [ker_lmm/DEBUG] index: 9          cnst_light_num: 13      || usage: 0.000000 remaining: 1.618314 bound: 3.462379
+> [0.000000]: [ker_lmm/DEBUG] index: 11         cnst_light_num: 12      || usage: 0.000000 remaining: 3.526809 bound: 5.867970
+> [0.000000]: [ker_lmm/DEBUG] index: 4          cnst_light_num: 11      || usage: 0.000000 remaining: 3.307772 bound: 5.321444
+> [0.000000]: [ker_lmm/DEBUG] index: 6          cnst_light_num: 10      || usage: 0.000000 remaining: 0.843154 bound: 2.587332
+> [0.000000]: [ker_lmm/DEBUG] index: 2          cnst_light_num: 9       || usage: 0.000000 remaining: 2.306140 bound: 3.633259
+> [0.000000]: [ker_lmm/DEBUG] index: 7          cnst_light_num: 8       || usage: 0.000000 remaining: 5.691549 bound: 9.144756
+> [0.000000]: [ker_lmm/DEBUG] index: 5          cnst_light_num: 7       || usage: 0.000000 remaining: 4.534049 bound: 7.065420
+> [0.000000]: [ker_lmm/DEBUG] index: 2          cnst_light_num: 6       || usage: 0.000000 remaining: 3.031484 bound: 6.630618
+> [0.000000]: [ker_lmm/DEBUG] index: 2          cnst_light_num: 5       || usage: 0.000000 remaining: 6.435390 bound: 7.936375
+> [0.000000]: [ker_lmm/DEBUG] index: 2          cnst_light_num: 4       || usage: 0.000000 remaining: 1.506182 bound: 2.878688
+> [0.000000]: [ker_lmm/DEBUG] index: 1          cnst_light_num: 3       || usage: 0.000000 remaining: 0.612029 bound: 1.850821
+> [0.000000]: [ker_lmm/DEBUG] index: 0          cnst_light_num: 2       || usage: 0.000000 remaining: 5.711985 bound: 7.367471
+> [0.000000]: [ker_lmm/DEBUG] index: 0          cnst_light_num: 1       || usage: 0.000000 remaining: 1.545428 bound: 3.508719
+> [0.000000]: [ker_lmm/DEBUG] MAX-MIN ( '181'(1.000000) '178'(1.000000) '157'(1.000000) '156'(1.000000) '154'(1.000000) '146'(1.000000) '141'(1.000000) '136'(1.000000) '133'(1.000000) '132'(1.000000) '131'(1.000000) '129'(1.000000) '128'(1.000000) '127'(1.000000) '126'(1.000000) '124'(1.000000) '123'(1.000000) '121'(1.000000) '120'(1.000000) '119'(1.000000) '118'(1.000000) '117'(1.000000) '116'(1.000000) '115'(1.000000) '114'(1.000000) '113'(1.000000) '112'(1.000000) '111'(1.000000) '110'(1.000000) '109'(1.000000) '108'(1.000000) '107'(1.000000) '106'(1.000000) '105'(1.000000) '104'(1.000000) '103'(1.000000) '102'(1.000000) '101'(1.000000) '122'(0.000000) '125'(0.000000) '130'(0.000000) '134'(0.000000) '135'(0.000000) '137'(0.000000) '138'(0.000000) '139'(0.000000) '140'(0.000000) '142'(0.000000) '143'(0.000000) '144'(0.000000) '145'(0.000000) '147'(0.000000) '148'(0.000000) '149'(0.000000) '150'(0.000000) '151'(0.000000) '152'(0.000000) '153'(0.000000) '155'(0.000000) '158'(0.000000) '159'(0.000000) '160'(0.000000) '161'(0.000000) '162'(0.000000) '163'(0.000000) '164'(0.000000) '165'(0.000000) '166'(0.000000) '167'(0.000000) '168'(0.000000) '169'(0.000000) '170'(0.000000) '171'(0.000000) '172'(0.000000) '173'(0.000000) '174'(0.000000) '175'(0.000000) '176'(0.000000) '177'(0.000000) '179'(0.000000) '180'(0.000000) '182'(0.000000) '183'(0.000000) '184'(0.000000) '185'(0.000000) '186'(0.000000) '187'(0.000000) '188'(0.000000) '189'(0.000000) '190'(0.000000) '191'(0.000000) '192'(0.000000) '193'(0.000000) '194'(0.000000) '195'(0.000000) '196'(0.000000) '197'(0.000000) '198'(0.000000) '199'(0.000000) '200'(0.000000) )
+> [0.000000]: [ker_lmm/DEBUG] Constraints
+> [0.000000]: [ker_lmm/DEBUG]  (1.433022.'124'(0.080095) + 0.541059.'117'(0.093227) + 1.883325.'117'(0.093227) + 1.410174.'106'(0.142396) + 2.193155.'101'(0.187080) + 1.739308.'130'(0.000000) + 0.353261.'134'(0.000000) + 0.931475.'148'(0.000000) + 0.925072.'155'(0.000000) + 1.179081.'158'(0.000000) + 0.264000.'159'(0.000000) + 0.996939.'160'(0.000000) + 0.994831.'162'(0.000000) + 1.082725.'166'(0.000000) + 1.506649.'172'(0.000000) + 2.016268.'179'(0.000000) + 0.999280.'191'(0.000000) + 1.878270.'197'(0.000000) + 2.281745.'199'(0.000000) + 0) <= 5.494968 ('196')
+> [0.000000]: [ker_lmm/DEBUG]  (2.455459.'157'(0.044234) + 1.921293.'156'(0.006573) + 0.619423.'141'(0.006573) + 1.540313.'131'(0.006573) + 1.897129.'129'(0.080095) + 1.838708.'123'(0.468422) + 1.800117.'113'(0.080095) + 1.461105.'110'(0.006573) + 1.914439.'101'(0.187080) + 1.099137.'125'(0.000000) + 0.305214.'137'(0.000000) + 1.285699.'139'(0.000000) + 2.902966.'144'(0.000000) + 2.512110.'150'(0.000000) + 1.230485.'158'(0.000000) + 1.029909.'163'(0.000000) + 1.169173.'166'(0.000000) + 1.521168.'168'(0.000000) + 0.069600.'183'(0.000000) + 2.537470.'184'(0.000000) + 0.731545.'186'(0.000000) + 1.492293.'191'(0.000000) + 0.550003.'198'(0.000000) + 2.632881.'200'(0.000000) + 0) <= 2.149244 ('194')
+> [0.000000]: [ker_lmm/DEBUG]  (2.387774.'156'(0.006573) + 1.236258.'146'(0.044234) + 0.755181.'136'(0.788434) + 1.082141.'132'(0.080095) + 1.706266.'116'(0.125579) + 0.449282.'107'(0.080095) + 2.937747.'107'(0.080095) + 0.476275.'101'(0.187080) + 2.051009.'139'(0.000000) + 2.502568.'142'(0.000000) + 1.841852.'144'(0.000000) + 2.542973.'147'(0.000000) + 0.006377.'147'(0.000000) + 1.067164.'148'(0.000000) + 1.094115.'151'(0.000000) + 0.963843.'159'(0.000000) + 0.337873.'175'(0.000000) + 1.485642.'176'(0.000000) + 0.372956.'180'(0.000000) + 2.752761.'183'(0.000000) + 1.020197.'184'(0.000000) + 1.952502.'185'(0.000000) + 1.597149.'193'(0.000000) + 1.889212.'195'(0.000000) + 1.648966.'200'(0.000000) + 0) <= 3.633259 ('158')
+> [0.000000]: [ker_lmm/DEBUG]  (1.509699.'157'(0.044234) + 2.393742.'154'(0.187080) + 1.039456.'133'(0.006573) + 1.001638.'128'(0.125579) + 0.524576.'126'(0.093227) + 1.163170.'101'(0.187080) + 1.469780.'137'(0.000000) + 0.951197.'140'(0.000000) + 2.793369.'143'(0.000000) + 1.677272.'144'(0.000000) + 1.318163.'145'(0.000000) + 2.652271.'162'(0.000000) + 0.736277.'162'(0.000000) + 2.253047.'164'(0.000000) + 0.522677.'166'(0.000000) + 1.769038.'167'(0.000000) + 0.646025.'172'(0.000000) + 2.120430.'173'(0.000000) + 1.140972.'174'(0.000000) + 2.107906.'177'(0.000000) + 0.779530.'179'(0.000000) + 1.595091.'185'(0.000000) + 0.740557.'185'(0.000000) + 2.321670.'186'(0.000000) + 2.760617.'189'(0.000000) + 1.596598.'190'(0.000000) + 1.564114.'192'(0.000000) + 1.410047.'194'(0.000000) + 2.485737.'200'(0.000000) + 0) <= 9.315409 ('102')
+> [0.000000]: [ker_lmm/DEBUG]  (1.307825.'136'(0.788434) + 1.307132.'124'(0.080095) + 1.828280.'116'(0.125579) + 0.730583.'112'(0.006573) + 1.377534.'108'(0.080095) + 1.938664.'106'(0.142396) + 1.384390.'104'(0.006573) + 0.063644.'101'(0.187080) + 1.261776.'101'(0.187080) + 2.106355.'134'(0.000000) + 2.069010.'138'(0.000000) + 0.202361.'139'(0.000000) + 1.646021.'145'(0.000000) + 1.068512.'163'(0.000000) + 0.966948.'171'(0.000000) + 0.568364.'171'(0.000000) + 0.848841.'175'(0.000000) + 0.656028.'195'(0.000000) + 0.236385.'196'(0.000000) + 0.780020.'200'(0.000000) + 0) <= 5.321444 ('170')
+> [0.000000]: [ker_lmm/DEBUG]  (1.425401.'156'(0.006573) + 0.154584.'154'(0.187080) + 0.548654.'131'(0.006573) + 1.722397.'119'(0.125579) + 2.132262.'110'(0.006573) + 1.490148.'108'(0.080095) + 1.399617.'105'(0.006573) + 1.344438.'103'(0.093227) + 1.448438.'101'(0.187080) + 1.852043.'125'(0.000000) + 1.123716.'137'(0.000000) + 1.508365.'140'(0.000000) + 1.240966.'142'(0.000000) + 1.041989.'143'(0.000000) + 1.489813.'144'(0.000000) + 0.541002.'145'(0.000000) + 2.301701.'160'(0.000000) + 2.138572.'162'(0.000000) + 1.675152.'163'(0.000000) + 0.833485.'165'(0.000000) + 0.637468.'168'(0.000000) + 1.147239.'170'(0.000000) + 1.958307.'173'(0.000000) + 2.454653.'179'(0.000000) + 2.198024.'180'(0.000000) + 2.347603.'183'(0.000000) + 0.754346.'187'(0.000000) + 1.130689.'190'(0.000000) + 1.497366.'190'(0.000000) + 1.786182.'193'(0.000000) + 0.164571.'193'(0.000000) + 0) <= 1.127762 ('163')
+> [0.000000]: [ker_lmm/DEBUG]  (2.190286.'178'(0.006573) + 0.317598.'154'(0.187080) + 1.619622.'141'(0.006573) + 1.921506.'133'(0.006573) + 2.078778.'129'(0.080095) + 1.583544.'124'(0.080095) + 0.405724.'123'(0.468422) + 0.577363.'107'(0.080095) + 0.642048.'107'(0.080095) + 1.422250.'106'(0.142396) + 1.470552.'101'(0.187080) + 0.527734.'130'(0.000000) + 0.973053.'135'(0.000000) + 1.554388.'137'(0.000000) + 1.549425.'150'(0.000000) + 2.427502.'152'(0.000000) + 2.288840.'155'(0.000000) + 0.776809.'155'(0.000000) + 2.644127.'166'(0.000000) + 0.824841.'169'(0.000000) + 1.497360.'176'(0.000000) + 2.271010.'179'(0.000000) + 2.361619.'184'(0.000000) + 0.212837.'199'(0.000000) + 0) <= 6.575124 ('166')
+> [0.000000]: [ker_lmm/DEBUG]  (1.229561.'178'(0.006573) + 2.685634.'157'(0.044234) + 1.032374.'132'(0.080095) + 0.290412.'127'(0.044234) + 1.967314.'124'(0.080095) + 1.729079.'117'(0.093227) + 1.061923.'116'(0.125579) + 2.150119.'114'(0.142396) + 1.087906.'112'(0.006573) + 1.244460.'109'(0.044234) + 0.978748.'108'(0.080095) + 1.006286.'105'(0.006573) + 2.432402.'103'(0.093227) + 0.666861.'101'(0.187080) + 2.423325.'101'(0.187080) + 1.905722.'143'(0.000000) + 1.103123.'150'(0.000000) + 0.337605.'153'(0.000000) + 0.885875.'159'(0.000000) + 1.729425.'171'(0.000000) + 1.471480.'171'(0.000000) + 1.987164.'172'(0.000000) + 2.792852.'174'(0.000000) + 2.722538.'182'(0.000000) + 1.916794.'190'(0.000000) + 0.637097.'191'(0.000000) + 1.466872.'194'(0.000000) + 1.389352.'194'(0.000000) + 1.684725.'196'(0.000000) + 1.365106.'197'(0.000000) + 0) <= 9.624596 ('164')
+> [0.000000]: [ker_lmm/DEBUG]  (1.996020.'116'(0.125579) + 0.645957.'102'(0.006573) + 0.200807.'101'(0.187080) + 2.454105.'140'(0.000000) + 2.336439.'143'(0.000000) + 2.779330.'158'(0.000000) + 0.197980.'158'(0.000000) + 1.979456.'161'(0.000000) + 0.983993.'174'(0.000000) + 1.403433.'179'(0.000000) + 1.015372.'187'(0.000000) + 1.371309.'188'(0.000000) + 0.903818.'198'(0.000000) + 0) <= 0.965309 ('117')
+> [0.000000]: [ker_lmm/DEBUG]  (2.048835.'146'(0.044234) + 1.880545.'128'(0.125579) + 1.143784.'126'(0.093227) + 1.263859.'123'(0.468422) + 0.556100.'117'(0.093227) + 0.984808.'116'(0.125579) + 1.190054.'112'(0.006573) + 2.133338.'109'(0.044234) + 1.255115.'105'(0.006573) + 2.362139.'105'(0.006573) + 1.517851.'102'(0.006573) + 0.621204.'101'(0.187080) + 1.851807.'144'(0.000000) + 2.149198.'145'(0.000000) + 3.985905.'147'(0.000000) + 0.415198.'147'(0.000000) + 1.858342.'149'(0.000000) + 0.782526.'152'(0.000000) + 0.747166.'158'(0.000000) + 1.633364.'161'(0.000000) + 2.233626.'167'(0.000000) + 2.385708.'172'(0.000000) + 2.124336.'187'(0.000000) + 1.453500.'194'(0.000000) + 0) <= 2.668273 ('107')
+> [0.000000]: [ker_lmm/DEBUG]  (0.069278.'157'(0.044234) + 0.169612.'156'(0.006573) + 1.015199.'133'(0.006573) + 1.430531.'131'(0.006573) + 2.046741.'126'(0.093227) + 1.503159.'115'(0.044234) + 1.483234.'113'(0.080095) + 1.912668.'111'(0.044234) + 2.183522.'105'(0.006573) + 0.972081.'101'(0.187080) + 1.445258.'130'(0.000000) + 0.793967.'144'(0.000000) + 1.959728.'145'(0.000000) + 1.949197.'165'(0.000000) + 0.504038.'171'(0.000000) + 2.926376.'180'(0.000000) + 2.519570.'182'(0.000000) + 1.414029.'182'(0.000000) + 2.149848.'191'(0.000000) + 0.928363.'194'(0.000000) + 1.523158.'200'(0.000000) + 0) <= 1.271600 ('118')
+> [0.000000]: [ker_lmm/DEBUG]  (2.107083.'181'(0.044234) + 2.254471.'156'(0.006573) + 2.235914.'141'(0.006573) + 1.801153.'133'(0.006573) + 1.203944.'124'(0.080095) + 0.658006.'123'(0.468422) + 1.304923.'121'(0.044234) + 0.291770.'118'(0.093227) + 2.035867.'113'(0.080095) + 1.967586.'108'(0.080095) + 2.128295.'106'(0.142396) + 1.548094.'103'(0.093227) + 1.719931.'101'(0.187080) + 1.504381.'140'(0.000000) + 1.722078.'142'(0.000000) + 1.673503.'149'(0.000000) + 0.833293.'152'(0.000000) + 1.733293.'160'(0.000000) + 1.546950.'161'(0.000000) + 1.717347.'171'(0.000000) + 1.918461.'174'(0.000000) + 1.246914.'187'(0.000000) + 0.725083.'190'(0.000000) + 2.658667.'196'(0.000000) + 0) <= 8.844716 ('150')
+> [0.000000]: [ker_lmm/DEBUG]  (0.442721.'157'(0.044234) + 1.581565.'156'(0.006573) + 1.586316.'154'(0.187080) + 1.397711.'131'(0.006573) + 1.542615.'120'(0.080095) + 2.066212.'115'(0.044234) + 1.460712.'105'(0.006573) + 1.792321.'103'(0.093227) + 2.039527.'102'(0.006573) + 0.933336.'101'(0.187080) + 0.856747.'122'(0.000000) + 0.750113.'135'(0.000000) + 1.316408.'138'(0.000000) + 1.959119.'151'(0.000000) + 1.522037.'161'(0.000000) + 2.382086.'164'(0.000000) + 1.193590.'174'(0.000000) + 1.073759.'180'(0.000000) + 0.639613.'196'(0.000000) + 0) <= 4.260225 ('146')
+> [0.000000]: [ker_lmm/DEBUG]  (1.522300.'141'(0.006573) + 2.351782.'132'(0.080095) + 1.427606.'131'(0.006573) + 1.980810.'123'(0.468422) + 0.810418.'121'(0.044234) + 0.377075.'120'(0.080095) + 1.605283.'116'(0.125579) + 1.179479.'112'(0.006573) + 1.029359.'105'(0.006573) + 1.520020.'103'(0.093227) + 1.316401.'101'(0.187080) + 1.270669.'122'(0.000000) + 1.287899.'134'(0.000000) + 0.559410.'144'(0.000000) + 1.318026.'145'(0.000000) + 0.192294.'150'(0.000000) + 1.089990.'151'(0.000000) + 1.577451.'152'(0.000000) + 0.183516.'159'(0.000000) + 0.441672.'162'(0.000000) + 2.235450.'163'(0.000000) + 0.658733.'167'(0.000000) + 2.924359.'172'(0.000000) + 0.411216.'174'(0.000000) + 0.221377.'177'(0.000000) + 2.012222.'182'(0.000000) + 0.428462.'182'(0.000000) + 0.915748.'184'(0.000000) + 0.951439.'186'(0.000000) + 1.097806.'187'(0.000000) + 0) <= 4.677875 ('122')
+> [0.000000]: [ker_lmm/DEBUG]  (1.360246.'181'(0.044234) + 2.320562.'136'(0.788434) + 2.814010.'131'(0.006573) + 1.246452.'123'(0.468422) + 1.087148.'120'(0.080095) + 0.337508.'115'(0.044234) + 1.204764.'107'(0.080095) + 2.704043.'107'(0.080095) + 2.918466.'101'(0.187080) + 2.186089.'122'(0.000000) + 2.643328.'135'(0.000000) + 2.422929.'143'(0.000000) + 1.269801.'145'(0.000000) + 0.730713.'153'(0.000000) + 1.602474.'165'(0.000000) + 1.865591.'166'(0.000000) + 2.252932.'169'(0.000000) + 1.716006.'195'(0.000000) + 1.366675.'198'(0.000000) + 2.620918.'200'(0.000000) + 0) <= 9.144756 ('160')
+> [0.000000]: [ker_lmm/DEBUG]  (1.368075.'178'(0.006573) + 1.186852.'154'(0.187080) + 2.430440.'154'(0.187080) + 1.189272.'124'(0.080095) + 1.295366.'113'(0.080095) + 2.263130.'112'(0.006573) + 2.049234.'111'(0.044234) + 0.171133.'110'(0.006573) + 2.165844.'104'(0.006573) + 1.209648.'103'(0.093227) + 1.215663.'101'(0.187080) + 2.623947.'130'(0.000000) + 0.402708.'142'(0.000000) + 0.292749.'152'(0.000000) + 1.639435.'153'(0.000000) + 1.947608.'163'(0.000000) + 1.313816.'165'(0.000000) + 2.159961.'169'(0.000000) + 1.707004.'177'(0.000000) + 0.889814.'184'(0.000000) + 1.050483.'191'(0.000000) + 0.640548.'191'(0.000000) + 2.632083.'192'(0.000000) + 0.167023.'192'(0.000000) + 1.481138.'197'(0.000000) + 1.894754.'199'(0.000000) + 0) <= 1.345799 ('109')
+> [0.000000]: [ker_lmm/DEBUG]  (0.929618.'129'(0.080095) + 1.474985.'121'(0.044234) + 1.901841.'113'(0.080095) + 1.066712.'110'(0.006573) + 1.947742.'101'(0.187080) + 0.577163.'134'(0.000000) + 0.838958.'137'(0.000000) + 1.572850.'138'(0.000000) + 1.859719.'143'(0.000000) + 0.905837.'151'(0.000000) + 2.697428.'155'(0.000000) + 2.487137.'158'(0.000000) + 1.806866.'161'(0.000000) + 1.286858.'168'(0.000000) + 1.814139.'177'(0.000000) + 2.039481.'180'(0.000000) + 0.238723.'186'(0.000000) + 2.220134.'188'(0.000000) + 2.418038.'192'(0.000000) + 2.001101.'193'(0.000000) + 1.461401.'197'(0.000000) + 0) <= 7.861722 ('169')
+> [0.000000]: [ker_lmm/DEBUG]  (0.579904.'181'(0.044234) + 2.797735.'136'(0.788434) + 0.565433.'131'(0.006573) + 0.863306.'127'(0.044234) + 1.301063.'126'(0.093227) + 0.397356.'123'(0.468422) + 1.822397.'117'(0.093227) + 1.177754.'112'(0.006573) + 0.734527.'111'(0.044234) + 1.670493.'108'(0.080095) + 1.919871.'101'(0.187080) + 0.916513.'137'(0.000000) + 2.182235.'142'(0.000000) + 0.275574.'143'(0.000000) + 2.445854.'148'(0.000000) + 1.476633.'160'(0.000000) + 2.250126.'169'(0.000000) + 1.169488.'170'(0.000000) + 1.644297.'171'(0.000000) + 0.806967.'177'(0.000000) + 0.966871.'179'(0.000000) + 1.651911.'182'(0.000000) + 1.767767.'187'(0.000000) + 0.968273.'189'(0.000000) + 1.140350.'190'(0.000000) + 1.783664.'194'(0.000000) + 0.961071.'198'(0.000000) + 1.009297.'200'(0.000000) + 0) <= 8.522890 ('188')
+> [0.000000]: [ker_lmm/DEBUG]  (2.048524.'156'(0.006573) + 1.140563.'141'(0.006573) + 1.005971.'133'(0.006573) + 2.023314.'128'(0.125579) + 1.096219.'127'(0.044234) + 1.409475.'120'(0.080095) + 0.802817.'118'(0.093227) + 1.721854.'117'(0.093227) + 2.362538.'113'(0.080095) + 1.963407.'112'(0.006573) + 1.432301.'110'(0.006573) + 1.180632.'107'(0.080095) + 2.341878.'105'(0.006573) + 0.953725.'101'(0.187080) + 1.874038.'122'(0.000000) + 1.992576.'125'(0.000000) + 0.745961.'134'(0.000000) + 1.858194.'142'(0.000000) + 0.505207.'144'(0.000000) + 1.369199.'148'(0.000000) + 0.580875.'160'(0.000000) + 1.697874.'162'(0.000000) + 1.275802.'164'(0.000000) + 2.332860.'165'(0.000000) + 1.124230.'167'(0.000000) + 1.769951.'168'(0.000000) + 2.777239.'170'(0.000000) + 1.772093.'171'(0.000000) + 0.497572.'172'(0.000000) + 1.618476.'173'(0.000000) + 0.166142.'173'(0.000000) + 1.404154.'176'(0.000000) + 1.556745.'195'(0.000000) + 0.781693.'199'(0.000000) + 0) <= 5.773081 ('121')
+> [0.000000]: [ker_lmm/DEBUG]  (1.118393.'181'(0.044234) + 1.698841.'154'(0.187080) + 2.195235.'146'(0.044234) + 0.856465.'136'(0.788434) + 0.871141.'132'(0.080095) + 0.651491.'114'(0.142396) + 2.226702.'113'(0.080095) + 0.985936.'106'(0.142396) + 1.418357.'104'(0.006573) + 1.076915.'101'(0.187080) + 1.808355.'125'(0.000000) + 0.440112.'134'(0.000000) + 1.473567.'150'(0.000000) + 2.316861.'158'(0.000000) + 2.455907.'160'(0.000000) + 0.977776.'166'(0.000000) + 1.491342.'174'(0.000000) + 1.369962.'188'(0.000000) + 1.825533.'190'(0.000000) + 1.740009.'195'(0.000000) + 1.869625.'197'(0.000000) + 0.721972.'197'(0.000000) + 1.214766.'198'(0.000000) + 0) <= 8.963739 ('182')
+> [0.000000]: [ker_lmm/DEBUG]  (0.861839.'136'(0.788434) + 1.306431.'127'(0.044234) + 1.268093.'127'(0.044234) + 1.941857.'121'(0.044234) + 0.956861.'120'(0.080095) + 1.482325.'116'(0.125579) + 1.639935.'115'(0.044234) + 0.723015.'114'(0.142396) + 2.307945.'112'(0.006573) + 1.725216.'101'(0.187080) + 1.825497.'125'(0.000000) + 0.481774.'138'(0.000000) + 0.761948.'149'(0.000000) + 1.349291.'162'(0.000000) + 1.017765.'167'(0.000000) + 0.989346.'170'(0.000000) + 2.567170.'177'(0.000000) + 1.713396.'182'(0.000000) + 1.225851.'185'(0.000000) + 0.887108.'187'(0.000000) + 2.268193.'196'(0.000000) + 0.784655.'198'(0.000000) + 0) <= 7.367471 ('153')
+> [0.000000]: [ker_lmm/DEBUG]  (1.492149.'181'(0.044234) + 1.984585.'181'(0.044234) + 1.334616.'146'(0.044234) + 1.144619.'131'(0.006573) + 2.449759.'131'(0.006573) + 1.135302.'128'(0.125579) + 1.017314.'124'(0.080095) + 1.768664.'117'(0.093227) + 1.261052.'111'(0.044234) + 0.954311.'104'(0.006573) + 2.026861.'101'(0.187080) + 1.988665.'135'(0.000000) + 1.884184.'137'(0.000000) + 2.705131.'138'(0.000000) + 1.652874.'139'(0.000000) + 1.605803.'140'(0.000000) + 1.458204.'140'(0.000000) + 0.176270.'145'(0.000000) + 0.815790.'149'(0.000000) + 0.547076.'152'(0.000000) + 0.826784.'160'(0.000000) + 1.047491.'190'(0.000000) + 1.135548.'197'(0.000000) + 0) <= 7.197542 ('111')
+> [0.000000]: [ker_lmm/DEBUG]  (0.646002.'178'(0.006573) + 1.813992.'154'(0.187080) + 2.068744.'136'(0.788434) + 0.693474.'132'(0.080095) + 1.032504.'129'(0.080095) + 0.083919.'128'(0.125579) + 1.748582.'124'(0.080095) + 1.237885.'119'(0.125579) + 2.234923.'114'(0.142396) + 1.268505.'113'(0.080095) + 1.730075.'108'(0.080095) + 2.044380.'106'(0.142396) + 2.039620.'104'(0.006573) + 2.138271.'102'(0.006573) + 2.345194.'143'(0.000000) + 2.531660.'153'(0.000000) + 0.815005.'161'(0.000000) + 2.505692.'167'(0.000000) + 2.261423.'184'(0.000000) + 1.101416.'192'(0.000000) + 0) <= 8.002584 ('143')
+> [0.000000]: [ker_lmm/DEBUG]  (1.470854.'146'(0.044234) + 0.219197.'127'(0.044234) + 2.800634.'127'(0.044234) + 2.626489.'121'(0.044234) + 1.725196.'118'(0.093227) + 1.661360.'117'(0.093227) + 1.452061.'116'(0.125579) + 0.470484.'111'(0.044234) + 1.026585.'105'(0.006573) + 1.517108.'102'(0.006573) + 2.547191.'130'(0.000000) + 2.512654.'134'(0.000000) + 1.117218.'139'(0.000000) + 3.478259.'158'(0.000000) + 0.097204.'158'(0.000000) + 1.111019.'161'(0.000000) + 2.077750.'170'(0.000000) + 1.809540.'172'(0.000000) + 1.565027.'174'(0.000000) + 2.317451.'175'(0.000000) + 1.669532.'176'(0.000000) + 1.583863.'177'(0.000000) + 0.436953.'182'(0.000000) + 0.488556.'184'(0.000000) + 1.406009.'185'(0.000000) + 1.468006.'187'(0.000000) + 2.585853.'191'(0.000000) + 0.144456.'193'(0.000000) + 0.828711.'194'(0.000000) + 1.316570.'196'(0.000000) + 0) <= 5.657651 ('119')
+> [0.000000]: [ker_lmm/DEBUG]  (1.505156.'128'(0.125579) + 1.687184.'121'(0.044234) + 1.107880.'119'(0.125579) + 2.669250.'116'(0.125579) + 2.231424.'115'(0.044234) + 2.083142.'111'(0.044234) + 2.867142.'110'(0.006573) + 1.252980.'108'(0.080095) + 2.693068.'102'(0.006573) + 1.978152.'122'(0.000000) + 0.851835.'122'(0.000000) + 2.860527.'125'(0.000000) + 1.170105.'125'(0.000000) + 0.605369.'130'(0.000000) + 1.179262.'137'(0.000000) + 0.346467.'138'(0.000000) + 0.582071.'140'(0.000000) + 1.052183.'147'(0.000000) + 0.041136.'148'(0.000000) + 1.884012.'153'(0.000000) + 1.301877.'153'(0.000000) + 1.106617.'160'(0.000000) + 1.014506.'166'(0.000000) + 2.427124.'168'(0.000000) + 0.836237.'169'(0.000000) + 0.252491.'171'(0.000000) + 1.373071.'188'(0.000000) + 1.436014.'192'(0.000000) + 0.413873.'196'(0.000000) + 0.020277.'199'(0.000000) + 0) <= 1.065725 ('174')
+> [0.000000]: [ker_lmm/DEBUG]  (1.927850.'178'(0.006573) + 1.451361.'136'(0.788434) + 0.800191.'133'(0.006573) + 0.665692.'124'(0.080095) + 1.453221.'121'(0.044234) + 1.896009.'120'(0.080095) + 1.851794.'114'(0.142396) + 2.170263.'112'(0.006573) + 0.468794.'109'(0.044234) + 0.327403.'104'(0.006573) + 1.771757.'102'(0.006573) + 1.390533.'122'(0.000000) + 0.845540.'125'(0.000000) + 0.739088.'134'(0.000000) + 2.284217.'147'(0.000000) + 1.806170.'155'(0.000000) + 0.920377.'161'(0.000000) + 2.410731.'163'(0.000000) + 2.554756.'170'(0.000000) + 1.686135.'171'(0.000000) + 1.338119.'177'(0.000000) + 1.982064.'195'(0.000000) + 0) <= 2.587332 ('132')
+> [0.000000]: [ker_lmm/DEBUG]  (1.846229.'141'(0.006573) + 0.992550.'126'(0.093227) + 1.979740.'123'(0.468422) + 1.396254.'121'(0.044234) + 0.777864.'119'(0.125579) + 1.812272.'112'(0.006573) + 2.726314.'105'(0.006573) + 0.725981.'102'(0.006573) + 2.018552.'122'(0.000000) + 1.525326.'140'(0.000000) + 0.319031.'147'(0.000000) + 1.465903.'148'(0.000000) + 0.779951.'152'(0.000000) + 1.346927.'168'(0.000000) + 1.142659.'169'(0.000000) + 1.492529.'171'(0.000000) + 2.561673.'173'(0.000000) + 1.993323.'176'(0.000000) + 0.558564.'182'(0.000000) + 2.098417.'189'(0.000000) + 0.802989.'191'(0.000000) + 1.768171.'200'(0.000000) + 0) <= 3.416137 ('131')
+> [0.000000]: [ker_lmm/DEBUG]  (1.265329.'181'(0.044234) + 1.418964.'154'(0.187080) + 1.674292.'141'(0.006573) + 0.784381.'123'(0.468422) + 1.094004.'119'(0.125579) + 2.599500.'118'(0.093227) + 1.644776.'116'(0.125579) + 1.210240.'111'(0.044234) + 1.278982.'102'(0.006573) + 0.231865.'130'(0.000000) + 1.677647.'142'(0.000000) + 2.529465.'144'(0.000000) + 0.990291.'149'(0.000000) + 1.397020.'152'(0.000000) + 1.958440.'155'(0.000000) + 1.301208.'160'(0.000000) + 1.469147.'167'(0.000000) + 1.411597.'170'(0.000000) + 1.343979.'172'(0.000000) + 2.469177.'173'(0.000000) + 0.689815.'174'(0.000000) + 0.962076.'180'(0.000000) + 2.374322.'185'(0.000000) + 1.415662.'197'(0.000000) + 0) <= 2.458112 ('186')
+> [0.000000]: [ker_lmm/DEBUG]  (2.456544.'181'(0.044234) + 1.264615.'157'(0.044234) + 1.975372.'123'(0.468422) + 2.135422.'118'(0.093227) + 0.994221.'112'(0.006573) + 0.962754.'102'(0.006573) + 1.730231.'139'(0.000000) + 2.182538.'142'(0.000000) + 1.553151.'143'(0.000000) + 0.855133.'149'(0.000000) + 0.246511.'151'(0.000000) + 1.503059.'161'(0.000000) + 1.140075.'162'(0.000000) + 1.030920.'165'(0.000000) + 2.409633.'168'(0.000000) + 1.673390.'170'(0.000000) + 2.087911.'171'(0.000000) + 2.010358.'172'(0.000000) + 0.251684.'176'(0.000000) + 2.086270.'180'(0.000000) + 1.486400.'183'(0.000000) + 1.393699.'185'(0.000000) + 2.342975.'188'(0.000000) + 0.333028.'188'(0.000000) + 1.383046.'189'(0.000000) + 0) <= 4.830698 ('124')
+> [0.000000]: [ker_lmm/DEBUG]  (1.235208.'156'(0.006573) + 1.527822.'132'(0.080095) + 0.497654.'127'(0.044234) + 1.268891.'118'(0.093227) + 1.976091.'112'(0.006573) + 2.366939.'104'(0.006573) + 2.255948.'102'(0.006573) + 1.465904.'137'(0.000000) + 0.966409.'144'(0.000000) + 1.753987.'151'(0.000000) + 0.668113.'159'(0.000000) + 2.518223.'161'(0.000000) + 0.294101.'164'(0.000000) + 0.925704.'168'(0.000000) + 0.321709.'177'(0.000000) + 1.909817.'190'(0.000000) + 1.372313.'190'(0.000000) + 2.219288.'191'(0.000000) + 1.223017.'192'(0.000000) + 0.479495.'192'(0.000000) + 1.342383.'198'(0.000000) + 1.508053.'199'(0.000000) + 0) <= 7.487779 ('173')
+> [0.000000]: [ker_lmm/DEBUG]  (2.824826.'157'(0.044234) + 2.520914.'126'(0.093227) + 0.571938.'120'(0.080095) + 1.857027.'119'(0.125579) + 1.794088.'113'(0.080095) + 0.348971.'102'(0.006573) + 1.911939.'122'(0.000000) + 0.671482.'138'(0.000000) + 1.669593.'148'(0.000000) + 0.771768.'160'(0.000000) + 2.092829.'162'(0.000000) + 1.778057.'163'(0.000000) + 3.505969.'164'(0.000000) + 1.101744.'164'(0.000000) + 2.140202.'168'(0.000000) + 1.889152.'169'(0.000000) + 1.345898.'171'(0.000000) + 0.063032.'171'(0.000000) + 0.219459.'172'(0.000000) + 1.652126.'176'(0.000000) + 1.629885.'180'(0.000000) + 1.417902.'182'(0.000000) + 1.398543.'188'(0.000000) + 2.405729.'197'(0.000000) + 3.144010.'198'(0.000000) + 1.363661.'198'(0.000000) + 0) <= 2.693888 ('156')
+> [0.000000]: [ker_lmm/DEBUG]  (0.392435.'181'(0.044234) + 1.026858.'156'(0.006573) + 1.265256.'133'(0.006573) + 1.845821.'124'(0.080095) + 1.448460.'123'(0.468422) + 2.039013.'121'(0.044234) + 0.998206.'117'(0.093227) + 0.583055.'111'(0.044234) + 0.771442.'110'(0.006573) + 1.545717.'106'(0.142396) + 1.455822.'104'(0.006573) + 3.082484.'104'(0.006573) + 1.275001.'103'(0.093227) + 1.524773.'102'(0.006573) + 1.597146.'122'(0.000000) + 1.279573.'122'(0.000000) + 2.119160.'134'(0.000000) + 1.161894.'135'(0.000000) + 1.355661.'143'(0.000000) + 1.612572.'145'(0.000000) + 2.344769.'150'(0.000000) + 1.323127.'151'(0.000000) + 2.008943.'168'(0.000000) + 1.956497.'171'(0.000000) + 2.216070.'174'(0.000000) + 1.494362.'179'(0.000000) + 0.489763.'184'(0.000000) + 0.690239.'188'(0.000000) + 0.287952.'190'(0.000000) + 0.847703.'192'(0.000000) + 2.232011.'194'(0.000000) + 0.462545.'198'(0.000000) + 0) <= 8.508505 ('138')
+> [0.000000]: [ker_lmm/DEBUG]  (1.016590.'157'(0.044234) + 2.448289.'132'(0.080095) + 1.570261.'124'(0.080095) + 1.886243.'115'(0.044234) + 1.235086.'112'(0.006573) + 0.208889.'110'(0.006573) + 3.031710.'110'(0.006573) + 2.276711.'106'(0.142396) + 1.858324.'105'(0.006573) + 1.807827.'102'(0.006573) + 1.745848.'138'(0.000000) + 1.363235.'139'(0.000000) + 2.015837.'142'(0.000000) + 2.089193.'143'(0.000000) + 0.929518.'145'(0.000000) + 0.744644.'148'(0.000000) + 1.915211.'151'(0.000000) + 1.881492.'153'(0.000000) + 1.148612.'164'(0.000000) + 1.433948.'168'(0.000000) + 1.586371.'170'(0.000000) + 2.483010.'175'(0.000000) + 1.939351.'183'(0.000000) + 1.797873.'189'(0.000000) + 1.368063.'189'(0.000000) + 2.044454.'191'(0.000000) + 1.201581.'194'(0.000000) + 2.153052.'200'(0.000000) + 0) <= 9.177187 ('180')
+> [0.000000]: [ker_lmm/DEBUG]  (1.030828.'156'(0.006573) + 1.675969.'156'(0.006573) + 2.885648.'133'(0.006573) + 1.520061.'126'(0.093227) + 1.443122.'119'(0.125579) + 1.173064.'118'(0.093227) + 1.172512.'114'(0.142396) + 1.922487.'114'(0.142396) + 2.016209.'109'(0.044234) + 1.314392.'106'(0.142396) + 2.037155.'102'(0.006573) + 2.753228.'122'(0.000000) + 0.742382.'122'(0.000000) + 1.720484.'140'(0.000000) + 1.597604.'153'(0.000000) + 1.338471.'159'(0.000000) + 1.919807.'160'(0.000000) + 0.706727.'168'(0.000000) + 0.709561.'176'(0.000000) + 1.111750.'190'(0.000000) + 1.679421.'191'(0.000000) + 2.192361.'192'(0.000000) + 0.328905.'197'(0.000000) + 0) <= 1.199505 ('106')
+> [0.000000]: [ker_lmm/DEBUG]  (1.194363.'178'(0.006573) + 1.341555.'156'(0.006573) + 1.957920.'141'(0.006573) + 1.094722.'133'(0.006573) + 1.901653.'131'(0.006573) + 0.916426.'112'(0.006573) + 1.214869.'110'(0.006573) + 0.405871.'105'(0.006573) + 1.278394.'104'(0.006573) + 2.083266.'104'(0.006573) + 2.206301.'102'(0.006573) + 0.598816.'137'(0.000000) + 1.634703.'140'(0.000000) + 1.838075.'142'(0.000000) + 1.650438.'145'(0.000000) + 1.063233.'151'(0.000000) + 0.474800.'152'(0.000000) + 0.561056.'164'(0.000000) + 1.993440.'179'(0.000000) + 1.411523.'180'(0.000000) + 1.931005.'182'(0.000000) + 1.534029.'189'(0.000000) + 1.782875.'193'(0.000000) + 1.429516.'194'(0.000000) + 1.655950.'198'(0.000000) + 0) <= 0.102500 ('189')
+> [0.000000]: [ker_lmm/DEBUG]  (1.962565.'157'(0.044234) + 0.370522.'154'(0.187080) + 1.631906.'141'(0.006573) + 0.432804.'117'(0.093227) + 2.091676.'115'(0.044234) + 2.618160.'113'(0.080095) + 1.245575.'109'(0.044234) + 1.364211.'102'(0.006573) + 2.272680.'122'(0.000000) + 1.621969.'125'(0.000000) + 2.904262.'139'(0.000000) + 0.674648.'140'(0.000000) + 1.294658.'150'(0.000000) + 0.903709.'158'(0.000000) + 1.773777.'160'(0.000000) + 0.380477.'160'(0.000000) + 2.444595.'166'(0.000000) + 1.611624.'169'(0.000000) + 1.123016.'173'(0.000000) + 1.644913.'176'(0.000000) + 1.759712.'179'(0.000000) + 1.914200.'184'(0.000000) + 2.004309.'189'(0.000000) + 1.250370.'193'(0.000000) + 1.382927.'196'(0.000000) + 1.161028.'200'(0.000000) + 0) <= 0.796455 ('114')
+> [0.000000]: [ker_lmm/DEBUG]  (1.501611.'181'(0.044234) + 1.523222.'178'(0.006573) + 2.302499.'141'(0.006573) + 1.421497.'136'(0.788434) + 1.285322.'131'(0.006573) + 1.983604.'131'(0.006573) + 2.232520.'126'(0.093227) + 1.646694.'124'(0.080095) + 0.826415.'115'(0.044234) + 2.043915.'107'(0.080095) + 1.667176.'106'(0.142396) + 1.961664.'102'(0.006573) + 0.076906.'125'(0.000000) + 0.366224.'147'(0.000000) + 2.568213.'148'(0.000000) + 0.857487.'149'(0.000000) + 1.761931.'153'(0.000000) + 0.487706.'159'(0.000000) + 0.861101.'169'(0.000000) + 2.204569.'170'(0.000000) + 1.806997.'173'(0.000000) + 2.474156.'175'(0.000000) + 2.220512.'176'(0.000000) + 1.052198.'177'(0.000000) + 0.321398.'194'(0.000000) + 0.621442.'195'(0.000000) + 1.352246.'196'(0.000000) + 0) <= 4.892662 ('184')
+> [0.000000]: [ker_lmm/DEBUG]  (2.287831.'133'(0.006573) + 1.996744.'132'(0.080095) + 1.614739.'131'(0.006573) + 2.446007.'129'(0.080095) + 2.861000.'127'(0.044234) + 1.733125.'124'(0.080095) + 0.465702.'120'(0.080095) + 1.557604.'120'(0.080095) + 1.789221.'115'(0.044234) + 0.938532.'113'(0.080095) + 1.936362.'108'(0.080095) + 0.755425.'107'(0.080095) + 2.437449.'102'(0.006573) + 1.510937.'145'(0.000000) + 2.442994.'150'(0.000000) + 1.063546.'159'(0.000000) + 0.995329.'163'(0.000000) + 1.221189.'165'(0.000000) + 1.004390.'168'(0.000000) + 2.199298.'173'(0.000000) + 1.239636.'177'(0.000000) + 0.920497.'182'(0.000000) + 0.944410.'183'(0.000000) + 2.160218.'185'(0.000000) + 0.829135.'186'(0.000000) + 1.042340.'191'(0.000000) + 1.429066.'196'(0.000000) + 1.990473.'198'(0.000000) + 0.572691.'198'(0.000000) + 1.207629.'199'(0.000000) + 0) <= 1.194848 ('127')
+> [0.000000]: [ker_lmm/DEBUG]  (0.428373.'146'(0.044234) + 1.437430.'131'(0.006573) + 1.442125.'128'(0.125579) + 1.759067.'126'(0.093227) + 1.030309.'124'(0.080095) + 0.845693.'123'(0.468422) + 1.359112.'120'(0.080095) + 1.881026.'113'(0.080095) + 1.525616.'106'(0.142396) + 1.578471.'105'(0.006573) + 0.983534.'103'(0.093227) + 2.428170.'102'(0.006573) + 1.055263.'134'(0.000000) + 1.514943.'135'(0.000000) + 0.724891.'138'(0.000000) + 1.528502.'149'(0.000000) + 0.626851.'150'(0.000000) + 0.689266.'161'(0.000000) + 0.665623.'163'(0.000000) + 0.179409.'164'(0.000000) + 1.498973.'165'(0.000000) + 1.539309.'173'(0.000000) + 0.772486.'175'(0.000000) + 1.586864.'179'(0.000000) + 1.349153.'193'(0.000000) + 0.766953.'193'(0.000000) + 2.521674.'197'(0.000000) + 2.661441.'199'(0.000000) + 0) <= 3.875234 ('159')
+> [0.000000]: [ker_lmm/DEBUG]  (2.227276.'178'(0.006573) + 1.694834.'156'(0.006573) + 1.386400.'129'(0.080095) + 0.861262.'126'(0.093227) + 2.345599.'120'(0.080095) + 2.376101.'118'(0.093227) + 2.299503.'117'(0.093227) + 1.101300.'112'(0.006573) + 1.232403.'111'(0.044234) + 1.666836.'103'(0.093227) + 1.739789.'102'(0.006573) + 1.477499.'138'(0.000000) + 2.011130.'144'(0.000000) + 1.749361.'147'(0.000000) + 2.110913.'152'(0.000000) + 1.604494.'153'(0.000000) + 0.782774.'155'(0.000000) + 2.064280.'159'(0.000000) + 1.470928.'161'(0.000000) + 2.056027.'165'(0.000000) + 1.488805.'166'(0.000000) + 0.958041.'169'(0.000000) + 1.286198.'170'(0.000000) + 0.420843.'173'(0.000000) + 0.293257.'179'(0.000000) + 2.187942.'183'(0.000000) + 0.575051.'184'(0.000000) + 2.103383.'191'(0.000000) + 3.471705.'193'(0.000000) + 0.147929.'193'(0.000000) + 0.417406.'195'(0.000000) + 0.622687.'200'(0.000000) + 0) <= 1.069457 ('120')
+> [0.000000]: [ker_lmm/DEBUG]  (1.395076.'136'(0.788434) + 0.216529.'132'(0.080095) + 1.766862.'131'(0.006573) + 2.017363.'128'(0.125579) + 0.617829.'126'(0.093227) + 0.652071.'120'(0.080095) + 2.594600.'119'(0.125579) + 2.062283.'118'(0.093227) + 1.469108.'115'(0.044234) + 0.839934.'113'(0.080095) + 0.540039.'109'(0.044234) + 2.480324.'109'(0.044234) + 0.297000.'107'(0.080095) + 2.690217.'107'(0.080095) + 1.504788.'106'(0.142396) + 0.592821.'103'(0.093227) + 2.052735.'103'(0.093227) + 0.825453.'102'(0.006573) + 1.317518.'137'(0.000000) + 1.225164.'145'(0.000000) + 1.131012.'151'(0.000000) + 2.470487.'158'(0.000000) + 2.432689.'159'(0.000000) + 1.213512.'168'(0.000000) + 1.731118.'173'(0.000000) + 0.838672.'173'(0.000000) + 1.175490.'179'(0.000000) + 1.242742.'183'(0.000000) + 1.879711.'189'(0.000000) + 0.052446.'189'(0.000000) + 1.322908.'200'(0.000000) + 0) <= 7.780082 ('171')
+> [0.000000]: [ker_lmm/DEBUG]  (0.455080.'154'(0.187080) + 1.828968.'146'(0.044234) + 1.776728.'131'(0.006573) + 0.972692.'126'(0.093227) + 1.064437.'124'(0.080095) + 0.627877.'121'(0.044234) + 0.992121.'118'(0.093227) + 1.998377.'115'(0.044234) + 1.013984.'114'(0.142396) + 1.089760.'109'(0.044234) + 1.718587.'108'(0.080095) + 0.415653.'102'(0.006573) + 2.072675.'125'(0.000000) + 1.041072.'135'(0.000000) + 1.593143.'137'(0.000000) + 2.490151.'140'(0.000000) + 1.483036.'142'(0.000000) + 1.672005.'145'(0.000000) + 0.840943.'151'(0.000000) + 1.042253.'155'(0.000000) + 1.927915.'158'(0.000000) + 0.887154.'165'(0.000000) + 2.399489.'168'(0.000000) + 2.136523.'179'(0.000000) + 2.877228.'180'(0.000000) + 0.866043.'184'(0.000000) + 0.898467.'186'(0.000000) + 0.364225.'186'(0.000000) + 2.005638.'199'(0.000000) + 0) <= 3.205364 ('104')
+> [0.000000]: [ker_lmm/DEBUG]  (1.072573.'178'(0.006573) + 1.520784.'133'(0.006573) + 1.856668.'127'(0.044234) + 1.963620.'124'(0.080095) + 0.951764.'120'(0.080095) + 2.039825.'111'(0.044234) + 1.555007.'106'(0.142396) + 1.527940.'102'(0.006573) + 2.343177.'130'(0.000000) + 1.944857.'137'(0.000000) + 1.168720.'138'(0.000000) + 1.646124.'139'(0.000000) + 1.744112.'148'(0.000000) + 0.830406.'151'(0.000000) + 1.290892.'159'(0.000000) + 2.391685.'162'(0.000000) + 1.132469.'169'(0.000000) + 1.487794.'182'(0.000000) + 0.830738.'192'(0.000000) + 2.054383.'200'(0.000000) + 0) <= 3.557536 ('155')
+> [0.000000]: [ker_lmm/DEBUG]  (1.386330.'141'(0.006573) + 1.158021.'136'(0.788434) + 1.346146.'129'(0.080095) + 0.871124.'129'(0.080095) + 0.858731.'121'(0.044234) + 2.151642.'119'(0.125579) + 0.604649.'117'(0.093227) + 1.799876.'116'(0.125579) + 0.527510.'114'(0.142396) + 1.227734.'111'(0.044234) + 1.427370.'105'(0.006573) + 1.704697.'104'(0.006573) + 1.319089.'103'(0.093227) + 2.279213.'130'(0.000000) + 1.151271.'139'(0.000000) + 0.293729.'142'(0.000000) + 0.933752.'143'(0.000000) + 1.664818.'144'(0.000000) + 1.275956.'151'(0.000000) + 0.203839.'152'(0.000000) + 1.806466.'153'(0.000000) + 1.426030.'155'(0.000000) + 1.171905.'158'(0.000000) + 1.615945.'162'(0.000000) + 0.968727.'165'(0.000000) + 0.687858.'167'(0.000000) + 1.424485.'168'(0.000000) + 2.108198.'169'(0.000000) + 0.335052.'172'(0.000000) + 2.157240.'173'(0.000000) + 0.692906.'173'(0.000000) + 2.032173.'174'(0.000000) + 0.954689.'175'(0.000000) + 1.311012.'183'(0.000000) + 1.427137.'195'(0.000000) + 1.104519.'197'(0.000000) + 0) <= 3.508719 ('161')
+> [0.000000]: [ker_lmm/DEBUG]  (2.384164.'178'(0.006573) + 1.741066.'157'(0.044234) + 2.380023.'133'(0.006573) + 0.973260.'131'(0.006573) + 2.155747.'126'(0.093227) + 1.641631.'119'(0.125579) + 1.386048.'118'(0.093227) + 0.797460.'103'(0.093227) + 1.473246.'130'(0.000000) + 1.898866.'134'(0.000000) + 1.686935.'147'(0.000000) + 1.892385.'148'(0.000000) + 0.930982.'163'(0.000000) + 1.332234.'170'(0.000000) + 2.033684.'171'(0.000000) + 1.614402.'175'(0.000000) + 1.620139.'176'(0.000000) + 0.837078.'180'(0.000000) + 1.149652.'182'(0.000000) + 1.058332.'197'(0.000000) + 0) <= 1.872865 ('192')
+> [0.000000]: [ker_lmm/DEBUG]  (2.434240.'157'(0.044234) + 1.271752.'132'(0.080095) + 0.584455.'123'(0.468422) + 0.364425.'121'(0.044234) + 0.864082.'116'(0.125579) + 0.684738.'115'(0.044234) + 2.421397.'113'(0.080095) + 1.516396.'108'(0.080095) + 1.642852.'106'(0.142396) + 1.880500.'105'(0.006573) + 1.154789.'103'(0.093227) + 1.260074.'103'(0.093227) + 0.208440.'130'(0.000000) + 2.336803.'140'(0.000000) + 0.550436.'147'(0.000000) + 0.344020.'150'(0.000000) + 0.196627.'152'(0.000000) + 1.705157.'158'(0.000000) + 1.686370.'163'(0.000000) + 1.770677.'168'(0.000000) + 0.377494.'169'(0.000000) + 1.016244.'173'(0.000000) + 0.729589.'182'(0.000000) + 2.280199.'185'(0.000000) + 1.550732.'186'(0.000000) + 0.463207.'186'(0.000000) + 1.384538.'188'(0.000000) + 1.178534.'189'(0.000000) + 1.948033.'196'(0.000000) + 1.909783.'197'(0.000000) + 1.450769.'199'(0.000000) + 0.379864.'200'(0.000000) + 0) <= 2.293860 ('167')
+> [0.000000]: [ker_lmm/DEBUG]  (0.514890.'178'(0.006573) + 1.061676.'154'(0.187080) + 2.212168.'136'(0.788434) + 1.216145.'133'(0.006573) + 2.335190.'129'(0.080095) + 2.267677.'118'(0.093227) + 0.964539.'115'(0.044234) + 1.460051.&#