MDAF/Sample codes/Simulated_Annealing_General.ipynb

10437 lines
870 KiB
Plaintext

{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import math as m\n",
"import numpy as np\n",
"from numpy import random as r\n",
"import time\n",
"import matplotlib.pyplot as plt\n",
"from mpl_toolkits import mplot3d\n",
"import copy as cp\n",
"\n",
"%matplotlib inline\n",
"r.seed(int(time.time()))\n",
"route = list()"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"def func(Sc):\n",
" x1 = Sc[0]\n",
" x2 = Sc[1]\n",
" return m.sqrt(x1**2+x2**2)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"def tweak(St,p,sigma,high,low):\n",
" for i in range(len(St)):\n",
" if p > r.random():\n",
" while True:\n",
" n = r.normal(loc=0, scale=sigma)\n",
" if (high > St[i]+n) and (low < St[i]+n):\n",
" St[i]+=n\n",
" break\n",
" return St"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"def Quality(Sc,objective):\n",
" func_output = func(Sc)\n",
" if type(func_output) == list:\n",
" error = [func_output[i]-objective[i] for i in range(len(func_output))]\n",
" else:\n",
" error = func_output - objective\n",
" return 1/abs(error)"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"def simulatedAnnealing(S,y,high,low,t,p):\n",
" Best = list()\n",
" Best[:] = cp.deepcopy(S)\n",
" sigma = 0.1\n",
" global route\n",
" route.append(Best[:])\n",
" while True:\n",
" print('\\n\\n\\n')\n",
" R = tweak(cp.deepcopy(S),p,sigma,high,low)\n",
" print(R)\n",
" print(S)\n",
" Qr = Quality(R,y)\n",
" Qs = Quality(S,y)\n",
" try:\n",
" P = m.e**((Qr-Qs)/t)\n",
" except:\n",
" pass\n",
" print('QUALITY_R///{}'.format(Qr))\n",
" print('QUALITY_S///{}'.format(Qs))\n",
" print('fraction is:{}'.format(P))\n",
" if (Qr > Qs) or (r.random() < P):\n",
" print('NEW_S')\n",
" S[:] = R[:]\n",
" if t > 0.01:\n",
" t-= t/10\n",
" print('t = {}'.format(t))\n",
" \n",
" if (Quality(S,y) > Quality(Best,y)):\n",
" print('new Best****:{}'.format(Best))\n",
" Best[:] = S[:]\n",
" route.append(Best[:])\n",
" print(route)\n",
" \n",
" if t < 0 or Quality(Best,y) > 200:\n",
" break\n",
" print('the Best Quality obtained was:{}'.format(Quality(Best,y)))\n",
" return Best"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"\n",
"\n",
"[9.047502945725558, 3.9024053730567236]\n",
"[9.0, 4.0]\n",
"QUALITY_R///0.10148959585371009\n",
"QUALITY_S///0.10153461651336192\n",
"fraction is:0.9955080531424693\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[8.798005481733506, 3.985375451831662]\n",
"[9.047502945725558, 3.9024053730567236]\n",
"QUALITY_R///0.10353491571287138\n",
"QUALITY_S///0.10148959585371009\n",
"fraction is:1.2269507003603155\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[9.0, 4.0]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.810343898188737, 3.9068912786374947]\n",
"[8.798005481733506, 3.985375451831662]\n",
"QUALITY_R///0.10375880592832346\n",
"QUALITY_S///0.10353491571287138\n",
"fraction is:1.022641536689127\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.798005481733506, 3.985375451831662]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.78415849877267, 3.9068912786374947]\n",
"[8.810343898188737, 3.9068912786374947]\n",
"QUALITY_R///0.10401709163172893\n",
"QUALITY_S///0.10375880592832346\n",
"fraction is:1.0261650182744204\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.810343898188737, 3.9068912786374947]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.743490542744514, 3.9563170094022984]\n",
"[8.78415849877267, 3.9068912786374947]\n",
"QUALITY_R///0.10419998571623937\n",
"QUALITY_S///0.10401709163172893\n",
"fraction is:1.0184576840030815\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.78415849877267, 3.9068912786374947]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.649703644048506, 4.0268354620179005]\n",
"[8.743490542744514, 3.9563170094022984]\n",
"QUALITY_R///0.1048096098702858\n",
"QUALITY_S///0.10419998571623937\n",
"fraction is:1.0628589663123174\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.743490542744514, 3.9563170094022984]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.649703644048506, 3.8654966044938543]\n",
"[8.649703644048506, 4.0268354620179005]\n",
"QUALITY_R///0.1055504136756912\n",
"QUALITY_S///0.1048096098702858\n",
"fraction is:1.0768933632880366\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.649703644048506, 4.0268354620179005]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.67826754985467, 3.8157771530096753]\n",
"[8.649703644048506, 3.8654966044938543]\n",
"QUALITY_R///0.10548400966021865\n",
"QUALITY_S///0.1055504136756912\n",
"fraction is:0.9933815971986643\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[8.444409455242399, 3.7889186246540234]\n",
"[8.67826754985467, 3.8157771530096753]\n",
"QUALITY_R///0.10804407067326027\n",
"QUALITY_S///0.10548400966021865\n",
"fraction is:1.2917606093400433\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.649703644048506, 3.8654966044938543]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.394678551978993, 3.695246913345679]\n",
"[8.444409455242399, 3.7889186246540234]\n",
"QUALITY_R///0.1090275437796123\n",
"QUALITY_S///0.10804407067326027\n",
"fraction is:1.1033459223439752\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.444409455242399, 3.7889186246540234]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.394678551978993, 3.6055545369054642]\n",
"[8.394678551978993, 3.695246913345679]\n",
"QUALITY_R///0.10945436817532908\n",
"QUALITY_S///0.1090275437796123\n",
"fraction is:1.0436064341177744\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.394678551978993, 3.695246913345679]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.394678551978993, 3.593071717522474]\n",
"[8.394678551978993, 3.6055545369054642]\n",
"QUALITY_R///0.10951333156407775\n",
"QUALITY_S///0.10945436817532908\n",
"fraction is:1.0059137564975047\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.394678551978993, 3.6055545369054642]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.34926756476514, 3.613757374515311]\n",
"[8.394678551978993, 3.593071717522474]\n",
"QUALITY_R///0.10991698434749655\n",
"QUALITY_S///0.10951333156407775\n",
"fraction is:1.041191029271441\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.394678551978993, 3.593071717522474]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.214601764371702, 3.3820941905609776]\n",
"[8.34926756476514, 3.613757374515311]\n",
"QUALITY_R///0.11256705273465104\n",
"QUALITY_S///0.10991698434749655\n",
"fraction is:1.3034398896023978\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.34926756476514, 3.613757374515311]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.214601764371702, 3.3820941905609776]\n",
"[8.214601764371702, 3.3820941905609776]\n",
"QUALITY_R///0.11256705273465104\n",
"QUALITY_S///0.11256705273465104\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[8.245033871721281, 3.294192945254893]\n",
"[8.214601764371702, 3.3820941905609776]\n",
"QUALITY_R///0.11262840316459617\n",
"QUALITY_S///0.11256705273465104\n",
"fraction is:1.0061539009157807\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.214601764371702, 3.3820941905609776]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.094712332268344, 3.294192945254893]\n",
"[8.245033871721281, 3.294192945254893]\n",
"QUALITY_R///0.11442510833072556\n",
"QUALITY_S///0.11262840316459617\n",
"fraction is:1.196822964867364\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.245033871721281, 3.294192945254893]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.094712332268344, 3.3657642831718864]\n",
"[8.094712332268344, 3.294192945254893]\n",
"QUALITY_R///0.11406970822779486\n",
"QUALITY_S///0.11442510833072556\n",
"fraction is:0.965084120159041\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.992952571352107, 3.3657642831718864]\n",
"[8.094712332268344, 3.3657642831718864]\n",
"QUALITY_R///0.11530439585140809\n",
"QUALITY_S///0.11406970822779486\n",
"fraction is:1.1314146612676788\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[8.094712332268344, 3.294192945254893]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.102530343134605, 3.3100780102359564]\n",
"[7.992952571352107, 3.3657642831718864]\n",
"QUALITY_R///0.11425205777365284\n",
"QUALITY_S///0.11530439585140809\n",
"fraction is:0.9001140443190759\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[8.080553042705077, 3.342113190341529]\n",
"[8.102530343134605, 3.3100780102359564]\n",
"QUALITY_R///0.11435851013024553\n",
"QUALITY_S///0.11425205777365284\n",
"fraction is:1.010702097771467\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.993420349098464, 3.342113190341529]\n",
"[8.080553042705077, 3.342113190341529]\n",
"QUALITY_R///0.1154204418249785\n",
"QUALITY_S///0.11435851013024553\n",
"fraction is:1.1120366672976596\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.992952571352107, 3.3657642831718864]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.993420349098464, 3.298585769988641]\n",
"[7.993420349098464, 3.342113190341529]\n",
"QUALITY_R///0.11564331171760305\n",
"QUALITY_S///0.1154204418249785\n",
"fraction is:1.0225371995616686\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.993420349098464, 3.342113190341529]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.874277977486796, 3.135214519287545]\n",
"[7.993420349098464, 3.298585769988641]\n",
"QUALITY_R///0.11798736647845312\n",
"QUALITY_S///0.11564331171760305\n",
"fraction is:1.264156973721797\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.993420349098464, 3.298585769988641]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.865452379110922, 3.135214519287545]\n",
"[7.874277977486796, 3.135214519287545]\n",
"QUALITY_R///0.11810161442810463\n",
"QUALITY_S///0.11798736647845312\n",
"fraction is:1.0114903071853334\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.874277977486796, 3.135214519287545]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545]]\n",
"\n",
"\n",
"\n",
"\n",
"[8.03410297762122, 3.1912734174873743]\n",
"[7.865452379110922, 3.135214519287545]\n",
"QUALITY_R///0.11567766045086665\n",
"QUALITY_S///0.11810161442810463\n",
"fraction is:0.784745829485675\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.865452379110922, 3.170446280616515]\n",
"[7.865452379110922, 3.135214519287545]\n",
"QUALITY_R///0.11791905906593639\n",
"QUALITY_S///0.11810161442810463\n",
"fraction is:0.9819100867079964\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.913672435315038, 3.242866654361926]\n",
"[7.865452379110922, 3.170446280616515]\n",
"QUALITY_R///0.11692716229041603\n",
"QUALITY_S///0.11791905906593639\n",
"fraction is:0.9055709252560984\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.914999943424609, 3.213607456542765]\n",
"[7.913672435315038, 3.242866654361926]\n",
"QUALITY_R///0.11706159708633083\n",
"QUALITY_S///0.11692716229041603\n",
"fraction is:1.0135342494614517\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.914999943424609, 3.2812047252733727]\n",
"[7.914999943424609, 3.213607456542765]\n",
"QUALITY_R///0.11671104314462916\n",
"QUALITY_S///0.11706159708633083\n",
"fraction is:0.9655519288282829\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.914999943424609, 3.2341154128551355]\n",
"[7.914999943424609, 3.2812047252733727]\n",
"QUALITY_R///0.11695568333031672\n",
"QUALITY_S///0.11671104314462916\n",
"fraction is:1.024765717906608\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.967113333208209, 3.235866896772146]\n",
"[7.914999943424609, 3.2341154128551355]\n",
"QUALITY_R///0.11629028939877005\n",
"QUALITY_S///0.11695568333031672\n",
"fraction is:0.935626057868351\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.893419623229378, 3.2719982543495467]\n",
"[7.967113333208209, 3.235866896772146]\n",
"QUALITY_R///0.11703149175501618\n",
"QUALITY_S///0.11629028939877005\n",
"fraction is:1.0769362838188634\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.893419623229378, 3.1362280950164254]\n",
"[7.893419623229378, 3.2719982543495467]\n",
"QUALITY_R///0.11773508749703022\n",
"QUALITY_S///0.11703149175501618\n",
"fraction is:1.0728938968695274\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.893419623229378, 3.1362280950164254]\n",
"[7.893419623229378, 3.1362280950164254]\n",
"QUALITY_R///0.11773508749703022\n",
"QUALITY_S///0.11773508749703022\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.822666959862244, 3.1362280950164254]\n",
"[7.893419623229378, 3.1362280950164254]\n",
"QUALITY_R///0.1186530633007108\n",
"QUALITY_S///0.11773508749703022\n",
"fraction is:1.0961429187766076\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.865452379110922, 3.135214519287545]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.822666959862244, 2.9894971527041436]\n",
"[7.822666959862244, 3.1362280950164254]\n",
"QUALITY_R///0.11941099827873879\n",
"QUALITY_S///0.1186530633007108\n",
"fraction is:1.0787397890186237\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.822666959862244, 3.1362280950164254]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.644143930786412, 2.9926759841564436]\n",
"[7.822666959862244, 2.9894971527041436]\n",
"QUALITY_R///0.1218162836317427\n",
"QUALITY_S///0.11941099827873879\n",
"fraction is:1.2719212279656762\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.822666959862244, 2.9894971527041436]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.644143930786412, 2.9926759841564436]\n",
"[7.644143930786412, 2.9926759841564436]\n",
"QUALITY_R///0.1218162836317427\n",
"QUALITY_S///0.1218162836317427\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.644143930786412, 2.8696219654048143]\n",
"[7.644143930786412, 2.9926759841564436]\n",
"QUALITY_R///0.12247356859796149\n",
"QUALITY_S///0.1218162836317427\n",
"fraction is:1.0679367293717983\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.644143930786412, 2.9926759841564436]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.564712928389627, 2.8871911937716375]\n",
"[7.644143930786412, 2.8696219654048143]\n",
"QUALITY_R///0.1235031481018567\n",
"QUALITY_S///0.12247356859796149\n",
"fraction is:1.1084447984240227\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.644143930786412, 2.8696219654048143]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.6225514069127644, 2.714026570630022]\n",
"[7.564712928389627, 2.8871911937716375]\n",
"QUALITY_R///0.12358944525417079\n",
"QUALITY_S///0.1235031481018567\n",
"fraction is:1.0086670585673865\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.564712928389627, 2.8871911937716375]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.6225514069127644, 2.573900562137037]\n",
"[7.6225514069127644, 2.714026570630022]\n",
"QUALITY_R///0.12429482683321927\n",
"QUALITY_S///0.12358944525417079\n",
"fraction is:1.0730855153444911\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.6225514069127644, 2.714026570630022]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.358616787499413, 2.692991710800732]\n",
"[7.6225514069127644, 2.573900562137037]\n",
"QUALITY_R///0.12761763814713797\n",
"QUALITY_S///0.12429482683321927\n",
"fraction is:1.3941447312734345\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.6225514069127644, 2.573900562137037]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.313121311270736, 2.7074851067988197]\n",
"[7.358616787499413, 2.692991710800732]\n",
"QUALITY_R///0.12823440908570732\n",
"QUALITY_S///0.12761763814713797\n",
"fraction is:1.0636188402137747\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.358616787499413, 2.692991710800732]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.3222163204329505, 2.805727083949419]\n",
"[7.313121311270736, 2.7074851067988197]\n",
"QUALITY_R///0.12752886728633867\n",
"QUALITY_S///0.12823440908570732\n",
"fraction is:0.9318772491075055\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.355596572676258, 2.597983585053195]\n",
"[7.3222163204329505, 2.805727083949419]\n",
"QUALITY_R///0.12819004332412157\n",
"QUALITY_S///0.12752886728633867\n",
"fraction is:1.0683523520514262\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.317981245534683, 2.660123635450271]\n",
"[7.355596572676258, 2.597983585053195]\n",
"QUALITY_R///0.12842790947431632\n",
"QUALITY_S///0.12819004332412157\n",
"fraction is:1.02407177303901\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.313121311270736, 2.7074851067988197]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.34288285286172, 2.8050046517688183]\n",
"[7.317981245534683, 2.660123635450271]\n",
"QUALITY_R///0.1272198945752878\n",
"QUALITY_S///0.12842790947431632\n",
"fraction is:0.8862098637390673\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.263201234584234, 2.7899374187169803]\n",
"[7.34288285286172, 2.8050046517688183]\n",
"QUALITY_R///0.12852467925860103\n",
"QUALITY_S///0.1272198945752878\n",
"fraction is:1.139373407018747\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.317981245534683, 2.660123635450271]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.160999326737772, 2.7450405679998306]\n",
"[7.263201234584234, 2.7899374187169803]\n",
"QUALITY_R///0.13039332563773143\n",
"QUALITY_S///0.12852467925860103\n",
"fraction is:1.2054640998693165\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.263201234584234, 2.7899374187169803]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.160999326737772, 2.779312702917254]\n",
"[7.160999326737772, 2.7450405679998306]\n",
"QUALITY_R///0.130183956959756\n",
"QUALITY_S///0.13039332563773143\n",
"fraction is:0.9792807867708447\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.160999326737772, 2.779312702917254]\n",
"[7.160999326737772, 2.779312702917254]\n",
"QUALITY_R///0.130183956959756\n",
"QUALITY_S///0.130183956959756\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.17268030839757, 2.799490370813058]\n",
"[7.160999326737772, 2.779312702917254]\n",
"QUALITY_R///0.129876165842826\n",
"QUALITY_S///0.130183956959756\n",
"fraction is:0.9696897425469362\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.208137097269806, 2.9168489189473257]\n",
"[7.17268030839757, 2.799490370813058]\n",
"QUALITY_R///0.1286018098714214\n",
"QUALITY_S///0.129876165842826\n",
"fraction is:0.8803501110730831\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.205509800825293, 2.799490370813058]\n",
"[7.17268030839757, 2.799490370813058]\n",
"QUALITY_R///0.12936218992870138\n",
"QUALITY_S///0.129876165842826\n",
"fraction is:0.9499009229931434\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.205509800825293, 2.741500103248985]\n",
"[7.205509800825293, 2.799490370813058]\n",
"QUALITY_R///0.1297114029259787\n",
"QUALITY_S///0.12936218992870138\n",
"fraction is:1.0355382084536675\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.205509800825293, 2.741500103248985]\n",
"[7.205509800825293, 2.741500103248985]\n",
"QUALITY_R///0.1297114029259787\n",
"QUALITY_S///0.1297114029259787\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.205509800825293, 2.7148952990628774]\n",
"[7.205509800825293, 2.741500103248985]\n",
"QUALITY_R///0.12987009923197976\n",
"QUALITY_S///0.1297114029259787\n",
"fraction is:1.0159962219539398\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.155205049151708, 2.8793438067467254]\n",
"[7.205509800825293, 2.7148952990628774]\n",
"QUALITY_R///0.12965427734331667\n",
"QUALITY_S///0.12987009923197976\n",
"fraction is:0.9786490401085439\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.076019889301692, 2.9858226982786897]\n",
"[7.155205049151708, 2.8793438067467254]\n",
"QUALITY_R///0.13020524872669195\n",
"QUALITY_S///0.12965427734331667\n",
"fraction is:1.0566432502591796\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.076019889301692, 2.945688245194562]\n",
"[7.076019889301692, 2.9858226982786897]\n",
"QUALITY_R///0.13046879396666192\n",
"QUALITY_S///0.13020524872669195\n",
"fraction is:1.026704875475392\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.160999326737772, 2.7450405679998306]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.214327550747897, 2.817044309418211]\n",
"[7.076019889301692, 2.945688245194562]\n",
"QUALITY_R///0.12911853360767567\n",
"QUALITY_S///0.13046879396666192\n",
"fraction is:0.8736931640052602\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.302334092139727, 2.8423021817003824]\n",
"[7.214327550747897, 2.817044309418211]\n",
"QUALITY_R///0.1276162669296112\n",
"QUALITY_S///0.12911853360767567\n",
"fraction is:0.8605129037452337\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.219276658767003, 2.883540121585966]\n",
"[7.302334092139727, 2.8423021817003824]\n",
"QUALITY_R///0.12863637367943903\n",
"QUALITY_S///0.1276162669296112\n",
"fraction is:1.1073952930905246\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.219276658767003, 2.9367795612040566]\n",
"[7.219276658767003, 2.883540121585966]\n",
"QUALITY_R///0.12830784336087447\n",
"QUALITY_S///0.12863637367943903\n",
"fraction is:0.9676807673846942\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.366591939200673, 2.897614094687716]\n",
"[7.219276658767003, 2.9367795612040566]\n",
"QUALITY_R///0.12632664093894383\n",
"QUALITY_S///0.12830784336087447\n",
"fraction is:0.8202712159978577\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.366591939200673, 3.0367346069794334]\n",
"[7.366591939200673, 2.897614094687716]\n",
"QUALITY_R///0.12550259130440392\n",
"QUALITY_S///0.12632664093894383\n",
"fraction is:0.9208989527538746\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.390857941546992, 2.885658800263547]\n",
"[7.366591939200673, 3.0367346069794334]\n",
"QUALITY_R///0.1260363729803275\n",
"QUALITY_S///0.12550259130440392\n",
"fraction is:1.054828471646442\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.4878776717718845, 2.9660428149619773]\n",
"[7.390857941546992, 2.885658800263547]\n",
"QUALITY_R///0.12416304985440624\n",
"QUALITY_S///0.1260363729803275\n",
"fraction is:0.8291681475806946\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.4110315806303015, 3.0297876839132285]\n",
"[7.4878776717718845, 2.9660428149619773]\n",
"QUALITY_R///0.12489953287601983\n",
"QUALITY_S///0.12416304985440624\n",
"fraction is:1.0764281614581415\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.414190261754436, 3.199351705674145]\n",
"[7.4110315806303015, 3.0297876839132285]\n",
"QUALITY_R///0.12383858807046069\n",
"QUALITY_S///0.12489953287601983\n",
"fraction is:0.8993396739494356\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.292646455024599, 3.392690598225915]\n",
"[7.414190261754436, 3.199351705674145]\n",
"QUALITY_R///0.12432864889464704\n",
"QUALITY_S///0.12383858807046069\n",
"fraction is:1.0502267386392867\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.292646455024599, 3.4702217617976583]\n",
"[7.292646455024599, 3.392690598225915]\n",
"QUALITY_R///0.12382049009834735\n",
"QUALITY_S///0.12432864889464704\n",
"fraction is:0.9504536523012379\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.239402565997967, 3.600874451744623]\n",
"[7.292646455024599, 3.4702217617976583]\n",
"QUALITY_R///0.12367824981404021\n",
"QUALITY_S///0.12382049009834735\n",
"fraction is:0.985876655121138\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.003656452669926, 3.6563781435786047]\n",
"[7.239402565997967, 3.600874451744623]\n",
"QUALITY_R///0.12657182944967166\n",
"QUALITY_S///0.12367824981404021\n",
"fraction is:1.335569728268918\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.96915951110775, 3.6563781435786047]\n",
"[7.003656452669926, 3.6563781435786047]\n",
"QUALITY_R///0.12706338196471467\n",
"QUALITY_S///0.12657182944967166\n",
"fraction is:1.0503834116867297\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.004788783632261, 3.7253792964624903]\n",
"[6.96915951110775, 3.6563781435786047]\n",
"QUALITY_R///0.12604267110371042\n",
"QUALITY_S///0.12706338196471467\n",
"fraction is:0.9029653611010359\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.09657767812202, 3.729171807893596]\n",
"[7.004788783632261, 3.7253792964624903]\n",
"QUALITY_R///0.12473896728872695\n",
"QUALITY_S///0.12604267110371042\n",
"fraction is:0.877770260841373\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.9173655635091045, 3.729171807893596]\n",
"[7.09657767812202, 3.729171807893596]\n",
"QUALITY_R///0.12725008157299\n",
"QUALITY_S///0.12473896728872695\n",
"fraction is:1.285453312390897\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.025799299280739, 3.8621168887863138]\n",
"[6.9173655635091045, 3.729171807893596]\n",
"QUALITY_R///0.12472958835068569\n",
"QUALITY_S///0.12725008157299\n",
"fraction is:0.777206403570253\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.917927110630484, 3.9128614537526643]\n",
"[6.9173655635091045, 3.729171807893596]\n",
"QUALITY_R///0.1258203092364348\n",
"QUALITY_S///0.12725008157299\n",
"fraction is:0.8667738019418251\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.98196169922242, 3.9128614537526643]\n",
"[6.917927110630484, 3.9128614537526643]\n",
"QUALITY_R///0.1249431307024202\n",
"QUALITY_S///0.1258203092364348\n",
"fraction is:0.9160192919935494\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.956228942561678, 4.001701616154439]\n",
"[6.98196169922242, 3.9128614537526643]\n",
"QUALITY_R///0.12460854873780638\n",
"QUALITY_S///0.1249431307024202\n",
"fraction is:0.9670953383937236\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.908357570723374, 3.8697969205545344]\n",
"[6.956228942561678, 4.001701616154439]\n",
"QUALITY_R///0.12628846735149774\n",
"QUALITY_S///0.12460854873780638\n",
"fraction is:1.1829269832025773\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.917667924468929, 3.8697969205545344]\n",
"[6.908357570723374, 3.8697969205545344]\n",
"QUALITY_R///0.12615903091785072\n",
"QUALITY_S///0.12628846735149774\n",
"fraction is:0.9871397653284474\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.036691130782362, 3.7711434013160465]\n",
"[6.917667924468929, 3.8697969205545344]\n",
"QUALITY_R///0.12525807769592204\n",
"QUALITY_S///0.12615903091785072\n",
"fraction is:0.9138440714985215\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.962449306702118, 3.826840641653044]\n",
"[7.036691130782362, 3.7711434013160465]\n",
"QUALITY_R///0.12586793165199\n",
"QUALITY_S///0.12525807769592204\n",
"fraction is:1.0628833913068687\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.062729785652656, 3.8444027625506334]\n",
"[6.962449306702118, 3.826840641653044]\n",
"QUALITY_R///0.12435888751375611\n",
"QUALITY_S///0.12586793165199\n",
"fraction is:0.8599298921414052\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.062729785652656, 3.8860197231744977]\n",
"[7.062729785652656, 3.8444027625506334]\n",
"QUALITY_R///0.12405067009876149\n",
"QUALITY_S///0.12435888751375611\n",
"fraction is:0.9696484057419789\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.094931951815353, 4.084102550762797]\n",
"[7.062729785652656, 3.8860197231744977]\n",
"QUALITY_R///0.12215307963262016\n",
"QUALITY_S///0.12405067009876149\n",
"fraction is:0.8271584165546059\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.190714228677854, 4.0312347072496335]\n",
"[7.094931951815353, 4.084102550762797]\n",
"QUALITY_R///0.12130597247442176\n",
"QUALITY_S///0.12215307963262016\n",
"fraction is:0.9187780339113287\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.190714228677854, 3.9797257269642508]\n",
"[7.190714228677854, 4.0312347072496335]\n",
"QUALITY_R///0.12167594323130265\n",
"QUALITY_S///0.12130597247442176\n",
"fraction is:1.037689986304533\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.190714228677854, 4.007934770684517]\n",
"[7.190714228677854, 3.9797257269642508]\n",
"QUALITY_R///0.12147349816125833\n",
"QUALITY_S///0.12167594323130265\n",
"fraction is:0.9799590371629479\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.190714228677854, 3.980659005052694]\n",
"[7.190714228677854, 4.007934770684517]\n",
"QUALITY_R///0.12166925219367256\n",
"QUALITY_S///0.12147349816125833\n",
"fraction is:1.0197682577938472\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.142616254129622, 3.8450724681126225]\n",
"[7.190714228677854, 3.980659005052694]\n",
"QUALITY_R///0.12327696693163477\n",
"QUALITY_S///0.12166925219367256\n",
"fraction is:1.174416553188483\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.131488834405751, 3.8450724681126225]\n",
"[7.142616254129622, 3.8450724681126225]\n",
"QUALITY_R///0.1234260218437268\n",
"QUALITY_S///0.12327696693163477\n",
"fraction is:1.0150171320407664\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.187620698041985, 3.8450724681126225]\n",
"[7.131488834405751, 3.8450724681126225]\n",
"QUALITY_R///0.1226772498172722\n",
"QUALITY_S///0.1234260218437268\n",
"fraction is:0.9278574177694626\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.187620698041985, 3.8605365828377374]\n",
"[7.187620698041985, 3.8450724681126225]\n",
"QUALITY_R///0.12256739718010196\n",
"QUALITY_S///0.1226772498172722\n",
"fraction is:0.9890748539549087\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.301281306268115, 3.7115676348313924]\n",
"[7.187620698041985, 3.8605365828377374]\n",
"QUALITY_R///0.12209252931456521\n",
"QUALITY_S///0.12256739718010196\n",
"fraction is:0.9536230736966769\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.301281306268115, 3.7609983711134585]\n",
"[7.301281306268115, 3.7115676348313924]\n",
"QUALITY_R///0.1217577834881784\n",
"QUALITY_S///0.12209252931456521\n",
"fraction is:0.9670794915278781\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.149485564055661, 3.773393325148716]\n",
"[7.301281306268115, 3.7609983711134585]\n",
"QUALITY_R///0.12369869157088846\n",
"QUALITY_S///0.1217577834881784\n",
"fraction is:1.2142065379464806\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.108334823334064, 3.773393325148716]\n",
"[7.149485564055661, 3.773393325148716]\n",
"QUALITY_R///0.12425771809790669\n",
"QUALITY_S///0.12369869157088846\n",
"fraction is:1.0574947344705385\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.108334823334064, 3.5268125504109773]\n",
"[7.108334823334064, 3.773393325148716]\n",
"QUALITY_R///0.12602133692805534\n",
"QUALITY_S///0.12425771809790669\n",
"fraction is:1.1928696598202302\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.108334823334064, 3.545365316971066]\n",
"[7.108334823334064, 3.5268125504109773]\n",
"QUALITY_R///0.12589024195859388\n",
"QUALITY_S///0.12602133692805534\n",
"fraction is:0.986976058239061\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.171685106926883, 3.597332684228933]\n",
"[7.108334823334064, 3.545365316971066]\n",
"QUALITY_R///0.12463648474859058\n",
"QUALITY_S///0.12589024195859388\n",
"fraction is:0.8821653922471657\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.28971738636795, 3.4001380536075434]\n",
"[7.171685106926883, 3.597332684228933]\n",
"QUALITY_R///0.12432108092008526\n",
"QUALITY_S///0.12463648474859058\n",
"fraction is:0.9689518266268701\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.192682579596186, 3.5109701919067233]\n",
"[7.171685106926883, 3.597332684228933]\n",
"QUALITY_R///0.12493989262155725\n",
"QUALITY_S///0.12463648474859058\n",
"fraction is:1.0308057596117026\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.247660191159482, 3.464307747671743]\n",
"[7.192682579596186, 3.5109701919067233]\n",
"QUALITY_R///0.124485608305896\n",
"QUALITY_S///0.12493989262155725\n",
"fraction is:0.9555879900606112\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.309199875113593, 3.421392267255092]\n",
"[7.247660191159482, 3.464307747671743]\n",
"QUALITY_R///0.12391057371810414\n",
"QUALITY_S///0.124485608305896\n",
"fraction is:0.9441186248829261\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.244765849219718, 3.34608514911435]\n",
"[7.309199875113593, 3.421392267255092]\n",
"QUALITY_R///0.12531080572755846\n",
"QUALITY_S///0.12391057371810414\n",
"fraction is:1.150300486606455\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.181570660847063, 3.448228491609956]\n",
"[7.244765849219718, 3.34608514911435]\n",
"QUALITY_R///0.12552552524332028\n",
"QUALITY_S///0.12531080572755846\n",
"fraction is:1.0217041327449523\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.275073913842758, 3.4698177738524887]\n",
"[7.181570660847063, 3.448228491609956]\n",
"QUALITY_R///0.12406686649924832\n",
"QUALITY_S///0.12552552524332028\n",
"fraction is:0.8642736166221642\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.162667505284196, 3.4903855560859998]\n",
"[7.275073913842758, 3.4698177738524887]\n",
"QUALITY_R///0.125504406768572\n",
"QUALITY_S///0.12406686649924832\n",
"fraction is:1.1546000730719477\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.162667505284196, 3.336891015637142]\n",
"[7.162667505284196, 3.4903855560859998]\n",
"QUALITY_R///0.12655323657666795\n",
"QUALITY_S///0.125504406768572\n",
"fraction is:1.1105806435037637\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.235816230681525, 3.390441704232094]\n",
"[7.162667505284196, 3.336891015637142]\n",
"QUALITY_R///0.12514465356640847\n",
"QUALITY_S///0.12655323657666795\n",
"fraction is:0.868612384461547\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.251311718232178, 3.38004399654101]\n",
"[7.235816230681525, 3.390441704232094]\n",
"QUALITY_R///0.12499392714812577\n",
"QUALITY_S///0.12514465356640847\n",
"fraction is:0.9850403818697927\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.1518019336181275, 3.3694338124263616]\n",
"[7.251311718232178, 3.38004399654101]\n",
"QUALITY_R///0.12648973515005396\n",
"QUALITY_S///0.12499392714812577\n",
"fraction is:1.1613473041071745\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.057019017533071, 3.548142316264441]\n",
"[7.1518019336181275, 3.3694338124263616]\n",
"QUALITY_R///0.1266017222841024\n",
"QUALITY_S///0.12648973515005396\n",
"fraction is:1.0112616537265897\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.139647980377322, 3.455355112882755]\n",
"[7.057019017533071, 3.548142316264441]\n",
"QUALITY_R///0.12607418538446763\n",
"QUALITY_S///0.1266017222841024\n",
"fraction is:0.9486136367686316\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.996782125023032, 3.4218251556392567]\n",
"[7.139647980377322, 3.455355112882755]\n",
"QUALITY_R///0.12839113094089538\n",
"QUALITY_S///0.12607418538446763\n",
"fraction is:1.2607345857462589\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.009155127691224, 3.3056027528040706]\n",
"[6.996782125023032, 3.4218251556392567]\n",
"QUALITY_R///0.12904003006576162\n",
"QUALITY_S///0.12839113094089538\n",
"fraction is:1.067041549967173\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.0174416732459, 3.3056027528040706]\n",
"[7.009155127691224, 3.3056027528040706]\n",
"QUALITY_R///0.1289153378452121\n",
"QUALITY_S///0.12904003006576162\n",
"fraction is:0.9876081965769192\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.078696208001443, 3.271300842218481]\n",
"[7.0174416732459, 3.3056027528040706]\n",
"QUALITY_R///0.12823743486556108\n",
"QUALITY_S///0.1289153378452121\n",
"fraction is:0.9344564104431078\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.117251091706412, 3.1962013598116092]\n",
"[7.078696208001443, 3.271300842218481]\n",
"QUALITY_R///0.1281725138456745\n",
"QUALITY_S///0.12823743486556108\n",
"fraction is:0.9935289261751871\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.121321871989097, 3.204207666842216]\n",
"[7.117251091706412, 3.1962013598116092]\n",
"QUALITY_R///0.12805769417314636\n",
"QUALITY_S///0.1281725138456745\n",
"fraction is:0.9885836989670966\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.181838057946864, 3.2143633560580325]\n",
"[7.121321871989097, 3.204207666842216]\n",
"QUALITY_R///0.1270914507530912\n",
"QUALITY_S///0.12805769417314636\n",
"fraction is:0.9078970008471035\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.273840976139954, 3.1579929591218274]\n",
"[7.181838057946864, 3.2143633560580325]\n",
"QUALITY_R///0.12610663137527992\n",
"QUALITY_S///0.1270914507530912\n",
"fraction is:0.9062120606670329\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.224725510602666, 3.160889616979674]\n",
"[7.273840976139954, 3.1579929591218274]\n",
"QUALITY_R///0.12680813564539484\n",
"QUALITY_S///0.12610663137527992\n",
"fraction is:1.0726695275898428\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.238728007720449, 3.160889616979674]\n",
"[7.224725510602666, 3.160889616979674]\n",
"QUALITY_R///0.12660215345469877\n",
"QUALITY_S///0.12680813564539484\n",
"fraction is:0.979612475123328\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.238728007720449, 3.179104976636871]\n",
"[7.238728007720449, 3.160889616979674]\n",
"QUALITY_R///0.12648514492568633\n",
"QUALITY_S///0.12660215345469877\n",
"fraction is:0.9883673358633724\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.298343577446729, 3.430121707711376]\n",
"[7.238728007720449, 3.179104976636871]\n",
"QUALITY_R///0.12400463954488183\n",
"QUALITY_S///0.12648514492568633\n",
"fraction is:0.7803205063809824\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.112569418659655, 3.179104976636871]\n",
"[7.238728007720449, 3.179104976636871]\n",
"QUALITY_R///0.12835780509907768\n",
"QUALITY_S///0.12648514492568633\n",
"fraction is:1.2059480454743086\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.137884133041518, 3.1628256884774415]\n",
"[7.112569418659655, 3.179104976636871]\n",
"QUALITY_R///0.12808638519463186\n",
"QUALITY_S///0.12835780509907768\n",
"fraction is:0.973223043340557\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.1334646191322415, 2.97342263444418]\n",
"[7.137884133041518, 3.1628256884774415]\n",
"QUALITY_R///0.12939354598130595\n",
"QUALITY_S///0.12808638519463186\n",
"fraction is:1.1396441660832166\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.104833456083344, 2.8928395892857175]\n",
"[7.1334646191322415, 2.97342263444418]\n",
"QUALITY_R///0.13035784564432576\n",
"QUALITY_S///0.12939354598130595\n",
"fraction is:1.1012324550619066\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.104833456083344, 3.058427596743274]\n",
"[7.104833456083344, 2.8928395892857175]\n",
"QUALITY_R///0.12927987548306247\n",
"QUALITY_S///0.13035784564432576\n",
"fraction is:0.8978098188505528\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.258925536994462, 3.013751619748358]\n",
"[7.104833456083344, 2.8928395892857175]\n",
"QUALITY_R///0.12723151009678704\n",
"QUALITY_S///0.13035784564432576\n",
"fraction is:0.731517924725966\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.202656754042414, 3.013751619748358]\n",
"[7.258925536994462, 3.013751619748358]\n",
"QUALITY_R///0.1280778681106984\n",
"QUALITY_S///0.12723151009678704\n",
"fraction is:1.0883206296525534\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.239783515672815, 3.089022151245115]\n",
"[7.202656754042414, 3.013751619748358]\n",
"QUALITY_R///0.12704467913060546\n",
"QUALITY_S///0.1280778681106984\n",
"fraction is:0.9018393328519924\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.293761836180328, 3.0721647877719294]\n",
"[7.239783515672815, 3.089022151245115]\n",
"QUALITY_R///0.1263525400851841\n",
"QUALITY_S///0.12704467913060546\n",
"fraction is:0.9331270586127659\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.263429721840923, 3.206493982324024]\n",
"[7.293761836180328, 3.0721647877719294]\n",
"QUALITY_R///0.12594916446384066\n",
"QUALITY_S///0.1263525400851841\n",
"fraction is:0.9604651677525405\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.206881275533066, 3.2467279204638415]\n",
"[7.263429721840923, 3.206493982324024]\n",
"QUALITY_R///0.12651096521843458\n",
"QUALITY_S///0.12594916446384066\n",
"fraction is:1.0577881482738414\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.206881275533066, 3.2467279204638415]\n",
"[7.206881275533066, 3.2467279204638415]\n",
"QUALITY_R///0.12651096521843458\n",
"QUALITY_S///0.12651096521843458\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.079239040574693, 3.2720442277358233]\n",
"[7.206881275533066, 3.2467279204638415]\n",
"QUALITY_R///0.12822420432139792\n",
"QUALITY_S///0.12651096521843458\n",
"fraction is:1.1868751278405925\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.079239040574693, 3.182866989309603]\n",
"[7.079239040574693, 3.2720442277358233]\n",
"QUALITY_R///0.12883531585257843\n",
"QUALITY_S///0.12822420432139792\n",
"fraction is:1.0630170652819901\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.079239040574693, 3.0768748585659846]\n",
"[7.079239040574693, 3.182866989309603]\n",
"QUALITY_R///0.1295506520149173\n",
"QUALITY_S///0.12883531585257843\n",
"fraction is:1.0741542591152018\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.185462802758929, 2.997297691030374]\n",
"[7.079239040574693, 3.0768748585659846]\n",
"QUALITY_R///0.1284432040237881\n",
"QUALITY_S///0.1295506520149173\n",
"fraction is:0.895167167236676\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.15542167638125, 2.982960972990921]\n",
"[7.185462802758929, 2.997297691030374]\n",
"QUALITY_R///0.12899401864809296\n",
"QUALITY_S///0.1284432040237881\n",
"fraction is:1.0566266865476381\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.088858967944526, 3.172222529304321]\n",
"[7.15542167638125, 2.982960972990921]\n",
"QUALITY_R///0.12876197571949916\n",
"QUALITY_S///0.12899401864809296\n",
"fraction is:0.977062856418018\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.12613298144739, 2.987016536164596]\n",
"[7.088858967944526, 3.172222529304321]\n",
"QUALITY_R///0.12941903095239876\n",
"QUALITY_S///0.12876197571949916\n",
"fraction is:1.0679121955886586\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.154850643224101, 3.036252152503817]\n",
"[7.12613298144739, 2.987016536164596]\n",
"QUALITY_R///0.1286598416479143\n",
"QUALITY_S///0.12941903095239876\n",
"fraction is:0.9268913461793475\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.12613298144739, 2.9214604103773167]\n",
"[7.12613298144739, 2.987016536164596]\n",
"QUALITY_R///0.1298408952006354\n",
"QUALITY_S///0.12941903095239876\n",
"fraction is:1.043088918293681\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.097422516726427, 2.8825365946612185]\n",
"[7.12613298144739, 2.9214604103773167]\n",
"QUALITY_R///0.13054071256386654\n",
"QUALITY_S///0.1298408952006354\n",
"fraction is:1.0724885934902084\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.076019889301692, 2.945688245194562]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.103807432012038, 2.8825365946612185]\n",
"[7.097422516726427, 2.8825365946612185]\n",
"QUALITY_R///0.13043997623817974\n",
"QUALITY_S///0.13054071256386654\n",
"fraction is:0.9899769365206258\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.100170248640311, 2.97073243551912]\n",
"[7.103807432012038, 2.8825365946612185]\n",
"QUALITY_R///0.1299274815887198\n",
"QUALITY_S///0.13043997623817974\n",
"fraction is:0.9500416388819772\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.082544389216828, 2.97073243551912]\n",
"[7.100170248640311, 2.97073243551912]\n",
"QUALITY_R///0.13020249884065696\n",
"QUALITY_S///0.1299274815887198\n",
"fraction is:1.0278833884036849\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.10050762939223, 2.94841564582606]\n",
"[7.082544389216828, 2.97073243551912]\n",
"QUALITY_R///0.13006731804093533\n",
"QUALITY_S///0.13020249884065696\n",
"fraction is:0.986572878946295\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.906799924218089, 2.94841564582606]\n",
"[7.10050762939223, 2.94841564582606]\n",
"QUALITY_R///0.13315940460634476\n",
"QUALITY_S///0.13006731804093533\n",
"fraction is:1.3623466033786935\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[7.097422516726427, 2.8825365946612185]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.051822080336191, 2.892299688633724]\n",
"[6.906799924218089, 2.94841564582606]\n",
"QUALITY_R///0.13120061909036365\n",
"QUALITY_S///0.13315940460634476\n",
"fraction is:0.8221120728128897\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.929207412876897, 2.842445492473061]\n",
"[7.051822080336191, 2.892299688633724]\n",
"QUALITY_R///0.1335193077850891\n",
"QUALITY_S///0.13120061909036365\n",
"fraction is:1.2609543683752438\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.906799924218089, 2.94841564582606]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.995885368030315, 2.842445492473061]\n",
"[6.929207412876897, 2.842445492473061]\n",
"QUALITY_R///0.13242778824851253\n",
"QUALITY_S///0.1335193077850891\n",
"fraction is:0.8965941663835537\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.995885368030315, 2.848584783751192]\n",
"[6.995885368030315, 2.842445492473061]\n",
"QUALITY_R///0.1323872358081432\n",
"QUALITY_S///0.13242778824851253\n",
"fraction is:0.9959529673616754\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.055820871493981, 2.7871300138203297]\n",
"[6.995885368030315, 2.848584783751192]\n",
"QUALITY_R///0.1318157003770649\n",
"QUALITY_S///0.1323872358081432\n",
"fraction is:0.944449044591535\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.170687408333625, 2.9303898657275638]\n",
"[7.055820871493981, 2.7871300138203297]\n",
"QUALITY_R///0.12909305205003818\n",
"QUALITY_S///0.1318157003770649\n",
"fraction is:0.7616525238813162\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.195723194885559, 2.896250150256778]\n",
"[7.170687408333625, 2.9303898657275638]\n",
"QUALITY_R///0.12892048003339654\n",
"QUALITY_S///0.12909305205003818\n",
"fraction is:0.9828908509591239\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.098027440465056, 2.896250150256778]\n",
"[7.195723194885559, 2.896250150256778]\n",
"QUALITY_R///0.13044312651281034\n",
"QUALITY_S///0.12892048003339654\n",
"fraction is:1.164468369813755\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.898931668140743, 2.896250150256778]\n",
"[7.098027440465056, 2.896250150256778]\n",
"QUALITY_R///0.13365028439468735\n",
"QUALITY_S///0.13044312651281034\n",
"fraction is:1.3781138489943965\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.929207412876897, 2.842445492473061]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.9957264258887175, 2.8268051472902833]\n",
"[6.898931668140743, 2.896250150256778]\n",
"QUALITY_R///0.13253345950950504\n",
"QUALITY_S///0.13365028439468735\n",
"fraction is:0.8943281718879775\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.916577784620183, 2.8268051472902833]\n",
"[6.9957264258887175, 2.8268051472902833]\n",
"QUALITY_R///0.13383406523992133\n",
"QUALITY_S///0.13253345950950504\n",
"fraction is:1.1388973677129697\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.898931668140743, 2.896250150256778]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.916577784620183, 2.9579460655372025]\n",
"[6.916577784620183, 2.8268051472902833]\n",
"QUALITY_R///0.13293395781161937\n",
"QUALITY_S///0.13383406523992133\n",
"fraction is:0.9139213671164315\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.774279202019106, 2.8312279923147847]\n",
"[6.916577784620183, 2.8268051472902833]\n",
"QUALITY_R///0.13620046297777944\n",
"QUALITY_S///0.13383406523992133\n",
"fraction is:1.266984634483279\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.916577784620183, 2.8268051472902833]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.774279202019106, 2.8312279923147847]\n",
"[6.774279202019106, 2.8312279923147847]\n",
"QUALITY_R///0.13620046297777944\n",
"QUALITY_S///0.13620046297777944\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.118060263503863, 2.8312279923147847]\n",
"[6.774279202019106, 2.8312279923147847]\n",
"QUALITY_R///0.13054047870112057\n",
"QUALITY_S///0.13620046297777944\n",
"fraction is:0.5677929634556971\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.787798379390286, 2.997951362630462]\n",
"[6.774279202019106, 2.8312279923147847]\n",
"QUALITY_R///0.13476413484005575\n",
"QUALITY_S///0.13620046297777944\n",
"fraction is:0.8662057484940848\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.826564760116228, 2.8312279923147847]\n",
"[6.774279202019106, 2.8312279923147847]\n",
"QUALITY_R///0.13531088858193693\n",
"QUALITY_S///0.13620046297777944\n",
"fraction is:0.9148845106109926\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.726121536395429, 2.907739221056047]\n",
"[6.826564760116228, 2.8312279923147847]\n",
"QUALITY_R///0.136467870418757\n",
"QUALITY_S///0.13531088858193693\n",
"fraction is:1.1226569847974415\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.774279202019106, 2.8312279923147847]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.582157909197203, 2.9723790376768298]\n",
"[6.726121536395429, 2.907739221056047]\n",
"QUALITY_R///0.1384624064235802\n",
"QUALITY_S///0.136467870418757\n",
"fraction is:1.2207355665753994\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.726121536395429, 2.907739221056047]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.5772461339607835, 2.9723790376768298]\n",
"[6.582157909197203, 2.9723790376768298]\n",
"QUALITY_R///0.13854827696412947\n",
"QUALITY_S///0.1384624064235802\n",
"fraction is:1.0086240285618502\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.582157909197203, 2.9723790376768298]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.66261908728602, 2.9723790376768298]\n",
"[6.5772461339607835, 2.9723790376768298]\n",
"QUALITY_R///0.13706923901697873\n",
"QUALITY_S///0.13854827696412947\n",
"fraction is:0.8625140893644129\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.661313059129719, 3.1125227888923077]\n",
"[6.5772461339607835, 2.9723790376768298]\n",
"QUALITY_R///0.13600610562601073\n",
"QUALITY_S///0.13854827696412947\n",
"fraction is:0.7755233914131415\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.811536707613908, 2.9058684749882318]\n",
"[6.661313059129719, 3.1125227888923077]\n",
"QUALITY_R///0.1350351732212991\n",
"QUALITY_S///0.13600610562601073\n",
"fraction is:0.9074713891285797\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.87499521029479, 2.9768157941638136]\n",
"[6.811536707613908, 2.9058684749882318]\n",
"QUALITY_R///0.1334793608326688\n",
"QUALITY_S///0.1350351732212991\n",
"fraction is:0.8559175403366052\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.970282004685265, 2.730237442284022]\n",
"[6.811536707613908, 2.9058684749882318]\n",
"QUALITY_R///0.13358408012121317\n",
"QUALITY_S///0.1350351732212991\n",
"fraction is:0.8649277426841967\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.800280619026251, 3.2388161693402164]\n",
"[6.811536707613908, 2.9058684749882318]\n",
"QUALITY_R///0.13276367558450963\n",
"QUALITY_S///0.1350351732212991\n",
"fraction is:0.7968014414386404\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.781006964785976, 2.9310186693954297]\n",
"[6.811536707613908, 2.9058684749882318]\n",
"QUALITY_R///0.13536655626445288\n",
"QUALITY_S///0.1350351732212991\n",
"fraction is:1.0336934936264197\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.934343013723752, 2.9310186693954297]\n",
"[6.781006964785976, 2.9310186693954297]\n",
"QUALITY_R///0.13283131360157355\n",
"QUALITY_S///0.13536655626445288\n",
"fraction is:0.7760609125790842\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.8388939989757676, 2.9126584446848907]\n",
"[6.934343013723752, 2.9310186693954297]\n",
"QUALITY_R///0.13452962774615793\n",
"QUALITY_S///0.13283131360157355\n",
"fraction is:1.1851050429029677\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.960211132955433, 2.9126584446848907]\n",
"[6.8388939989757676, 2.9126584446848907]\n",
"QUALITY_R///0.13253683208775144\n",
"QUALITY_S///0.13452962774615793\n",
"fraction is:0.8193208072018628\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.950851043895214, 2.8274278137596744]\n",
"[6.8388939989757676, 2.9126584446848907]\n",
"QUALITY_R///0.13326384307226283\n",
"QUALITY_S///0.13452962774615793\n",
"fraction is:0.8811050088209788\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.950851043895214, 2.796185784173701]\n",
"[6.950851043895214, 2.8274278137596744]\n",
"QUALITY_R///0.13347223432212282\n",
"QUALITY_S///0.13326384307226283\n",
"fraction is:1.021057775739972\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.076908079180886, 2.6692547909013324]\n",
"[6.950851043895214, 2.796185784173701]\n",
"QUALITY_R///0.1322127470860236\n",
"QUALITY_S///0.13347223432212282\n",
"fraction is:0.8816600539692184\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.238463074036882, 2.7089825334352193]\n",
"[7.076908079180886, 2.6692547909013324]\n",
"QUALITY_R///0.1293866417909716\n",
"QUALITY_S///0.1322127470860236\n",
"fraction is:0.7538133187414345\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.238463074036882, 2.7109645390465853]\n",
"[7.238463074036882, 2.7089825334352193]\n",
"QUALITY_R///0.12937500911366867\n",
"QUALITY_S///0.1293866417909716\n",
"fraction is:0.9988374086033365\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.259482304149326, 2.724931675615531]\n",
"[7.238463074036882, 2.7109645390465853]\n",
"QUALITY_R///0.12896481573537638\n",
"QUALITY_S///0.12937500911366867\n",
"fraction is:0.9598105691154587\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.204145991117993, 2.7421159296961344]\n",
"[7.259482304149326, 2.724931675615531]\n",
"QUALITY_R///0.12972916593815206\n",
"QUALITY_S///0.12896481573537638\n",
"fraction is:1.0794320468634493\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.371913269404833, 2.581838859023611]\n",
"[7.204145991117993, 2.7421159296961344]\n",
"QUALITY_R///0.12802534017997766\n",
"QUALITY_S///0.12972916593815206\n",
"fraction is:0.8433421125728424\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.4132432777390935, 2.764292274819378]\n",
"[7.371913269404833, 2.581838859023611]\n",
"QUALITY_R///0.12639257107198146\n",
"QUALITY_S///0.12802534017997766\n",
"fraction is:0.8493559600094022\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.36140596062936, 2.581992484483833]\n",
"[7.4132432777390935, 2.764292274819378]\n",
"QUALITY_R///0.1281872383295354\n",
"QUALITY_S///0.12639257107198146\n",
"fraction is:1.196579088139794\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.425505325619689, 2.581992484483833]\n",
"[7.36140596062936, 2.581992484483833]\n",
"QUALITY_R///0.1272005081456114\n",
"QUALITY_S///0.1281872383295354\n",
"fraction is:0.9060389176552011\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.425505325619689, 2.4661743865698074]\n",
"[7.425505325619689, 2.581992484483833]\n",
"QUALITY_R///0.12780646459257627\n",
"QUALITY_S///0.1272005081456114\n",
"fraction is:1.062469212256128\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.516891220657781, 2.4962526092351878]\n",
"[7.425505325619689, 2.4661743865698074]\n",
"QUALITY_R///0.12625404135827126\n",
"QUALITY_S///0.12780646459257627\n",
"fraction is:0.8562076731624668\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.497977938250403, 2.617236026919605]\n",
"[7.516891220657781, 2.4962526092351878]\n",
"QUALITY_R///0.12591862423401395\n",
"QUALITY_S///0.12625404135827126\n",
"fraction is:0.9670145738665316\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.54971022699717, 2.7084976129259934]\n",
"[7.497977938250403, 2.617236026919605]\n",
"QUALITY_R///0.1246750180259267\n",
"QUALITY_S///0.12591862423401395\n",
"fraction is:0.8830613331638277\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.54971022699717, 2.676986107604019]\n",
"[7.54971022699717, 2.7084976129259934]\n",
"QUALITY_R///0.12483978206867827\n",
"QUALITY_S///0.1246750180259267\n",
"fraction is:1.0166128887850532\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.610924121906776, 2.6306308876671256]\n",
"[7.54971022699717, 2.676986107604019]\n",
"QUALITY_R///0.12418156114604606\n",
"QUALITY_S///0.12483978206867827\n",
"fraction is:0.9362974240307079\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.610924121906776, 2.673690661273339]\n",
"[7.610924121906776, 2.6306308876671256]\n",
"QUALITY_R///0.12396344012368127\n",
"QUALITY_S///0.12418156114604606\n",
"fraction is:0.9784240614733082\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.592123632251992, 2.5995831147909647]\n",
"[7.610924121906776, 2.673690661273339]\n",
"QUALITY_R///0.12461296359212168\n",
"QUALITY_S///0.12396344012368127\n",
"fraction is:1.067108172100416\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.583296521036269, 2.564114178212902]\n",
"[7.592123632251992, 2.5995831147909647]\n",
"QUALITY_R///0.12492090750890032\n",
"QUALITY_S///0.12461296359212168\n",
"fraction is:1.0312734436841797\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.413443953587436, 2.6862122933008594]\n",
"[7.583296521036269, 2.564114178212902]\n",
"QUALITY_R///0.1268213859801782\n",
"QUALITY_S///0.12492090750890032\n",
"fraction is:1.209307458161496\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.413443953587436, 2.6862122933008594]\n",
"[7.413443953587436, 2.6862122933008594]\n",
"QUALITY_R///0.1268213859801782\n",
"QUALITY_S///0.1268213859801782\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.247174596164334, 2.5262993945597456]\n",
"[7.413443953587436, 2.6862122933008594]\n",
"QUALITY_R///0.13029525735823091\n",
"QUALITY_S///0.1268213859801782\n",
"fraction is:1.415364560449343\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.259173961247184, 2.622857006987606]\n",
"[7.247174596164334, 2.5262993945597456]\n",
"QUALITY_R///0.12955913131092253\n",
"QUALITY_S///0.13029525735823091\n",
"fraction is:0.9290315265563313\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.259173961247184, 2.608205805945526]\n",
"[7.259173961247184, 2.622857006987606]\n",
"QUALITY_R///0.12964254868726455\n",
"QUALITY_S///0.12955913131092253\n",
"fraction is:1.008376626872396\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.423566320540671, 2.559577282091595]\n",
"[7.259173961247184, 2.608205805945526]\n",
"QUALITY_R///0.12734899392854968\n",
"QUALITY_S///0.12964254868726455\n",
"fraction is:0.7950458636456615\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.238648594547668, 2.6584818928194394]\n",
"[7.259173961247184, 2.608205805945526]\n",
"QUALITY_R///0.1296782811628227\n",
"QUALITY_S///0.12964254868726455\n",
"fraction is:1.0035796392155902\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.238648594547668, 2.6584818928194394]\n",
"[7.238648594547668, 2.6584818928194394]\n",
"QUALITY_R///0.1296782811628227\n",
"QUALITY_S///0.1296782811628227\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.287099336594205, 2.61861296741791]\n",
"[7.238648594547668, 2.6584818928194394]\n",
"QUALITY_R///0.1291436296541643\n",
"QUALITY_S///0.1296782811628227\n",
"fraction is:0.9479389752807151\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.376823958284261, 2.6584818928194394]\n",
"[7.238648594547668, 2.6584818928194394]\n",
"QUALITY_R///0.12753083628394832\n",
"QUALITY_S///0.1296782811628227\n",
"fraction is:0.8067475476149267\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.4655150049168615, 2.712968892587313]\n",
"[7.376823958284261, 2.6584818928194394]\n",
"QUALITY_R///0.12589415732037113\n",
"QUALITY_S///0.12753083628394832\n",
"fraction is:0.8490239390072911\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.376823958284261, 2.501382007145767]\n",
"[7.376823958284261, 2.6584818928194394]\n",
"QUALITY_R///0.1283799193679343\n",
"QUALITY_S///0.12753083628394832\n",
"fraction is:1.0886172450635527\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.376823958284261, 2.3684398623681826]\n",
"[7.376823958284261, 2.501382007145767]\n",
"QUALITY_R///0.12907036526913573\n",
"QUALITY_S///0.1283799193679343\n",
"fraction is:1.0714839856828107\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.376823958284261, 2.4799078365042884]\n",
"[7.376823958284261, 2.3684398623681826]\n",
"QUALITY_R///0.12849323614737193\n",
"QUALITY_S///0.12907036526913573\n",
"fraction is:0.9439208967377286\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.283233979473957, 2.4799078365042884]\n",
"[7.376823958284261, 2.4799078365042884]\n",
"QUALITY_R///0.1299738169873834\n",
"QUALITY_S///0.12849323614737193\n",
"fraction is:1.1595802474673669\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.268853913303186, 2.5188480855365203]\n",
"[7.283233979473957, 2.4799078365042884]\n",
"QUALITY_R///0.12998985625666662\n",
"QUALITY_S///0.1299738169873834\n",
"fraction is:1.0016052139071001\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.259529659165152, 2.474355984406039]\n",
"[7.268853913303186, 2.5188480855365203]\n",
"QUALITY_R///0.1303844038604902\n",
"QUALITY_S///0.12998985625666662\n",
"fraction is:1.040243437605076\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.353449426419303, 2.474355984406039]\n",
"[7.259529659165152, 2.474355984406039]\n",
"QUALITY_R///0.1288894659333972\n",
"QUALITY_S///0.1303844038604902\n",
"fraction is:0.86114378337291\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.228441359116704, 2.4669728693094655]\n",
"[7.353449426419303, 2.474355984406039]\n",
"QUALITY_R///0.13092738286982356\n",
"QUALITY_S///0.1288894659333972\n",
"fraction is:1.2260427343584557\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.390171690693069, 2.1948996197477793]\n",
"[7.228441359116704, 2.4669728693094655]\n",
"QUALITY_R///0.12971464647378753\n",
"QUALITY_S///0.13092738286982356\n",
"fraction is:0.885791538780874\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.207652529109425, 2.3306206407900145]\n",
"[7.228441359116704, 2.4669728693094655]\n",
"QUALITY_R///0.13201156494804514\n",
"QUALITY_S///0.13092738286982356\n",
"fraction is:1.1145137463036687\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.024607927892242, 2.24816012635723]\n",
"[7.207652529109425, 2.3306206407900145]\n",
"QUALITY_R///0.13558235798962212\n",
"QUALITY_S///0.13201156494804514\n",
"fraction is:1.429149202833685\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.053393339182349, 2.1706600808808636]\n",
"[7.024607927892242, 2.24816012635723]\n",
"QUALITY_R///0.13550418783220466\n",
"QUALITY_S///0.13558235798962212\n",
"fraction is:0.9922134576703955\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.046220704563043, 2.2175615824258808]\n",
"[7.053393339182349, 2.1706600808808636]\n",
"QUALITY_R///0.1353741475254628\n",
"QUALITY_S///0.13550418783220466\n",
"fraction is:0.9870801564137641\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.046220704563043, 2.2175615824258808]\n",
"[7.046220704563043, 2.2175615824258808]\n",
"QUALITY_R///0.1353741475254628\n",
"QUALITY_S///0.1353741475254628\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.046220704563043, 2.2491011558099006]\n",
"[7.046220704563043, 2.2175615824258808]\n",
"QUALITY_R///0.13519973556815992\n",
"QUALITY_S///0.1353741475254628\n",
"fraction is:0.982710021511182\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.977225531050899, 2.2491011558099006]\n",
"[7.046220704563043, 2.2491011558099006]\n",
"QUALITY_R///0.13641139024746946\n",
"QUALITY_S///0.13519973556815992\n",
"fraction is:1.1288116790479377\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.097019866656647, 2.3706333842492175]\n",
"[6.977225531050899, 2.2491011558099006]\n",
"QUALITY_R///0.13364542583489664\n",
"QUALITY_S///0.13641139024746946\n",
"fraction is:0.758360478366827\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.097019866656647, 2.376654634615917]\n",
"[7.097019866656647, 2.3706333842492175]\n",
"QUALITY_R///0.13361132238533896\n",
"QUALITY_S///0.13364542583489664\n",
"fraction is:0.9965954636655807\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.040943718518787, 2.228956961798615]\n",
"[7.097019866656647, 2.376654634615917]\n",
"QUALITY_R///0.1354035159166886\n",
"QUALITY_S///0.13361132238533896\n",
"fraction is:1.1962831238434475\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.134170510576472, 2.111092251694104]\n",
"[7.040943718518787, 2.228956961798615]\n",
"QUALITY_R///0.13440920996602096\n",
"QUALITY_S///0.1354035159166886\n",
"fraction is:0.9053527836375004\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.003119129088912, 2.228956961798615]\n",
"[7.040943718518787, 2.228956961798615]\n",
"QUALITY_R///0.13606773806272637\n",
"QUALITY_S///0.1354035159166886\n",
"fraction is:1.0686778333133384\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.8644780367651395, 2.2317007014021946]\n",
"[7.003119129088912, 2.228956961798615]\n",
"QUALITY_R///0.1385398432136589\n",
"QUALITY_S///0.13606773806272637\n",
"fraction is:1.2804486381721618\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.878872687798368, 2.2317007014021946]\n",
"[6.8644780367651395, 2.2317007014021946]\n",
"QUALITY_R///0.13827757042860883\n",
"QUALITY_S///0.1385398432136589\n",
"fraction is:0.9741136693491941\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.990984856700149, 2.384330699140799]\n",
"[6.878872687798368, 2.2317007014021946]\n",
"QUALITY_R///0.13538395236607628\n",
"QUALITY_S///0.13827757042860883\n",
"fraction is:0.7487412571213373\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.058252573663551, 2.2386086770343328]\n",
"[6.990984856700149, 2.384330699140799]\n",
"QUALITY_R///0.13504847863057284\n",
"QUALITY_S///0.13538395236607628\n",
"fraction is:0.9670090994920213\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.058252573663551, 2.2445923278456847]\n",
"[7.058252573663551, 2.2386086770343328]\n",
"QUALITY_R///0.13501545428496764\n",
"QUALITY_S///0.13504847863057284\n",
"fraction is:0.9967030124786795\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.195829782245848, 2.3245523164065376]\n",
"[7.058252573663551, 2.2445923278456847]\n",
"QUALITY_R///0.13224053462141858\n",
"QUALITY_S///0.13501545428496764\n",
"fraction is:0.7576816515240066\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.293672852778444, 2.2149525174092517]\n",
"[7.195829782245848, 2.3245523164065376]\n",
"QUALITY_R///0.1311892310625309\n",
"QUALITY_S///0.13224053462141858\n",
"fraction is:0.9002071676320642\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.419872169918621, 2.056480774892528]\n",
"[7.293672852778444, 2.2149525174092517]\n",
"QUALITY_R///0.1298771220482671\n",
"QUALITY_S///0.1311892310625309\n",
"fraction is:0.8770327874188732\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.419872169918621, 2.056480774892528]\n",
"[7.419872169918621, 2.056480774892528]\n",
"QUALITY_R///0.1298771220482671\n",
"QUALITY_S///0.1298771220482671\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.481759295724324, 2.072427010805221]\n",
"[7.419872169918621, 2.056480774892528]\n",
"QUALITY_R///0.1288081569951666\n",
"QUALITY_S///0.1298771220482671\n",
"fraction is:0.8986186704385317\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.417935806221301, 2.072427010805221]\n",
"[7.481759295724324, 2.072427010805221]\n",
"QUALITY_R///0.12983649221020632\n",
"QUALITY_S///0.1288081569951666\n",
"fraction is:1.108306884453482\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.462392804404428, 2.0488684632407526]\n",
"[7.417935806221301, 2.072427010805221]\n",
"QUALITY_R///0.12922316167340875\n",
"QUALITY_S///0.12983649221020632\n",
"fraction is:0.9405099473085017\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.375763980243022, 2.0374376888519303]\n",
"[7.462392804404428, 2.0488684632407526]\n",
"QUALITY_R///0.1306848523148016\n",
"QUALITY_S///0.12922316167340875\n",
"fraction is:1.15739184496713\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.2970948210708135, 1.9561475471004492]\n",
"[7.375763980243022, 2.0374376888519303]\n",
"QUALITY_R///0.13236721793474798\n",
"QUALITY_S///0.1306848523148016\n",
"fraction is:1.1832164815940667\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.252012944398675, 1.9434824637436778]\n",
"[7.2970948210708135, 1.9561475471004492]\n",
"QUALITY_R///0.13319273726345396\n",
"QUALITY_S///0.13236721793474798\n",
"fraction is:1.0860550739321404\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.214991308365817, 1.8006621344923124]\n",
"[7.252012944398675, 1.9434824637436778]\n",
"QUALITY_R///0.13447556835843952\n",
"QUALITY_S///0.13319273726345396\n",
"fraction is:1.1368748171999579\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.240589869495058, 1.8006621344923124]\n",
"[7.214991308365817, 1.8006621344923124]\n",
"QUALITY_R///0.1340278774193558\n",
"QUALITY_S///0.13447556835843952\n",
"fraction is:0.9562182529629539\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.12882383396247, 1.8229315797851888]\n",
"[7.240589869495058, 1.8006621344923124]\n",
"QUALITY_R///0.1359026748544706\n",
"QUALITY_S///0.1340278774193558\n",
"fraction is:1.2062058156792546\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.12882383396247, 1.7089253264609319]\n",
"[7.12882383396247, 1.8229315797851888]\n",
"QUALITY_R///0.1364108535073064\n",
"QUALITY_S///0.1359026748544706\n",
"fraction is:1.0521312462047747\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.224278027553685, 1.6160017628288361]\n",
"[7.12882383396247, 1.7089253264609319]\n",
"QUALITY_R///0.1350837672897571\n",
"QUALITY_S///0.1364108535073064\n",
"fraction is:0.8757202207585949\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.224278027553685, 1.748428477713936]\n",
"[7.224278027553685, 1.6160017628288361]\n",
"QUALITY_R///0.1345379738412097\n",
"QUALITY_S///0.1350837672897571\n",
"fraction is:0.9468833755532539\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.466529761831978, 1.748428477713936]\n",
"[7.224278027553685, 1.748428477713936]\n",
"QUALITY_R///0.13040340335883127\n",
"QUALITY_S///0.1345379738412097\n",
"fraction is:0.661359940345248\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.224278027553685, 1.6186094769793011]\n",
"[7.224278027553685, 1.748428477713936]\n",
"QUALITY_R///0.13507337260218275\n",
"QUALITY_S///0.1345379738412097\n",
"fraction is:1.0549990601740045\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.308403756865171, 1.526127296751515]\n",
"[7.224278027553685, 1.6186094769793011]\n",
"QUALITY_R///0.133939720634799\n",
"QUALITY_S///0.13507337260218275\n",
"fraction is:0.8928245439599671\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.308403756865171, 1.526127296751515]\n",
"[7.308403756865171, 1.526127296751515]\n",
"QUALITY_R///0.133939720634799\n",
"QUALITY_S///0.133939720634799\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.383099287657511, 1.526127296751515]\n",
"[7.308403756865171, 1.526127296751515]\n",
"QUALITY_R///0.1326404378134679\n",
"QUALITY_S///0.133939720634799\n",
"fraction is:0.8781584083100679\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.383099287657511, 1.488557957944176]\n",
"[7.383099287657511, 1.526127296751515]\n",
"QUALITY_R///0.13277278752799507\n",
"QUALITY_S///0.1326404378134679\n",
"fraction is:1.0133229413520182\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.335522141790258, 1.4195690483901966]\n",
"[7.383099287657511, 1.488557957944176]\n",
"QUALITY_R///0.13383983587536114\n",
"QUALITY_S///0.13277278752799507\n",
"fraction is:1.1126058034230186\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.325694223985529, 1.4195690483901966]\n",
"[7.335522141790258, 1.4195690483901966]\n",
"QUALITY_R///0.1340128969589115\n",
"QUALITY_S///0.13383983587536114\n",
"fraction is:1.0174567266659942\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.191866322881643, 1.5630023811452507]\n",
"[7.325694223985529, 1.4195690483901966]\n",
"QUALITY_R///0.13587418353512445\n",
"QUALITY_S///0.1340128969589115\n",
"fraction is:1.2045772284493834\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.233027897521998, 1.5622601407825467]\n",
"[7.191866322881643, 1.5630023811452507]\n",
"QUALITY_R///0.13513840589701667\n",
"QUALITY_S///0.13587418353512445\n",
"fraction is:0.9290638954333588\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.180810263558751, 1.5622601407825467]\n",
"[7.233027897521998, 1.5622601407825467]\n",
"QUALITY_R///0.13607685083947269\n",
"QUALITY_S///0.13513840589701667\n",
"fraction is:1.098388926837152\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.975347902158536, 1.6080588518313543]\n",
"[7.180810263558751, 1.5622601407825467]\n",
"QUALITY_R///0.13969787383169907\n",
"QUALITY_S///0.13607685083947269\n",
"fraction is:1.43634587151093\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.5772461339607835, 2.9723790376768298]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.997014520142039, 1.565274907417179]\n",
"[6.975347902158536, 1.6080588518313543]\n",
"QUALITY_R///0.13947083091859816\n",
"QUALITY_S///0.13969787383169907\n",
"fraction is:0.9775515115139519\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.8974899340902045, 1.3918212125683775]\n",
"[6.997014520142039, 1.565274907417179]\n",
"QUALITY_R///0.14211581977976903\n",
"QUALITY_S///0.13947083091859816\n",
"fraction is:1.3027779720492696\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.975347902158536, 1.6080588518313543]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775]]\n",
"\n",
"\n",
"\n",
"\n",
"[7.044398463871806, 1.452810510953539]\n",
"[6.8974899340902045, 1.3918212125683775]\n",
"QUALITY_R///0.1390308241404533\n",
"QUALITY_S///0.14211581977976903\n",
"fraction is:0.7345482725124108\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.038388730454474, 1.369941058328215]\n",
"[7.044398463871806, 1.452810510953539]\n",
"QUALITY_R///0.1394608526263871\n",
"QUALITY_S///0.1390308241404533\n",
"fraction is:1.0439408686094236\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.96622513172375, 1.7011972061171368]\n",
"[7.038388730454474, 1.369941058328215]\n",
"QUALITY_R///0.13945175321795664\n",
"QUALITY_S///0.1394608526263871\n",
"fraction is:0.9990904730275799\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.017644265339597, 1.444927029930239]\n",
"[6.96622513172375, 1.7011972061171368]\n",
"QUALITY_R///0.13957016849881573\n",
"QUALITY_S///0.13945175321795664\n",
"fraction is:1.0119119165408537\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.017644265339597, 1.444927029930239]\n",
"[7.017644265339597, 1.444927029930239]\n",
"QUALITY_R///0.13957016849881573\n",
"QUALITY_S///0.13957016849881573\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.847335775175817, 1.249530943314293]\n",
"[7.017644265339597, 1.444927029930239]\n",
"QUALITY_R///0.1436696569494617\n",
"QUALITY_S///0.13957016849881573\n",
"fraction is:1.5067407059179005\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.8974899340902045, 1.3918212125683775]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.8143063803385315, 1.249530943314293]\n",
"[6.847335775175817, 1.249530943314293]\n",
"QUALITY_R///0.1443434328369016\n",
"QUALITY_S///0.1436696569494617\n",
"fraction is:1.0696993083472228\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.847335775175817, 1.249530943314293]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.929823638337554, 1.292038212217689]\n",
"[6.8143063803385315, 1.249530943314293]\n",
"QUALITY_R///0.1418592159829117\n",
"QUALITY_S///0.1443434328369016\n",
"fraction is:0.7800309462554935\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.14135793173682, 1.292038212217689]\n",
"[6.929823638337554, 1.292038212217689]\n",
"QUALITY_R///0.13779235395472178\n",
"QUALITY_S///0.1418592159829117\n",
"fraction is:0.6658531003479693\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.286663779644253, 1.292038212217689]\n",
"[7.14135793173682, 1.292038212217689]\n",
"QUALITY_R///0.13512917366730182\n",
"QUALITY_S///0.13779235395472178\n",
"fraction is:0.7661954165850753\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.308623595858219, 1.2526405122851294]\n",
"[7.286663779644253, 1.292038212217689]\n",
"QUALITY_R///0.13485825668796103\n",
"QUALITY_S///0.13512917366730182\n",
"fraction is:0.9732719904015112\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.308623595858219, 1.189445811877707]\n",
"[7.308623595858219, 1.2526405122851294]\n",
"QUALITY_R///0.1350479096715847\n",
"QUALITY_S///0.13485825668796103\n",
"fraction is:1.0191462819587993\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.26676735080266, 1.189445811877707]\n",
"[7.308623595858219, 1.189445811877707]\n",
"QUALITY_R///0.13580553905170661\n",
"QUALITY_S///0.1350479096715847\n",
"fraction is:1.0787068234602653\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.26676735080266, 1.128052427434334]\n",
"[7.26676735080266, 1.189445811877707]\n",
"QUALITY_R///0.13598407233377433\n",
"QUALITY_S///0.13580553905170661\n",
"fraction is:1.018013651551386\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.26676735080266, 1.1774750684621207]\n",
"[7.26676735080266, 1.128052427434334]\n",
"QUALITY_R///0.13584103653548624\n",
"QUALITY_S///0.13598407233377433\n",
"fraction is:0.985798230374314\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.169175382687687, 1.2761175336067874]\n",
"[7.26676735080266, 1.1774750684621207]\n",
"QUALITY_R///0.13732746472812143\n",
"QUALITY_S///0.13584103653548624\n",
"fraction is:1.1602584932053877\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.272806010421965, 1.3564233491741577]\n",
"[7.169175382687687, 1.2761175336067874]\n",
"QUALITY_R///0.1351677319065238\n",
"QUALITY_S///0.13732746472812143\n",
"fraction is:0.805756829668136\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.360430012630706, 1.2727501463166122]\n",
"[7.272806010421965, 1.3564233491741577]\n",
"QUALITY_R///0.13387489906916494\n",
"QUALITY_S///0.1351677319065238\n",
"fraction is:0.8787250017822335\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.32633140434413, 1.3475166858640777]\n",
"[7.360430012630706, 1.2727501463166122]\n",
"QUALITY_R///0.13424217694202456\n",
"QUALITY_S///0.13387489906916494\n",
"fraction is:1.0374105860475307\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.383146635869606, 1.4421041395899359]\n",
"[7.32633140434413, 1.3475166858640777]\n",
"QUALITY_R///0.13293157888526055\n",
"QUALITY_S///0.13424217694202456\n",
"fraction is:0.8771653133574449\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.145907326836708, 1.4794190087783035]\n",
"[7.383146635869606, 1.4421041395899359]\n",
"QUALITY_R///0.13703430376356415\n",
"QUALITY_S///0.13293157888526055\n",
"fraction is:1.5072284305672703\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.145907326836708, 1.591718318954333]\n",
"[7.145907326836708, 1.4794190087783035]\n",
"QUALITY_R///0.13659270184285677\n",
"QUALITY_S///0.13703430376356415\n",
"fraction is:0.9568006733147788\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.31418891749341, 1.7016370870125557]\n",
"[7.145907326836708, 1.591718318954333]\n",
"QUALITY_R///0.13316425897223105\n",
"QUALITY_S///0.13659270184285677\n",
"fraction is:0.709748720014217\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.180535361358819, 1.7424295040452387]\n",
"[7.31418891749341, 1.7016370870125557]\n",
"QUALITY_R///0.13533776376838094\n",
"QUALITY_S///0.13316425897223105\n",
"fraction is:1.2427795947315454\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.180535361358819, 1.7830990744793842]\n",
"[7.180535361358819, 1.7424295040452387]\n",
"QUALITY_R///0.13516039937837188\n",
"QUALITY_S///0.13533776376838094\n",
"fraction is:0.9824199258168703\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.2997321234069545, 1.8563173331975535]\n",
"[7.180535361358819, 1.7830990744793842]\n",
"QUALITY_R///0.13276571570128268\n",
"QUALITY_S///0.13516039937837188\n",
"fraction is:0.7870461690217156\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.3063303859677005, 2.011736071964209]\n",
"[7.2997321234069545, 1.8563173331975535]\n",
"QUALITY_R///0.13195696233809084\n",
"QUALITY_S///0.13276571570128268\n",
"fraction is:0.9223086626708287\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.3063303859677005, 1.8763627105923477]\n",
"[7.3063303859677005, 2.011736071964209]\n",
"QUALITY_R///0.1325658473718574\n",
"QUALITY_S///0.13195696233809084\n",
"fraction is:1.062780411153773\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.26078034308238, 1.8473704191439888]\n",
"[7.3063303859677005, 1.8763627105923477]\n",
"QUALITY_R///0.13347375199143105\n",
"QUALITY_S///0.1325658473718574\n",
"fraction is:1.0950395287778114\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.312453020785933, 1.818195101651826]\n",
"[7.26078034308238, 1.8473704191439888]\n",
"QUALITY_R///0.13271215754109417\n",
"QUALITY_S///0.13347375199143105\n",
"fraction is:0.9266684420985722\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.312453020785933, 1.7886475277390506]\n",
"[7.312453020785933, 1.818195101651826]\n",
"QUALITY_R///0.13283688528545567\n",
"QUALITY_S///0.13271215754109417\n",
"fraction is:1.0125508838966237\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.503469437440698, 1.7695237133431325]\n",
"[7.312453020785933, 1.7886475277390506]\n",
"QUALITY_R///0.12971350521287647\n",
"QUALITY_S///0.13283688528545567\n",
"fraction is:0.7317341549684417\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.503469437440698, 1.6724774456012164]\n",
"[7.503469437440698, 1.7695237133431325]\n",
"QUALITY_R///0.13007956399033604\n",
"QUALITY_S///0.12971350521287647\n",
"fraction is:1.0372841235088412\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.384555992703294, 1.6254636598202061]\n",
"[7.503469437440698, 1.6724774456012164]\n",
"QUALITY_R///0.1322517640223158\n",
"QUALITY_S///0.13007956399033604\n",
"fraction is:1.2426174518810278\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.428788976417642, 1.6154642210464814]\n",
"[7.384555992703294, 1.6254636598202061]\n",
"QUALITY_R///0.13153724475581816\n",
"QUALITY_S///0.1322517640223158\n",
"fraction is:0.931041034780787\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.388721720145849, 1.6669409831673039]\n",
"[7.428788976417642, 1.6154642210464814]\n",
"QUALITY_R///0.1320232380514324\n",
"QUALITY_S///0.13153724475581816\n",
"fraction is:1.049799642779746\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.388721720145849, 1.6669409831673039]\n",
"[7.388721720145849, 1.6669409831673039]\n",
"QUALITY_R///0.1320232380514324\n",
"QUALITY_S///0.1320232380514324\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.494899916960984, 1.6669409831673039]\n",
"[7.388721720145849, 1.6669409831673039]\n",
"QUALITY_R///0.13024166180298075\n",
"QUALITY_S///0.1320232380514324\n",
"fraction is:0.8368105109654719\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.494899916960984, 1.5466305774942792]\n",
"[7.494899916960984, 1.6669409831673039]\n",
"QUALITY_R///0.1306708557411668\n",
"QUALITY_S///0.13024166180298075\n",
"fraction is:1.0438537503946224\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.529319119736059, 1.5466305774942792]\n",
"[7.494899916960984, 1.5466305774942792]\n",
"QUALITY_R///0.13009775040495916\n",
"QUALITY_S///0.1306708557411668\n",
"fraction is:0.9443007866894338\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.556805098273101, 1.4692849880514056]\n",
"[7.529319119736059, 1.5466305774942792]\n",
"QUALITY_R///0.1298985033043979\n",
"QUALITY_S///0.13009775040495916\n",
"fraction is:0.9802724751880881\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.4362279487294085, 1.5927693533885399]\n",
"[7.556805098273101, 1.4692849880514056]\n",
"QUALITY_R///0.13149428611169858\n",
"QUALITY_S///0.1298985033043979\n",
"fraction is:1.1730160831821492\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.500452374132626, 1.6016267566914741]\n",
"[7.4362279487294085, 1.5927693533885399]\n",
"QUALITY_R///0.1303857496860567\n",
"QUALITY_S///0.13149428611169858\n",
"fraction is:0.8950697394550183\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.515515294761007, 1.6016267566914741]\n",
"[7.500452374132626, 1.6016267566914741]\n",
"QUALITY_R///0.1301357884688346\n",
"QUALITY_S///0.1303857496860567\n",
"fraction is:0.9753136945584382\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.519772910441576, 1.6016267566914741]\n",
"[7.515515294761007, 1.6016267566914741]\n",
"QUALITY_R///0.13006530528380308\n",
"QUALITY_S///0.1301357884688346\n",
"fraction is:0.9929764626377358\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.57367657949648, 1.5426867796036328]\n",
"[7.519772910441576, 1.6016267566914741]\n",
"QUALITY_R///0.1293795752118108\n",
"QUALITY_S///0.13006530528380308\n",
"fraction is:0.9337252889468646\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.564279328302397, 1.7525818637347503]\n",
"[7.57367657949648, 1.5426867796036328]\n",
"QUALITY_R///0.1287887252258039\n",
"QUALITY_S///0.1293795752118108\n",
"fraction is:0.9426266438061808\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.559384291470904, 1.8821837522903637]\n",
"[7.564279328302397, 1.7525818637347503]\n",
"QUALITY_R///0.12836673640486332\n",
"QUALITY_S///0.1287887252258039\n",
"fraction is:0.9586790975049481\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.559384291470904, 1.81760824608794]\n",
"[7.559384291470904, 1.8821837522903637]\n",
"QUALITY_R///0.12862016596478731\n",
"QUALITY_S///0.12836673640486332\n",
"fraction is:1.025666818794178\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.546017681654572, 1.840740679641961]\n",
"[7.559384291470904, 1.81760824608794]\n",
"QUALITY_R///0.12874512257757073\n",
"QUALITY_S///0.12862016596478731\n",
"fraction is:1.0125740582541065\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.488501760782608, 1.9750808762892158]\n",
"[7.546017681654572, 1.840740679641961]\n",
"QUALITY_R///0.129122470443178\n",
"QUALITY_S///0.12874512257757073\n",
"fraction is:1.0384557839237436\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.488501760782608, 2.048984173691765]\n",
"[7.488501760782608, 1.9750808762892158]\n",
"QUALITY_R///0.128803542236347\n",
"QUALITY_S///0.129122470443178\n",
"fraction is:0.9686103915160889\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.4555517473787125, 1.9674804182370633]\n",
"[7.488501760782608, 2.048984173691765]\n",
"QUALITY_R///0.12968845371217524\n",
"QUALITY_S///0.128803542236347\n",
"fraction is:1.092524581084306\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.50990463015723, 1.9769002112397718]\n",
"[7.4555517473787125, 1.9674804182370633]\n",
"QUALITY_R///0.12877063891843296\n",
"QUALITY_S///0.12968845371217524\n",
"fraction is:0.9123044851118117\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.4385135774371, 1.8132995251139732]\n",
"[7.50990463015723, 1.9769002112397718]\n",
"QUALITY_R///0.13061071265961358\n",
"QUALITY_S///0.12877063891843296\n",
"fraction is:1.2020246869355742\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.437013019664945, 1.8132995251139732]\n",
"[7.4385135774371, 1.8132995251139732]\n",
"QUALITY_R///0.13063558722624985\n",
"QUALITY_S///0.13061071265961358\n",
"fraction is:1.002490552950715\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.437013019664945, 1.887791548696077]\n",
"[7.437013019664945, 1.8132995251139732]\n",
"QUALITY_R///0.1303293451771819\n",
"QUALITY_S///0.13063558722624985\n",
"fraction is:0.9698399657035618\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.437013019664945, 1.751615219566881]\n",
"[7.437013019664945, 1.887791548696077]\n",
"QUALITY_R///0.13088139905975368\n",
"QUALITY_S///0.1303293451771819\n",
"fraction is:1.0567576379972394\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.19893767294944, 1.751615219566881]\n",
"[7.437013019664945, 1.751615219566881]\n",
"QUALITY_R///0.134971499436135\n",
"QUALITY_S///0.13088139905975368\n",
"fraction is:1.5053268303357206\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.288140079728782, 1.751615219566881]\n",
"[7.19893767294944, 1.751615219566881]\n",
"QUALITY_R///0.13341026896920782\n",
"QUALITY_S///0.134971499436135\n",
"fraction is:0.8554539231187446\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.131647724031951, 1.908130866974424]\n",
"[7.288140079728782, 1.751615219566881]\n",
"QUALITY_R///0.1354553989085337\n",
"QUALITY_S///0.13341026896920782\n",
"fraction is:1.2269273983540847\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[7.0238923639131166, 1.911529296264411]\n",
"[7.131647724031951, 1.908130866974424]\n",
"QUALITY_R///0.13737480994930526\n",
"QUALITY_S///0.1354553989085337\n",
"fraction is:1.2115991566130588\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.823895920143973, 1.5833800934837496]\n",
"[7.0238923639131166, 1.911529296264411]\n",
"QUALITY_R///0.1427513595228062\n",
"QUALITY_S///0.13737480994930526\n",
"fraction is:1.7119874675733633\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.65420301532439, 1.5551797328804304]\n",
"[6.823895920143973, 1.5833800934837496]\n",
"QUALITY_R///0.1463374562195415\n",
"QUALITY_S///0.1427513595228062\n",
"fraction is:1.4313379978917349\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.8143063803385315, 1.249530943314293]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.65420301532439, 1.6180761627154105]\n",
"[6.65420301532439, 1.5551797328804304]\n",
"QUALITY_R///0.1460257265327274\n",
"QUALITY_S///0.1463374562195415\n",
"fraction is:0.9693078986661218\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.6220901132019385, 1.6180761627154105]\n",
"[6.65420301532439, 1.6180761627154105]\n",
"QUALITY_R///0.1466940521097189\n",
"QUALITY_S///0.1460257265327274\n",
"fraction is:1.0691164478684854\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.65420301532439, 1.5551797328804304]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.6220901132019385, 1.8018034538643612]\n",
"[6.6220901132019385, 1.6180761627154105]\n",
"QUALITY_R///0.14571227027604636\n",
"QUALITY_S///0.1466940521097189\n",
"fraction is:0.9064873683912182\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.684714632905896, 1.6180761627154105]\n",
"[6.6220901132019385, 1.6180761627154105]\n",
"QUALITY_R///0.14539617922717024\n",
"QUALITY_S///0.1466940521097189\n",
"fraction is:0.8782822319987548\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.675386256210575, 1.5579147719437527]\n",
"[6.684714632905896, 1.6180761627154105]\n",
"QUALITY_R///0.145883802244524\n",
"QUALITY_S///0.14539617922717024\n",
"fraction is:1.0499707448518019\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.664919154684771, 1.3441323280750397]\n",
"[6.675386256210575, 1.5579147719437527]\n",
"QUALITY_R///0.1470781653034325\n",
"QUALITY_S///0.145883802244524\n",
"fraction is:1.1268614673440573\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.6220901132019385, 1.6180761627154105]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.590909148571175, 1.286637655782278]\n",
"[6.664919154684771, 1.3441323280750397]\n",
"QUALITY_R///0.14891323592817513\n",
"QUALITY_S///0.1470781653034325\n",
"fraction is:1.2014234504039252\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.664919154684771, 1.3441323280750397]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.5684714070038925, 1.2789983373140423]\n",
"[6.590909148571175, 1.286637655782278]\n",
"QUALITY_R///0.14943584616674285\n",
"QUALITY_S///0.14891323592817513\n",
"fraction is:1.0536507346004926\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.590909148571175, 1.286637655782278]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.623106879447992, 1.2484157061054963]\n",
"[6.5684714070038925, 1.2789983373140423]\n",
"QUALITY_R///0.14837369043582002\n",
"QUALITY_S///0.14943584616674285\n",
"fraction is:0.8992307772206833\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.623106879447992, 1.2484157061054963]\n",
"[6.623106879447992, 1.2484157061054963]\n",
"QUALITY_R///0.14837369043582002\n",
"QUALITY_S///0.14837369043582002\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.618590740281119, 1.2484157061054963]\n",
"[6.623106879447992, 1.2484157061054963]\n",
"QUALITY_R///0.14847145484003715\n",
"QUALITY_S///0.14837369043582002\n",
"fraction is:1.009824385933476\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.618590740281119, 1.190612885122933]\n",
"[6.618590740281119, 1.2484157061054963]\n",
"QUALITY_R///0.14870270313497677\n",
"QUALITY_S///0.14847145484003715\n",
"fraction is:1.0233942813643444\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.645898542172598, 1.2331561231182613]\n",
"[6.618590740281119, 1.190612885122933]\n",
"QUALITY_R///0.14794349619190666\n",
"QUALITY_S///0.14870270313497677\n",
"fraction is:0.9268897112755499\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.638372375484335, 1.1504431394088708]\n",
"[6.645898542172598, 1.2331561231182613]\n",
"QUALITY_R///0.14842692774930194\n",
"QUALITY_S///0.14794349619190666\n",
"fraction is:1.0495307460366528\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.448004327673894, 1.0702108373063082]\n",
"[6.638372375484335, 1.1504431394088708]\n",
"QUALITY_R///0.15299373522791881\n",
"QUALITY_S///0.14842692774930194\n",
"fraction is:1.5788247606016035\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.5684714070038925, 1.2789983373140423]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.498725363647554, 1.003053638648496]\n",
"[6.448004327673894, 1.0702108373063082]\n",
"QUALITY_R///0.1520755610953872\n",
"QUALITY_S///0.15299373522791881\n",
"fraction is:0.9122717030618899\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.40878618548298, 0.9665456821843998]\n",
"[6.498725363647554, 1.003053638648496]\n",
"QUALITY_R///0.15429095037771023\n",
"QUALITY_S///0.1520755610953872\n",
"fraction is:1.247995829546733\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.448004327673894, 1.0702108373063082]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.474008636721847, 1.0729689760772223]\n",
"[6.40878618548298, 0.9665456821843998]\n",
"QUALITY_R///0.15238512064091492\n",
"QUALITY_S///0.15429095037771023\n",
"fraction is:0.826477179031389\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.474008636721847, 0.9650925570631557]\n",
"[6.474008636721847, 1.0729689760772223]\n",
"QUALITY_R///0.15277560922653521\n",
"QUALITY_S///0.15238512064091492\n",
"fraction is:1.0398212865818988\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.474008636721847, 1.060925676670485]\n",
"[6.474008636721847, 0.9650925570631557]\n",
"QUALITY_R///0.15243061008030206\n",
"QUALITY_S///0.15277560922653521\n",
"fraction is:0.966088422167915\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.449476616678147, 1.1897564943190846]\n",
"[6.474008636721847, 1.060925676670485]\n",
"QUALITY_R///0.1524785913701914\n",
"QUALITY_S///0.15243061008030206\n",
"fraction is:1.0048096584423905\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.232939664705916, 1.1877796145229156]\n",
"[6.449476616678147, 1.1897564943190846]\n",
"QUALITY_R///0.15760180521695755\n",
"QUALITY_S///0.1524785913701914\n",
"fraction is:1.6691614668648795\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.40878618548298, 0.9665456821843998]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.374223838742347, 1.122730307102332]\n",
"[6.232939664705916, 1.1877796145229156]\n",
"QUALITY_R///0.15450350114534286\n",
"QUALITY_S///0.15760180521695755\n",
"fraction is:0.7335713541237061\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.2968197550721134, 1.0366614264263792]\n",
"[6.374223838742347, 1.122730307102332]\n",
"QUALITY_R///0.15670092303600489\n",
"QUALITY_S///0.15450350114534286\n",
"fraction is:1.2457555197894914\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.362426031533897, 1.0653273655591295]\n",
"[6.2968197550721134, 1.0366614264263792]\n",
"QUALITY_R///0.1550147517238343\n",
"QUALITY_S///0.15670092303600489\n",
"fraction is:0.8448323013876065\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.373107597722664, 0.9868592996867807]\n",
"[6.362426031533897, 1.0653273655591295]\n",
"QUALITY_R///0.1550613263759524\n",
"QUALITY_S///0.1550147517238343\n",
"fraction is:1.0046683280608095\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.373107597722664, 1.009826320776075]\n",
"[6.373107597722664, 0.9868592996867807]\n",
"QUALITY_R///0.15497591103353753\n",
"QUALITY_S///0.1550613263759524\n",
"fraction is:0.9914948410215833\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.374081517703447, 1.1265211658022032]\n",
"[6.373107597722664, 1.009826320776075]\n",
"QUALITY_R///0.15449112457174294\n",
"QUALITY_S///0.15497591103353753\n",
"fraction is:0.9526776823968961\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.357113877605935, 1.050399667589681]\n",
"[6.374081517703447, 1.1265211658022032]\n",
"QUALITY_R///0.15519974820744198\n",
"QUALITY_S///0.15449112457174294\n",
"fraction is:1.0734334721493912\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.357113877605935, 1.120727572456861]\n",
"[6.357113877605935, 1.050399667589681]\n",
"QUALITY_R///0.15491513171860535\n",
"QUALITY_S///0.15519974820744198\n",
"fraction is:0.971939568398838\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.4268282595520745, 1.1372842631869005]\n",
"[6.357113877605935, 1.120727572456861]\n",
"QUALITY_R///0.15321728264569068\n",
"QUALITY_S///0.15491513171860535\n",
"fraction is:0.8438463022643011\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.282847241092359, 1.1413846450498693]\n",
"[6.357113877605935, 1.120727572456861]\n",
"QUALITY_R///0.15660035631928496\n",
"QUALITY_S///0.15491513171860535\n",
"fraction is:1.1835548092677868\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.282847241092359, 1.1263966650473607]\n",
"[6.282847241092359, 1.1413846450498693]\n",
"QUALITY_R///0.156665663979714\n",
"QUALITY_S///0.15660035631928496\n",
"fraction is:1.0065521379951987\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.126346536628695, 1.1755696015184598]\n",
"[6.282847241092359, 1.1263966650473607]\n",
"QUALITY_R///0.16030482121282993\n",
"QUALITY_S///0.156665663979714\n",
"fraction is:1.4389529388593196\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.232939664705916, 1.1877796145229156]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.166737162273613, 1.2416619650180956]\n",
"[6.126346536628695, 1.1755696015184598]\n",
"QUALITY_R///0.15896991254243237\n",
"QUALITY_S///0.16030482121282993\n",
"fraction is:0.8750354606051962\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.126346536628695, 1.2759740916582882]\n",
"[6.126346536628695, 1.1755696015184598]\n",
"QUALITY_R///0.15980022013503556\n",
"QUALITY_S///0.16030482121282993\n",
"fraction is:0.95079185711427\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.313464079982317, 1.3755541419569985]\n",
"[6.126346536628695, 1.2759740916582882]\n",
"QUALITY_R///0.15476098068578126\n",
"QUALITY_S///0.15980022013503556\n",
"fraction is:0.6041553301872679\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.213913351338157, 1.3250323655720841]\n",
"[6.126346536628695, 1.2759740916582882]\n",
"QUALITY_R///0.15739070143204195\n",
"QUALITY_S///0.15980022013503556\n",
"fraction is:0.7858794496207766\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.213913351338157, 1.3207887558754559]\n",
"[6.213913351338157, 1.3250323655720841]\n",
"QUALITY_R///0.15741259385019435\n",
"QUALITY_S///0.15739070143204195\n",
"fraction is:1.002191639954819\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.213913351338157, 1.2939160008989954]\n",
"[6.213913351338157, 1.3207887558754559]\n",
"QUALITY_R///0.15754980545132438\n",
"QUALITY_S///0.15741259385019435\n",
"fraction is:1.013815727259065\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.170481872309557, 1.2546973452652332]\n",
"[6.213913351338157, 1.2939160008989954]\n",
"QUALITY_R///0.15881198265546842\n",
"QUALITY_S///0.15754980545132438\n",
"fraction is:1.1345291515524287\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.094089205274584, 1.0493617194342142]\n",
"[6.170481872309557, 1.2546973452652332]\n",
"QUALITY_R///0.1617134952549817\n",
"QUALITY_S///0.15881198265546842\n",
"fraction is:1.3366296512714784\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.126346536628695, 1.1755696015184598]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142]]\n",
"\n",
"\n",
"\n",
"\n",
"[6.012796733742833, 1.1686491919466784]\n",
"[6.094089205274584, 1.0493617194342142]\n",
"QUALITY_R///0.16325694998445925\n",
"QUALITY_S///0.1617134952549817\n",
"fraction is:1.1668939474428945\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.094089205274584, 1.0493617194342142]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.871496199834028, 1.2032969431923068]\n",
"[6.012796733742833, 1.1686491919466784]\n",
"QUALITY_R///0.16684660775374224\n",
"QUALITY_S///0.16325694998445925\n",
"fraction is:1.4318477985032732\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[6.012796733742833, 1.1686491919466784]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.84553603360577, 1.2647578597179359]\n",
"[5.871496199834028, 1.2032969431923068]\n",
"QUALITY_R///0.167201863305422\n",
"QUALITY_S///0.16684660775374224\n",
"fraction is:1.0361641271380448\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.871496199834028, 1.2032969431923068]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.84553603360577, 1.1711059942417978]\n",
"[5.84553603360577, 1.2647578597179359]\n",
"QUALITY_R///0.16773759356091075\n",
"QUALITY_S///0.167201863305422\n",
"fraction is:1.0550340333939243\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.84553603360577, 1.2647578597179359]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.858250323338471, 1.1782628971126272]\n",
"[5.84553603360577, 1.1711059942417978]\n",
"QUALITY_R///0.16734813772887797\n",
"QUALITY_S///0.16773759356091075\n",
"fraction is:0.961803045963191\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.858250323338471, 1.3412214874524084]\n",
"[5.858250323338471, 1.1782628971126272]\n",
"QUALITY_R///0.16639425283913867\n",
"QUALITY_S///0.16734813772887797\n",
"fraction is:0.909019721724071\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.78296132279826, 1.532584041417408]\n",
"[5.858250323338471, 1.3412214874524084]\n",
"QUALITY_R///0.1671515160872435\n",
"QUALITY_S///0.16639425283913867\n",
"fraction is:1.0786673292727615\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.78296132279826, 1.591202279147507]\n",
"[5.78296132279826, 1.532584041417408]\n",
"QUALITY_R///0.16672557206078634\n",
"QUALITY_S///0.1671515160872435\n",
"fraction is:0.9582999951957596\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.894871101846553, 1.591202279147507]\n",
"[5.78296132279826, 1.591202279147507]\n",
"QUALITY_R///0.16377730443387162\n",
"QUALITY_S///0.16672557206078634\n",
"fraction is:0.7446605792870115\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.735261872807097, 1.579696342409531]\n",
"[5.894871101846553, 1.591202279147507]\n",
"QUALITY_R///0.1681000659756465\n",
"QUALITY_S///0.16377730443387162\n",
"fraction is:1.5407605438771657\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.84553603360577, 1.1711059942417978]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.9364391960634455, 1.7154465698660828]\n",
"[5.735261872807097, 1.579696342409531]\n",
"QUALITY_R///0.16182995255672308\n",
"QUALITY_S///0.1681000659756465\n",
"fraction is:0.5341859167579672\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.822569751776383, 1.653488509437688]\n",
"[5.9364391960634455, 1.7154465698660828]\n",
"QUALITY_R///0.16521289571201642\n",
"QUALITY_S///0.16182995255672308\n",
"fraction is:1.4025532358635866\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.822569751776383, 1.5848360072646681]\n",
"[5.822569751776383, 1.653488509437688]\n",
"QUALITY_R///0.16571646664274667\n",
"QUALITY_S///0.16521289571201642\n",
"fraction is:1.0516465650370506\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.782539140383203, 1.5848360072646681]\n",
"[5.822569751776383, 1.5848360072646681]\n",
"QUALITY_R///0.1667837712688611\n",
"QUALITY_S///0.16571646664274667\n",
"fraction is:1.112634317510667\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.778130075136262, 1.685230046833551]\n",
"[5.782539140383203, 1.5848360072646681]\n",
"QUALITY_R///0.16614416305882554\n",
"QUALITY_S///0.1667837712688611\n",
"fraction is:0.938041750345196\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.589363448707716, 1.534318484323652]\n",
"[5.778130075136262, 1.685230046833551]\n",
"QUALITY_R///0.17252892694874625\n",
"QUALITY_S///0.16614416305882554\n",
"fraction is:1.8935935802797497\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.735261872807097, 1.579696342409531]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.556684997676078, 1.4555445575982942]\n",
"[5.589363448707716, 1.534318484323652]\n",
"QUALITY_R///0.1740899003860316\n",
"QUALITY_S///0.17252892694874625\n",
"fraction is:1.1689399865284482\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.589363448707716, 1.534318484323652]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.68761415729903, 1.403805850813604]\n",
"[5.556684997676078, 1.4555445575982942]\n",
"QUALITY_R///0.17069811641109367\n",
"QUALITY_S///0.1740899003860316\n",
"fraction is:0.7123553553428437\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.826667247399617, 1.403805850813604]\n",
"[5.68761415729903, 1.403805850813604]\n",
"QUALITY_R///0.16685048402620514\n",
"QUALITY_S///0.17069811641109367\n",
"fraction is:0.6806117597986567\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.973001991425221, 1.2894240847126317]\n",
"[5.826667247399617, 1.403805850813604]\n",
"QUALITY_R///0.16365019339120818\n",
"QUALITY_S///0.16685048402620514\n",
"fraction is:0.7261279329480536\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[6.05036015589903, 1.2894240847126317]\n",
"[5.973001991425221, 1.2894240847126317]\n",
"QUALITY_R///0.16164927534719065\n",
"QUALITY_S///0.16365019339120818\n",
"fraction is:0.8186555934410443\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.92249119525417, 1.2894240847126317]\n",
"[5.973001991425221, 1.2894240847126317]\n",
"QUALITY_R///0.16498299857328502\n",
"QUALITY_S///0.16365019339120818\n",
"fraction is:1.1425704651994482\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.785185188048118, 1.3835983680364146]\n",
"[5.92249119525417, 1.2894240847126317]\n",
"QUALITY_R///0.16811421639148755\n",
"QUALITY_S///0.16498299857328502\n",
"fraction is:1.367688080430027\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.761823924006221, 1.3887514407349053]\n",
"[5.785185188048118, 1.3835983680364146]\n",
"QUALITY_R///0.16872442316398073\n",
"QUALITY_S///0.16811421639148755\n",
"fraction is:1.062920892240266\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.868942242241214, 1.3481837790154647]\n",
"[5.761823924006221, 1.3887514407349053]\n",
"QUALITY_R///0.1660632866050358\n",
"QUALITY_S///0.16872442316398073\n",
"fraction is:0.7663520221265222\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.73927382828382, 1.297148512316199]\n",
"[5.868942242241214, 1.3481837790154647]\n",
"QUALITY_R///0.16995142581680028\n",
"QUALITY_S///0.1660632866050358\n",
"fraction is:1.4752300167253278\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.615454771267118, 1.3477857643097202]\n",
"[5.73927382828382, 1.297148512316199]\n",
"QUALITY_R///0.17316216241027899\n",
"QUALITY_S///0.16995142581680028\n",
"fraction is:1.3786071244556484\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.590798980063042, 1.3673980187825618]\n",
"[5.615454771267118, 1.3477857643097202]\n",
"QUALITY_R///0.17374414883498268\n",
"QUALITY_S///0.17316216241027899\n",
"fraction is:1.059925521023865\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.577638545187083, 1.1737376102588797]\n",
"[5.590798980063042, 1.3673980187825618]\n",
"QUALITY_R///0.17544477491694477\n",
"QUALITY_S///0.17374414883498268\n",
"fraction is:1.1853790634421832\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.556684997676078, 1.4555445575982942]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.693851744625649, 1.1737376102588797]\n",
"[5.577638545187083, 1.1737376102588797]\n",
"QUALITY_R///0.1720113165464712\n",
"QUALITY_S///0.17544477491694477\n",
"fraction is:0.7093928348090622\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.631857771429553, 1.1808158764900527]\n",
"[5.693851744625649, 1.1737376102588797]\n",
"QUALITY_R///0.173782612650332\n",
"QUALITY_S///0.1720113165464712\n",
"fraction is:1.1937858101402072\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.631857771429553, 1.083304615785957]\n",
"[5.631857771429553, 1.1808158764900527]\n",
"QUALITY_R///0.17436487901889225\n",
"QUALITY_S///0.173782612650332\n",
"fraction is:1.0599551934029932\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.463182056395056, 1.0543264736238305]\n",
"[5.631857771429553, 1.083304615785957]\n",
"QUALITY_R///0.17972720277486878\n",
"QUALITY_S///0.17436487901889225\n",
"fraction is:1.709553756928195\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.577638545187083, 1.1737376102588797]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.433383075498511, 1.048691581429359]\n",
"[5.463182056395056, 1.0543264736238305]\n",
"QUALITY_R///0.18071218559052532\n",
"QUALITY_S///0.17972720277486878\n",
"fraction is:1.1035125080789667\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.463182056395056, 1.0543264736238305]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.446254426761103, 1.048691581429359]\n",
"[5.433383075498511, 1.048691581429359]\n",
"QUALITY_R///0.18030038739703422\n",
"QUALITY_S///0.18071218559052532\n",
"fraction is:0.9596565496155012\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.572970220615166, 1.1074775375044426]\n",
"[5.446254426761103, 1.048691581429359]\n",
"QUALITY_R///0.1759960592487449\n",
"QUALITY_S///0.18030038739703422\n",
"fraction is:0.6502276056614794\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.529337468045184, 1.03281524540482]\n",
"[5.572970220615166, 1.1074775375044426]\n",
"QUALITY_R///0.17777874653557554\n",
"QUALITY_S///0.1759960592487449\n",
"fraction is:1.1951464482159515\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.650702284414334, 0.9991359761251494]\n",
"[5.529337468045184, 1.03281524540482]\n",
"QUALITY_R///0.1742659940313202\n",
"QUALITY_S///0.17777874653557554\n",
"fraction is:0.7037900086932456\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.554916195886398, 0.9307820684360069]\n",
"[5.650702284414334, 0.9991359761251494]\n",
"QUALITY_R///0.17754555325329827\n",
"QUALITY_S///0.1742659940313202\n",
"fraction is:1.3881277853189877\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.554916195886398, 0.9307820684360069]\n",
"[5.554916195886398, 0.9307820684360069]\n",
"QUALITY_R///0.17754555325329827\n",
"QUALITY_S///0.17754555325329827\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.478983404289312, 0.9056916648543869]\n",
"[5.554916195886398, 0.9307820684360069]\n",
"QUALITY_R///0.18007195458278458\n",
"QUALITY_S///0.17754555325329827\n",
"fraction is:1.2874198934604937\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.485145148179461, 0.9210709636951578]\n",
"[5.478983404289312, 0.9056916648543869]\n",
"QUALITY_R///0.1797933452575484\n",
"QUALITY_S///0.18007195458278458\n",
"fraction is:0.9725236038007969\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.485145148179461, 0.8685187937105281]\n",
"[5.485145148179461, 0.9210709636951578]\n",
"QUALITY_R///0.18006726705758352\n",
"QUALITY_S///0.1797933452575484\n",
"fraction is:1.027770794889548\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.654627916373515, 0.7605528201547759]\n",
"[5.485145148179461, 0.8685187937105281]\n",
"QUALITY_R///0.17526805753024208\n",
"QUALITY_S///0.18006726705758352\n",
"fraction is:0.6188323068746956\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.660113333469645, 0.8244238093035403]\n",
"[5.654627916373515, 0.7605528201547759]\n",
"QUALITY_R///0.1748300974010579\n",
"QUALITY_S///0.17526805753024208\n",
"fraction is:0.9571491836291701\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.533740170879813, 0.8023472728926387]\n",
"[5.660113333469645, 0.8244238093035403]\n",
"QUALITY_R///0.17883954263094384\n",
"QUALITY_S///0.1748300974010579\n",
"fraction is:1.493234426018771\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.533740170879813, 0.9049254664011384]\n",
"[5.533740170879813, 0.8023472728926387]\n",
"QUALITY_R///0.17834077434520484\n",
"QUALITY_S///0.17883954263094384\n",
"fraction is:0.9513465960014205\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.5610472480782995, 0.9512642979425012]\n",
"[5.533740170879813, 0.9049254664011384]\n",
"QUALITY_R///0.1772477192641567\n",
"QUALITY_S///0.17834077434520484\n",
"fraction is:0.8964565009318517\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.5610472480782995, 0.8162691820091268]\n",
"[5.5610472480782995, 0.9512642979425012]\n",
"QUALITY_R///0.17791582901039565\n",
"QUALITY_S///0.1772477192641567\n",
"fraction is:1.069093373296749\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.66036931225913, 0.8162691820091268]\n",
"[5.5610472480782995, 0.8162691820091268]\n",
"QUALITY_R///0.17485810937885068\n",
"QUALITY_S///0.17791582901039565\n",
"fraction is:0.7365545618856747\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.66036931225913, 0.8335899474728306]\n",
"[5.66036931225913, 0.8162691820091268]\n",
"QUALITY_R///0.1747817685622609\n",
"QUALITY_S///0.17485810937885068\n",
"fraction is:0.9923949839323485\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.66036931225913, 0.8529932598517417]\n",
"[5.66036931225913, 0.8335899474728306]\n",
"QUALITY_R///0.17469446809631223\n",
"QUALITY_S///0.1747817685622609\n",
"fraction is:0.9913079496119612\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.66036931225913, 0.9297493292659654]\n",
"[5.66036931225913, 0.8529932598517417]\n",
"QUALITY_R///0.17433084520303577\n",
"QUALITY_S///0.17469446809631223\n",
"fraction is:0.9642908778983672\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.599672871764504, 1.0637934233387056]\n",
"[5.66036931225913, 0.9297493292659654]\n",
"QUALITY_R///0.1754440161742087\n",
"QUALITY_S///0.17433084520303577\n",
"fraction is:1.1177492857415936\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.62156927392906, 1.0076653986087005]\n",
"[5.599672871764504, 1.0637934233387056]\n",
"QUALITY_R///0.17509555699592058\n",
"QUALITY_S///0.1754440161742087\n",
"fraction is:0.9657542102995735\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.4582906087923275, 1.0076653986087005]\n",
"[5.62156927392906, 1.0076653986087005]\n",
"QUALITY_R///0.18016314313060844\n",
"QUALITY_S///0.17509555699592058\n",
"fraction is:1.6599020813146403\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.490948001330528, 1.1957089383567716]\n",
"[5.4582906087923275, 1.0076653986087005]\n",
"QUALITY_R///0.17794769092732896\n",
"QUALITY_S///0.18016314313060844\n",
"fraction is:0.8012796871984295\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.311961715456606, 0.8000328891220071]\n",
"[5.4582906087923275, 1.0076653986087005]\n",
"QUALITY_R///0.1861549060321916\n",
"QUALITY_S///0.18016314313060844\n",
"fraction is:1.8206185211841104\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.433383075498511, 1.048691581429359]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.167915636087542, 1.046535273760655]\n",
"[5.311961715456606, 0.8000328891220071]\n",
"QUALITY_R///0.18965198262804828\n",
"QUALITY_S///0.1861549060321916\n",
"fraction is:1.418652758431055\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.311961715456606, 0.8000328891220071]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.167915636087542, 1.0661117837398553]\n",
"[5.167915636087542, 1.046535273760655]\n",
"QUALITY_R///0.18951107964648048\n",
"QUALITY_S///0.18965198262804828\n",
"fraction is:0.9860085054922888\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.215251120312856, 1.0661117837398553]\n",
"[5.167915636087542, 1.0661117837398553]\n",
"QUALITY_R///0.18786030816840504\n",
"QUALITY_S///0.18951107964648048\n",
"fraction is:0.8478282934707908\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.215251120312856, 0.9793465941796496]\n",
"[5.215251120312856, 1.0661117837398553]\n",
"QUALITY_R///0.18845140311136505\n",
"QUALITY_S///0.18786030816840504\n",
"fraction is:1.060891395937408\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.168694364595274, 1.0564207716871314]\n",
"[5.215251120312856, 0.9793465941796496]\n",
"QUALITY_R///0.1895537010029487\n",
"QUALITY_S///0.18845140311136505\n",
"fraction is:1.1165346085308874\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.226570063082891, 1.0564207716871314]\n",
"[5.168694364595274, 1.0564207716871314]\n",
"QUALITY_R///0.18753753498363063\n",
"QUALITY_S///0.1895537010029487\n",
"fraction is:0.8174082606208745\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.314929583721991, 1.0564207716871314]\n",
"[5.226570063082891, 1.0564207716871314]\n",
"QUALITY_R///0.1845392218632653\n",
"QUALITY_S///0.18753753498363063\n",
"fraction is:0.7409431983394807\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.307799901242233, 1.147186338625099]\n",
"[5.314929583721991, 1.0564207716871314]\n",
"QUALITY_R///0.18414995820473717\n",
"QUALITY_S///0.1845392218632653\n",
"fraction is:0.9618215294470063\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.22158613355981, 1.147186338625099]\n",
"[5.307799901242233, 1.147186338625099]\n",
"QUALITY_R///0.18705154656971765\n",
"QUALITY_S///0.18414995820473717\n",
"fraction is:1.3366397783468436\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.12444361088066, 1.147186338625099]\n",
"[5.22158613355981, 1.147186338625099]\n",
"QUALITY_R///0.19042970257326558\n",
"QUALITY_S///0.18705154656971765\n",
"fraction is:1.4018819730311498\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.167915636087542, 1.046535273760655]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.995801760317439, 1.2063426100293313]\n",
"[5.12444361088066, 1.147186338625099]\n",
"QUALITY_R///0.19457573815833373\n",
"QUALITY_S///0.19042970257326558\n",
"fraction is:1.5137705002823367\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[5.12444361088066, 1.147186338625099]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313]]\n",
"\n",
"\n",
"\n",
"\n",
"[5.053787426794029, 1.2573654910261918]\n",
"[4.995801760317439, 1.2063426100293313]\n",
"QUALITY_R///0.19201769992008\n",
"QUALITY_S///0.19457573815833373\n",
"fraction is:0.7742938518997403\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.960213819685214, 1.2176482570289267]\n",
"[4.995801760317439, 1.2063426100293313]\n",
"QUALITY_R///0.1957911340000812\n",
"QUALITY_S///0.19457573815833373\n",
"fraction is:1.1292340648390184\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.995801760317439, 1.2063426100293313]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.960213819685214, 1.3166859233874888]\n",
"[4.960213819685214, 1.2176482570289267]\n",
"QUALITY_R///0.19485595852715074\n",
"QUALITY_S///0.1957911340000812\n",
"fraction is:0.9107220365795304\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.01178790556092, 1.357500953004938]\n",
"[4.960213819685214, 1.3166859233874888]\n",
"QUALITY_R///0.19258985065535406\n",
"QUALITY_S///0.19485595852715074\n",
"fraction is:0.7972310144446456\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.965093609077407, 1.3537242052225766]\n",
"[4.960213819685214, 1.3166859233874888]\n",
"QUALITY_R///0.19431318757937072\n",
"QUALITY_S///0.19485595852715074\n",
"fraction is:0.9471696143818527\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.9711290508442, 1.2479208335476202]\n",
"[4.965093609077407, 1.3537242052225766]\n",
"QUALITY_R///0.19510781781208147\n",
"QUALITY_S///0.19431318757937072\n",
"fraction is:1.0827055238805885\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.861715721857353, 1.2479208335476202]\n",
"[4.9711290508442, 1.2479208335476202]\n",
"QUALITY_R///0.19923012358088005\n",
"QUALITY_S///0.19510781781208147\n",
"fraction is:1.51018260938096\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.960213819685214, 1.2176482570289267]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.958269039596276, 1.3075264206674193]\n",
"[4.861715721857353, 1.2479208335476202]\n",
"QUALITY_R///0.19501642834923055\n",
"QUALITY_S///0.19923012358088005\n",
"fraction is:0.6561475948701084\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[5.05661188612325, 1.4080759138058088]\n",
"[4.958269039596276, 1.3075264206674193]\n",
"QUALITY_R///0.19051247667991264\n",
"QUALITY_S///0.19501642834923055\n",
"fraction is:0.6373762318399351\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.6879882977610565, 1.353593336000816]\n",
"[4.958269039596276, 1.3075264206674193]\n",
"QUALITY_R///0.20493933642179393\n",
"QUALITY_S///0.19501642834923055\n",
"fraction is:2.6974066387296025\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.861715721857353, 1.2479208335476202]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.6879882977610565, 1.5023560614460572]\n",
"[4.6879882977610565, 1.353593336000816]\n",
"QUALITY_R///0.20313496718401355\n",
"QUALITY_S///0.20493933642179393\n",
"fraction is:0.8349053417107483\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.62705144233582, 1.5023560614460572]\n",
"[4.6879882977610565, 1.5023560614460572]\n",
"QUALITY_R///0.20555656031976904\n",
"QUALITY_S///0.20313496718401355\n",
"fraction is:1.273997141689392\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.6879882977610565, 1.353593336000816]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.79605665224822, 1.5434739218706615]\n",
"[4.62705144233582, 1.5023560614460572]\n",
"QUALITY_R///0.19847962922251394\n",
"QUALITY_S///0.20555656031976904\n",
"fraction is:0.492779675887106\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.577238489241105, 1.5434739218706615]\n",
"[4.79605665224822, 1.5434739218706615]\n",
"QUALITY_R///0.20701926588309547\n",
"QUALITY_S///0.19847962922251394\n",
"fraction is:2.34893883373223\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.62705144233582, 1.5023560614460572]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.4046526689095815, 1.6599554977043947]\n",
"[4.577238489241105, 1.5434739218706615]\n",
"QUALITY_R///0.21244681818631586\n",
"QUALITY_S///0.20701926588309547\n",
"fraction is:1.7207413756668408\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.577238489241105, 1.5434739218706615]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.370123259644846, 1.7230902086914726]\n",
"[4.4046526689095815, 1.6599554977043947]\n",
"QUALITY_R///0.21287672662893892\n",
"QUALITY_S///0.21244681818631586\n",
"fraction is:1.0439283368728334\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.4046526689095815, 1.6599554977043947]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.370123259644846, 1.6690689526277949]\n",
"[4.370123259644846, 1.7230902086914726]\n",
"QUALITY_R///0.21376615433042495\n",
"QUALITY_S///0.21287672662893892\n",
"fraction is:1.0930181012728295\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.370123259644846, 1.7230902086914726]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.420078159782979, 1.5787055067640634]\n",
"[4.370123259644846, 1.6690689526277949]\n",
"QUALITY_R///0.21305839238774507\n",
"QUALITY_S///0.21376615433042495\n",
"fraction is:0.9316703819679414\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.4010773092246245, 1.5862653428352536]\n",
"[4.420078159782979, 1.5787055067640634]\n",
"QUALITY_R///0.21375662727596126\n",
"QUALITY_S///0.21305839238774507\n",
"fraction is:1.0723188882779744\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.336526703016509, 1.546645680857334]\n",
"[4.4010773092246245, 1.5862653428352536]\n",
"QUALITY_R///0.21719853530830863\n",
"QUALITY_S///0.21375662727596126\n",
"fraction is:1.4108478041524914\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.370123259644846, 1.6690689526277949]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.307442657698301, 1.546645680857334]\n",
"[4.336526703016509, 1.546645680857334]\n",
"QUALITY_R///0.2184980850129794\n",
"QUALITY_S///0.21719853530830863\n",
"fraction is:1.1387771035690024\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.336526703016509, 1.546645680857334]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.307442657698301, 1.4518358163411402]\n",
"[4.307442657698301, 1.546645680857334]\n",
"QUALITY_R///0.21999610047505375\n",
"QUALITY_S///0.2184980850129794\n",
"fraction is:1.1616036951937538\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.307442657698301, 1.546645680857334]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.262712558629769, 1.5117690028768869]\n",
"[4.307442657698301, 1.4518358163411402]\n",
"QUALITY_R///0.22109957252084714\n",
"QUALITY_S///0.21999610047505375\n",
"fraction is:1.1166657146087682\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.307442657698301, 1.4518358163411402]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.111426682385623, 1.6232958583170172]\n",
"[4.262712558629769, 1.5117690028768869]\n",
"QUALITY_R///0.22622976057451055\n",
"QUALITY_S///0.22109957252084714\n",
"fraction is:1.6703259806371642\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.262712558629769, 1.5117690028768869]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172]]\n",
"\n",
"\n",
"\n",
"\n",
"[4.23723341344197, 1.6232958583170172]\n",
"[4.111426682385623, 1.6232958583170172]\n",
"QUALITY_R///0.22038390773992306\n",
"QUALITY_S///0.22622976057451055\n",
"fraction is:0.557336950743184\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[4.095452900292015, 1.6232958583170172]\n",
"[4.111426682385623, 1.6232958583170172]\n",
"QUALITY_R///0.2269925368517139\n",
"QUALITY_S///0.22622976057451055\n",
"fraction is:1.0792621656626016\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.111426682385623, 1.6232958583170172]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172]]\n",
"\n",
"\n",
"\n",
"\n",
"[3.911489314171372, 1.6232958583170172]\n",
"[4.095452900292015, 1.6232958583170172]\n",
"QUALITY_R///0.2361300557858646\n",
"QUALITY_S///0.2269925368517139\n",
"fraction is:2.4936609541639374\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[4.095452900292015, 1.6232958583170172]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172]]\n",
"\n",
"\n",
"\n",
"\n",
"[3.7859832060426615, 1.6616657019742522]\n",
"[3.911489314171372, 1.6232958583170172]\n",
"QUALITY_R///0.24186218154812342\n",
"QUALITY_S///0.2361300557858646\n",
"fraction is:1.7739568787325788\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[3.911489314171372, 1.6232958583170172]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522]]\n",
"\n",
"\n",
"\n",
"\n",
"[3.7859832060426615, 1.741163991098192]\n",
"[3.7859832060426615, 1.6616657019742522]\n",
"QUALITY_R///0.23997090736586965\n",
"QUALITY_S///0.24186218154812342\n",
"fraction is:0.8276810383264988\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[3.676557406018872, 1.6091467342967236]\n",
"[3.7859832060426615, 1.741163991098192]\n",
"QUALITY_R///0.24917265974033845\n",
"QUALITY_S///0.23997090736586965\n",
"fraction is:2.509730150107809\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[3.7859832060426615, 1.6616657019742522]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236]]\n",
"\n",
"\n",
"\n",
"\n",
"[3.628639215133864, 1.741030347204777]\n",
"[3.676557406018872, 1.6091467342967236]\n",
"QUALITY_R///0.24846573079904807\n",
"QUALITY_S///0.24917265974033845\n",
"fraction is:0.9317479934726951\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[3.3899069817625116, 1.608163333421736]\n",
"[3.628639215133864, 1.741030347204777]\n",
"QUALITY_R///0.26652305628181705\n",
"QUALITY_S///0.24846573079904807\n",
"fraction is:6.084426952865308\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[3.676557406018872, 1.6091467342967236]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736]]\n",
"\n",
"\n",
"\n",
"\n",
"[3.166366031190185, 1.91492483850007]\n",
"[3.3899069817625116, 1.608163333421736]\n",
"QUALITY_R///0.2702425271181599\n",
"QUALITY_S///0.26652305628181705\n",
"fraction is:1.4505562210987528\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[3.3899069817625116, 1.608163333421736]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007]]\n",
"\n",
"\n",
"\n",
"\n",
"[3.0099298050409784, 2.0671909296864706]\n",
"[3.166366031190185, 1.91492483850007]\n",
"QUALITY_R///0.27386515632327835\n",
"QUALITY_S///0.2702425271181599\n",
"fraction is:1.436576597765839\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[3.166366031190185, 1.91492483850007]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706]]\n",
"\n",
"\n",
"\n",
"\n",
"[3.064779636463231, 2.0116883097589247]\n",
"[3.0099298050409784, 2.0671909296864706]\n",
"QUALITY_R///0.27277475693471864\n",
"QUALITY_S///0.27386515632327835\n",
"fraction is:0.89669460382643\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[3.004203732358505, 2.1017359612692124]\n",
"[3.064779636463231, 2.0116883097589247]\n",
"QUALITY_R///0.2727466507716972\n",
"QUALITY_S///0.27277475693471864\n",
"fraction is:0.9971933297820114\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[3.0398627641787637, 2.1074624625980496]\n",
"[3.004203732358505, 2.1017359612692124]\n",
"QUALITY_R///0.2703476566987949\n",
"QUALITY_S///0.2727466507716972\n",
"fraction is:0.7867069940747151\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[3.033296955208948, 2.0688106081387234]\n",
"[3.0398627641787637, 2.1074624625980496]\n",
"QUALITY_R///0.2723585891946076\n",
"QUALITY_S///0.2703476566987949\n",
"fraction is:1.2227387863871713\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[3.0265141186929903, 2.0688106081387234]\n",
"[3.033296955208948, 2.0688106081387234]\n",
"QUALITY_R///0.2727747471185635\n",
"QUALITY_S///0.2723585891946076\n",
"fraction is:1.0424938677252575\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.9178062706545207, 2.221637448025451]\n",
"[3.0265141186929903, 2.0688106081387234]\n",
"QUALITY_R///0.27267837815729634\n",
"QUALITY_S///0.2727747471185635\n",
"fraction is:0.9904093899527237\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.955324696662771, 2.221637448025451]\n",
"[2.9178062706545207, 2.221637448025451]\n",
"QUALITY_R///0.270471697394182\n",
"QUALITY_S///0.27267837815729634\n",
"fraction is:0.801982833216687\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.955324696662771, 2.221637448025451]\n",
"[2.955324696662771, 2.221637448025451]\n",
"QUALITY_R///0.270471697394182\n",
"QUALITY_S///0.270471697394182\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[3.2071217342348586, 2.221637448025451]\n",
"[2.955324696662771, 2.221637448025451]\n",
"QUALITY_R///0.25631503840984976\n",
"QUALITY_S///0.270471697394182\n",
"fraction is:0.2427639035105303\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[3.046731424099731, 2.2099242487259394]\n",
"[2.955324696662771, 2.221637448025451]\n",
"QUALITY_R///0.2656875518218126\n",
"QUALITY_S///0.270471697394182\n",
"fraction is:0.6197652155636059\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.8600040660704913, 2.2099242487259394]\n",
"[3.046731424099731, 2.2099242487259394]\n",
"QUALITY_R///0.27667637666514894\n",
"QUALITY_S///0.2656875518218126\n",
"fraction is:3.000810696514987\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[3.0099298050409784, 2.0671909296864706]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.8600040660704913, 2.2463385703321905]\n",
"[2.8600040660704913, 2.2099242487259394]\n",
"QUALITY_R///0.2749738024408874\n",
"QUALITY_S///0.27667637666514894\n",
"fraction is:0.8434476663033139\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.9339387405908743, 2.1095355204481616]\n",
"[2.8600040660704913, 2.2463385703321905]\n",
"QUALITY_R///0.27673200873066056\n",
"QUALITY_S///0.2749738024408874\n",
"fraction is:1.1922241889981815\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.8600040660704913, 2.2099242487259394]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.919425837452919, 2.1741456717200283]\n",
"[2.9339387405908743, 2.1095355204481616]\n",
"QUALITY_R///0.27472157758849486\n",
"QUALITY_S///0.27673200873066056\n",
"fraction is:0.8178771686603213\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.8819792515773752, 2.2193782489280136]\n",
"[2.919425837452919, 2.1741456717200283]\n",
"QUALITY_R///0.2749136949064504\n",
"QUALITY_S///0.27472157758849486\n",
"fraction is:1.019397464624615\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.8935738539028915, 1.9029913634846989]\n",
"[2.8819792515773752, 2.2193782489280136]\n",
"QUALITY_R///0.28874557572247406\n",
"QUALITY_S///0.2749136949064504\n",
"fraction is:3.9875941599086855\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.9339387405908743, 2.1095355204481616]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.862793701002794, 2.033190748271594]\n",
"[2.8935738539028915, 1.9029913634846989]\n",
"QUALITY_R///0.28479221014878847\n",
"QUALITY_S///0.28874557572247406\n",
"fraction is:0.6734533454174871\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.8487512993816595, 1.9029913634846989]\n",
"[2.8935738539028915, 1.9029913634846989]\n",
"QUALITY_R///0.29189448275933455\n",
"QUALITY_S///0.28874557572247406\n",
"fraction is:1.3701095548491968\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.8935738539028915, 1.9029913634846989]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.8487512993816595, 1.9029913634846989]\n",
"[2.8487512993816595, 1.9029913634846989]\n",
"QUALITY_R///0.29189448275933455\n",
"QUALITY_S///0.29189448275933455\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.6694894377324707, 1.8938565638262421]\n",
"[2.8487512993816595, 1.9029913634846989]\n",
"QUALITY_R///0.305525281333713\n",
"QUALITY_S///0.29189448275933455\n",
"fraction is:3.908211519413564\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.8487512993816595, 1.9029913634846989]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.688536628005249, 2.0286885402352466]\n",
"[2.6694894377324707, 1.8938565638262421]\n",
"QUALITY_R///0.2969071096009205\n",
"QUALITY_S///0.305525281333713\n",
"fraction is:0.4223938217316807\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.756186758123451, 2.167418238336497]\n",
"[2.688536628005249, 2.0286885402352466]\n",
"QUALITY_R///0.2851994443063175\n",
"QUALITY_S///0.2969071096009205\n",
"fraction is:0.31012912701895956\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.7728958520534666, 2.029430398962552]\n",
"[2.688536628005249, 2.0286885402352466]\n",
"QUALITY_R///0.29101830230777437\n",
"QUALITY_S///0.2969071096009205\n",
"fraction is:0.5549480743654306\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.7728958520534666, 1.9881408131009504]\n",
"[2.7728958520534666, 2.029430398962552]\n",
"QUALITY_R///0.2930843521773499\n",
"QUALITY_S///0.29101830230777437\n",
"fraction is:1.2294968085706357\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.781006718894831, 1.9881408131009504]\n",
"[2.7728958520534666, 1.9881408131009504]\n",
"QUALITY_R///0.29251895284225654\n",
"QUALITY_S///0.2930843521773499\n",
"fraction is:0.9450287454273965\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.7821836900846724, 1.9839841130243674]\n",
"[2.781006718894831, 1.9881408131009504]\n",
"QUALITY_R///0.29264372262662663\n",
"QUALITY_S///0.29251895284225654\n",
"fraction is:1.0125551406703566\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.8418356896884753, 1.875037297205395]\n",
"[2.7821836900846724, 1.9839841130243674]\n",
"QUALITY_R///0.2937140047354323\n",
"QUALITY_S///0.29264372262662663\n",
"fraction is:1.1129656517775277\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[3.073231769222944, 1.8459476670160644]\n",
"[2.8418356896884753, 1.875037297205395]\n",
"QUALITY_R///0.2789394712329352\n",
"QUALITY_S///0.2937140047354323\n",
"fraction is:0.2282181406366783\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.8027243050496287, 1.8981426515337574]\n",
"[2.8418356896884753, 1.875037297205395]\n",
"QUALITY_R///0.29542118043105503\n",
"QUALITY_S///0.2937140047354323\n",
"fraction is:1.1861556952370274\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.8205134334191406, 1.8519289855405316]\n",
"[2.8027243050496287, 1.8981426515337574]\n",
"QUALITY_R///0.29637030303843587\n",
"QUALITY_S///0.29542118043105503\n",
"fraction is:1.0995623761023554\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.8228703841187612, 1.8519289855405316]\n",
"[2.8205134334191406, 1.8519289855405316]\n",
"QUALITY_R///0.29619732785356395\n",
"QUALITY_S///0.29637030303843587\n",
"fraction is:0.9828512247214379\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.8228703841187612, 1.831219080935181]\n",
"[2.8228703841187612, 1.8519289855405316]\n",
"QUALITY_R///0.2971934145646731\n",
"QUALITY_S///0.29619732785356395\n",
"fraction is:1.1047385173789852\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.7448826545307514, 1.8231304134011026]\n",
"[2.8228703841187612, 1.831219080935181]\n",
"QUALITY_R///0.3034739208587587\n",
"QUALITY_S///0.2971934145646731\n",
"fraction is:1.8739539856049574\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.6571920174201558, 1.6754811461002996]\n",
"[2.7448826545307514, 1.8231304134011026]\n",
"QUALITY_R///0.31833726986216676\n",
"QUALITY_S///0.3034739208587587\n",
"fraction is:4.420862887007174\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.6694894377324707, 1.8938565638262421]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.7569573679747887, 1.824981511499208]\n",
"[2.6571920174201558, 1.6754811461002996]\n",
"QUALITY_R///0.30245632719002297\n",
"QUALITY_S///0.31833726986216676\n",
"fraction is:0.2043146100039703\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.5368493644507777, 1.6928208138349157]\n",
"[2.6571920174201558, 1.6754811461002996]\n",
"QUALITY_R///0.3278909357333988\n",
"QUALITY_S///0.31833726986216676\n",
"fraction is:2.5996233967266296\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.6571920174201558, 1.6754811461002996]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.5368493644507777, 1.857047371906076]\n",
"[2.5368493644507777, 1.6928208138349157]\n",
"QUALITY_R///0.3180743047843117\n",
"QUALITY_S///0.3278909357333988\n",
"fraction is:0.3746874396197122\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.5135941494704013, 1.923371395308529]\n",
"[2.5368493644507777, 1.857047371906076]\n",
"QUALITY_R///0.315951223207128\n",
"QUALITY_S///0.3180743047843117\n",
"fraction is:0.8087154472572303\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.455344009987739, 2.10273894909023]\n",
"[2.5135941494704013, 1.923371395308529]\n",
"QUALITY_R///0.3093407778668913\n",
"QUALITY_S///0.315951223207128\n",
"fraction is:0.5163117475451657\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.4628297104675045, 1.9980403765424724]\n",
"[2.455344009987739, 2.10273894909023]\n",
"QUALITY_R///0.3153194481603573\n",
"QUALITY_S///0.3093407778668913\n",
"fraction is:1.8182364164397118\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.4628297104675045, 2.091774722563264]\n",
"[2.4628297104675045, 1.9980403765424724]\n",
"QUALITY_R///0.3094766431329335\n",
"QUALITY_S///0.3153194481603573\n",
"fraction is:0.557506842186794\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.55874629269397, 1.9212166729234832]\n",
"[2.4628297104675045, 1.9980403765424724]\n",
"QUALITY_R///0.31252661328249914\n",
"QUALITY_S///0.3153194481603573\n",
"fraction is:0.7563254637899199\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.481464136334576, 2.0656093808052343]\n",
"[2.4628297104675045, 1.9980403765424724]\n",
"QUALITY_R///0.30972362489226485\n",
"QUALITY_S///0.3153194481603573\n",
"fraction is:0.571447692392005\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.481464136334576, 2.1191299343357244]\n",
"[2.481464136334576, 2.0656093808052343]\n",
"QUALITY_R///0.3064490732368662\n",
"QUALITY_S///0.30972362489226485\n",
"fraction is:0.7207556052395969\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3269277764057885, 1.9883420203483693]\n",
"[2.481464136334576, 2.0656093808052343]\n",
"QUALITY_R///0.32671894169409277\n",
"QUALITY_S///0.30972362489226485\n",
"fraction is:5.471384433874119\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.379298912907627, 1.9981860528636943]\n",
"[2.3269277764057885, 1.9883420203483693]\n",
"QUALITY_R///0.3218478468411759\n",
"QUALITY_S///0.32671894169409277\n",
"fraction is:0.6143997615249795\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3858893691351435, 2.1193695549238685]\n",
"[2.379298912907627, 1.9981860528636943]\n",
"QUALITY_R///0.3133550069607269\n",
"QUALITY_S///0.3218478468411759\n",
"fraction is:0.42772107573801654\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.374253982806858, 2.1445745276580777]\n",
"[2.379298912907627, 1.9981860528636943]\n",
"QUALITY_R///0.3125567494702623\n",
"QUALITY_S///0.3218478468411759\n",
"fraction is:0.39490512330715233\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.379298912907627, 1.9505205116812812]\n",
"[2.379298912907627, 1.9981860528636943]\n",
"QUALITY_R///0.32503196484917496\n",
"QUALITY_S///0.3218478468411759\n",
"fraction is:1.374942347020598\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.379298912907627, 2.005202039045557]\n",
"[2.379298912907627, 1.9505205116812812]\n",
"QUALITY_R///0.3213806586846117\n",
"QUALITY_S///0.32503196484917496\n",
"fraction is:0.6941059832929152\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3530806929476085, 1.8175283017266768]\n",
"[2.379298912907627, 1.9505205116812812]\n",
"QUALITY_R///0.3363288282560425\n",
"QUALITY_S///0.32503196484917496\n",
"fraction is:3.0946856708956076\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.5368493644507777, 1.6928208138349157]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.4192260320790577, 1.786392862073293]\n",
"[2.3530806929476085, 1.8175283017266768]\n",
"QUALITY_R///0.33252417712712673\n",
"QUALITY_S///0.3363288282560425\n",
"fraction is:0.6835434104132831\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.47448119314521, 1.6278709930316992]\n",
"[2.4192260320790577, 1.786392862073293]\n",
"QUALITY_R///0.3376178593639086\n",
"QUALITY_S///0.33252417712712673\n",
"fraction is:1.66423943567328\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.3530806929476085, 1.8175283017266768]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.4461842227722874, 1.6278709930316992]\n",
"[2.47448119314521, 1.6278709930316992]\n",
"QUALITY_R///0.3403294095370257\n",
"QUALITY_S///0.3376178593639086\n",
"fraction is:1.311478356476934\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.47448119314521, 1.6278709930316992]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.4461842227722874, 1.569941783979457]\n",
"[2.4461842227722874, 1.6278709930316992]\n",
"QUALITY_R///0.34404029403954545\n",
"QUALITY_S///0.3403294095370257\n",
"fraction is:1.4493112596636175\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.4461842227722874, 1.6278709930316992]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.4461842227722874, 1.569941783979457]\n",
"[2.4461842227722874, 1.569941783979457]\n",
"QUALITY_R///0.34404029403954545\n",
"QUALITY_S///0.34404029403954545\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3749469510172414, 1.569941783979457]\n",
"[2.4461842227722874, 1.569941783979457]\n",
"QUALITY_R///0.3512538338263241\n",
"QUALITY_S///0.34404029403954545\n",
"fraction is:2.0572167534097248\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.4461842227722874, 1.569941783979457]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.3749469510172414, 1.5409946445880796]\n",
"[2.3749469510172414, 1.569941783979457]\n",
"QUALITY_R///0.3532215730341452\n",
"QUALITY_S///0.3512538338263241\n",
"fraction is:1.2174687652038052\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.3749469510172414, 1.569941783979457]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.5653445680903064, 1.486973399593344]\n",
"[2.3749469510172414, 1.5409946445880796]\n",
"QUALITY_R///0.33725167795913347\n",
"QUALITY_S///0.3532215730341452\n",
"fraction is:0.20250524176705106\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3883634217061562, 1.5581943261530722]\n",
"[2.3749469510172414, 1.5409946445880796]\n",
"QUALITY_R///0.3506668043746226\n",
"QUALITY_S///0.3532215730341452\n",
"fraction is:0.7745470547618022\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3314371777495055, 1.634936376446408]\n",
"[2.3883634217061562, 1.5581943261530722]\n",
"QUALITY_R///0.35117745390143096\n",
"QUALITY_S///0.3506668043746226\n",
"fraction is:1.0523912466960712\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3314371777495055, 1.8207437895648049]\n",
"[2.3314371777495055, 1.634936376446408]\n",
"QUALITY_R///0.33804803998430677\n",
"QUALITY_S///0.35117745390143096\n",
"fraction is:0.26902757597600985\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.449140862918495, 1.634936376446408]\n",
"[2.3314371777495055, 1.634936376446408]\n",
"QUALITY_R///0.3395921916132668\n",
"QUALITY_S///0.35117745390143096\n",
"fraction is:0.3139485283959785\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.365426716397192, 1.6134551236322323]\n",
"[2.3314371777495055, 1.634936376446408]\n",
"QUALITY_R///0.34924749765263197\n",
"QUALITY_S///0.35117745390143096\n",
"fraction is:0.824485581354657\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.365426716397192, 1.4985703164817328]\n",
"[2.365426716397192, 1.6134551236322323]\n",
"QUALITY_R///0.3571210719623493\n",
"QUALITY_S///0.34924749765263197\n",
"fraction is:2.1975814856777545\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.3749469510172414, 1.5409946445880796]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.314171611169998, 1.5132111947685962]\n",
"[2.365426716397192, 1.4985703164817328]\n",
"QUALITY_R///0.3616642827781066\n",
"QUALITY_S///0.3571210719623493\n",
"fraction is:1.575103653055184\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.365426716397192, 1.4985703164817328]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.223756031026309, 1.5132111947685962]\n",
"[2.314171611169998, 1.5132111947685962]\n",
"QUALITY_R///0.3717780656666488\n",
"QUALITY_S///0.3616642827781066\n",
"fraction is:2.7493878553744957\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.314171611169998, 1.5132111947685962]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.316554863719062, 1.7068348032288485]\n",
"[2.223756031026309, 1.5132111947685962]\n",
"QUALITY_R///0.34753007835056926\n",
"QUALITY_S///0.3717780656666488\n",
"fraction is:0.08849592868303713\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.335635753009947, 1.6770644862452284]\n",
"[2.316554863719062, 1.7068348032288485]\n",
"QUALITY_R///0.3477816019101315\n",
"QUALITY_S///0.34753007835056926\n",
"fraction is:1.025471345290634\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3066292606041774, 1.6770644862452284]\n",
"[2.335635753009947, 1.6770644862452284]\n",
"QUALITY_R///0.35064881491525424\n",
"QUALITY_S///0.3477816019101315\n",
"fraction is:1.3320529192720987\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3066292606041774, 1.6770644862452284]\n",
"[2.3066292606041774, 1.6770644862452284]\n",
"QUALITY_R///0.35064881491525424\n",
"QUALITY_S///0.35064881491525424\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.3066292606041774, 1.614362196806095]\n",
"[2.3066292606041774, 1.6770644862452284]\n",
"QUALITY_R///0.3551842370063882\n",
"QUALITY_S///0.35064881491525424\n",
"fraction is:1.5738773258327485\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.311720026244638, 1.6529857686010712]\n",
"[2.3066292606041774, 1.614362196806095]\n",
"QUALITY_R///0.3518769205623224\n",
"QUALITY_S///0.3551842370063882\n",
"fraction is:0.7183979292778935\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.1574345028526163, 1.614362196806095]\n",
"[2.3066292606041774, 1.614362196806095]\n",
"QUALITY_R///0.3711172013756516\n",
"QUALITY_S///0.3551842370063882\n",
"fraction is:4.919940499956627\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.146868216297011, 1.6619548002519853]\n",
"[2.1574345028526163, 1.614362196806095]\n",
"QUALITY_R///0.3683263264271575\n",
"QUALITY_S///0.3711172013756516\n",
"fraction is:0.7564737127658498\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[2.0130186558164582, 1.617944361558398]\n",
"[2.146868216297011, 1.6619548002519853]\n",
"QUALITY_R///0.3872018927300547\n",
"QUALITY_S///0.3683263264271575\n",
"fraction is:6.60321485902293\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.223756031026309, 1.5132111947685962]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.0441691334891883, 1.5240712928013251]\n",
"[2.0130186558164582, 1.617944361558398]\n",
"QUALITY_R///0.3921894107850877\n",
"QUALITY_S///0.3872018927300547\n",
"fraction is:1.6466646296944596\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.0130186558164582, 1.617944361558398]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251]]\n",
"\n",
"\n",
"\n",
"\n",
"[2.0441691334891883, 1.5240712928013251]\n",
"[2.0441691334891883, 1.5240712928013251]\n",
"QUALITY_R///0.3921894107850877\n",
"QUALITY_S///0.3921894107850877\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.9834143324580218, 1.6370161125884257]\n",
"[2.0441691334891883, 1.5240712928013251]\n",
"QUALITY_R///0.38884451382873847\n",
"QUALITY_S///0.3921894107850877\n",
"fraction is:0.7157032196571689\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.8569145154395372, 1.7040403531269812]\n",
"[1.9834143324580218, 1.6370161125884257]\n",
"QUALITY_R///0.39677900609911293\n",
"QUALITY_S///0.38884451382873847\n",
"fraction is:2.211009562954165\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[2.0441691334891883, 1.5240712928013251]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.6961086598792476, 1.7266248474441412]\n",
"[1.8569145154395372, 1.7040403531269812]\n",
"QUALITY_R///0.41316607166073105\n",
"QUALITY_S///0.39677900609911293\n",
"fraction is:5.148505900427099\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.8569145154395372, 1.7040403531269812]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.670512216835277, 1.7266248474441412]\n",
"[1.6961086598792476, 1.7266248474441412]\n",
"QUALITY_R///0.416238925251111\n",
"QUALITY_S///0.41316607166073105\n",
"fraction is:1.3597289236536205\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.6961086598792476, 1.7266248474441412]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.8981527766497055, 1.6916359973481452]\n",
"[1.670512216835277, 1.7266248474441412]\n",
"QUALITY_R///0.3933042353266552\n",
"QUALITY_S///0.416238925251111\n",
"fraction is:0.10091577787443429\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.5261301902892137, 1.6392527910143146]\n",
"[1.670512216835277, 1.7266248474441412]\n",
"QUALITY_R///0.4464898384871445\n",
"QUALITY_S///0.416238925251111\n",
"fraction is:20.59588551579331\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.670512216835277, 1.7266248474441412]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.5895592646003904, 1.7108372650560317]\n",
"[1.5261301902892137, 1.6392527910143146]\n",
"QUALITY_R///0.42820906696129335\n",
"QUALITY_S///0.4464898384871445\n",
"fraction is:0.1607223153313728\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.7016307323701823, 1.4701669030515734]\n",
"[1.5261301902892137, 1.6392527910143146]\n",
"QUALITY_R///0.44468879957526997\n",
"QUALITY_S///0.4464898384871445\n",
"fraction is:0.8351834387047002\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.5511429133094368, 1.4701669030515734]\n",
"[1.7016307323701823, 1.4701669030515734]\n",
"QUALITY_R///0.46791159723714487\n",
"QUALITY_S///0.44468879957526997\n",
"fraction is:10.198898927585812\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.5261301902892137, 1.6392527910143146]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.5208894501005805, 1.6176727242879871]\n",
"[1.5511429133094368, 1.4701669030515734]\n",
"QUALITY_R///0.4503787302898633\n",
"QUALITY_S///0.46791159723714487\n",
"fraction is:0.1732037391037218\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.5126840115798776, 1.4721727949332508]\n",
"[1.5511429133094368, 1.4701669030515734]\n",
"QUALITY_R///0.4737524842159059\n",
"QUALITY_S///0.46791159723714487\n",
"fraction is:1.7933559516604294\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.5511429133094368, 1.4701669030515734]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.6835929251381534, 1.5377721412825232]\n",
"[1.5126840115798776, 1.4721727949332508]\n",
"QUALITY_R///0.43856155313689943\n",
"QUALITY_S///0.4737524842159059\n",
"fraction is:0.029626290837547836\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.5007055905635716, 1.4794803171364024]\n",
"[1.5126840115798776, 1.4721727949332508]\n",
"QUALITY_R///0.4745266703907523\n",
"QUALITY_S///0.4737524842159059\n",
"fraction is:1.0804942955367443\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.5126840115798776, 1.4721727949332508]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.6863655538969116, 1.5198390987707948]\n",
"[1.5007055905635716, 1.4794803171364024]\n",
"QUALITY_R///0.44049274657116555\n",
"QUALITY_S///0.4745266703907523\n",
"fraction is:0.03326024689850011\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.5826103018762379, 1.4794803171364024]\n",
"[1.5007055905635716, 1.4794803171364024]\n",
"QUALITY_R///0.46158404104723866\n",
"QUALITY_S///0.4745266703907523\n",
"fraction is:0.2740998194564286\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.779847754938126, 1.4794803171364024]\n",
"[1.5826103018762379, 1.4794803171364024]\n",
"QUALITY_R///0.4320664308571147\n",
"QUALITY_S///0.46158404104723866\n",
"fraction is:0.05224761584116802\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.7539408644183034, 1.4794803171364024]\n",
"[1.5826103018762379, 1.4794803171364024]\n",
"QUALITY_R///0.435806574513842\n",
"QUALITY_S///0.46158404104723866\n",
"fraction is:0.07594494164027642\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.5233536973431385, 1.383328771150882]\n",
"[1.5826103018762379, 1.4794803171364024]\n",
"QUALITY_R///0.48597514821071264\n",
"QUALITY_S///0.46158404104723866\n",
"fraction is:11.462842490458256\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.5007055905635716, 1.4794803171364024]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.4763761745238801, 1.3675235953847287]\n",
"[1.5233536973431385, 1.383328771150882]\n",
"QUALITY_R///0.49691581114595257\n",
"QUALITY_S///0.48597514821071264\n",
"fraction is:2.9863929667548317\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.5233536973431385, 1.383328771150882]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.350272672727706, 1.500814285141758]\n",
"[1.4763761745238801, 1.3675235953847287]\n",
"QUALITY_R///0.49533608928208345\n",
"QUALITY_S///0.49691581114595257\n",
"fraction is:0.8538735309462235\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.350272672727706, 1.4237753150167967]\n",
"[1.350272672727706, 1.500814285141758]\n",
"QUALITY_R///0.5096225422951448\n",
"QUALITY_S///0.49533608928208345\n",
"fraction is:4.173042146247247\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.4763761745238801, 1.3675235953847287]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.350272672727706, 1.2525190805149855]\n",
"[1.350272672727706, 1.4237753150167967]\n",
"QUALITY_R///0.542962075002507\n",
"QUALITY_S///0.5096225422951448\n",
"fraction is:28.049008134965753\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.350272672727706, 1.4237753150167967]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.4368558935757398, 1.1028759808554278]\n",
"[1.350272672727706, 1.2525190805149855]\n",
"QUALITY_R///0.5520827097505226\n",
"QUALITY_S///0.542962075002507\n",
"fraction is:2.4894541630047695\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.350272672727706, 1.2525190805149855]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.526730163235496, 1.1028759808554278]\n",
"[1.4368558935757398, 1.1028759808554278]\n",
"QUALITY_R///0.5309512990798698\n",
"QUALITY_S///0.5520827097505226\n",
"fraction is:0.12085774730945283\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.1817252256305033, 1.0747187293525695]\n",
"[1.4368558935757398, 1.1028759808554278]\n",
"QUALITY_R///0.6260408197450243\n",
"QUALITY_S///0.5520827097505226\n",
"fraction is:1629.1456242002328\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.4368558935757398, 1.1028759808554278]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.165257561233246, 1.0747187293525695]\n",
"[1.1817252256305033, 1.0747187293525695]\n",
"QUALITY_R///0.6308369214854138\n",
"QUALITY_S///0.6260408197450243\n",
"fraction is:1.6154445372127622\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.1817252256305033, 1.0747187293525695]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695]]\n",
"\n",
"\n",
"\n",
"\n",
"[1.2166737491841226, 1.0297451539938236]\n",
"[1.165257561233246, 1.0747187293525695]\n",
"QUALITY_R///0.6273730548868911\n",
"QUALITY_S///0.6308369214854138\n",
"fraction is:0.7072389733145659\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[1.0345782850749923, 1.2204662863295852]\n",
"[1.165257561233246, 1.0747187293525695]\n",
"QUALITY_R///0.6250134057028023\n",
"QUALITY_S///0.6308369214854138\n",
"fraction is:0.5585832686220312\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.9373773761515032, 1.1396859327491053]\n",
"[1.0345782850749923, 1.2204662863295852]\n",
"QUALITY_R///0.6776647535963981\n",
"QUALITY_S///0.6250134057028023\n",
"fraction is:193.47238504885843\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[1.165257561233246, 1.0747187293525695]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.9373773761515032, 1.0715433735204483]\n",
"[0.9373773761515032, 1.1396859327491053]\n",
"QUALITY_R///0.7024021231203766\n",
"QUALITY_S///0.6776647535963981\n",
"fraction is:11.86670942481171\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.9373773761515032, 1.1396859327491053]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.9187288547183263, 1.0900579054947859]\n",
"[0.9373773761515032, 1.0715433735204483]\n",
"QUALITY_R///0.7014670448387414\n",
"QUALITY_S///0.7024021231203766\n",
"fraction is:0.9107308880479805\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.9567366317622232, 1.1335768902272827]\n",
"[0.9187288547183263, 1.0900579054947859]\n",
"QUALITY_R///0.6741475340043235\n",
"QUALITY_S///0.7014670448387414\n",
"fraction is:0.06509216544727872\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.9187288547183263, 1.0913554382957225]\n",
"[0.9187288547183263, 1.0900579054947859]\n",
"QUALITY_R///0.7009790729803035\n",
"QUALITY_S///0.7014670448387414\n",
"fraction is:0.9523742650955119\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.9187288547183263, 1.0913554382957225]\n",
"[0.9187288547183263, 1.0913554382957225]\n",
"QUALITY_R///0.7009790729803035\n",
"QUALITY_S///0.7009790729803035\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.7563784954846597, 1.0738989927860294]\n",
"[0.9187288547183263, 1.0913554382957225]\n",
"QUALITY_R///0.7613059018025402\n",
"QUALITY_S///0.7009790729803035\n",
"fraction is:416.8318413119776\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.9373773761515032, 1.0715433735204483]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.6856474067998508, 1.0942235215499974]\n",
"[0.7563784954846597, 1.0738989927860294]\n",
"QUALITY_R///0.7744176101529551\n",
"QUALITY_S///0.7613059018025402\n",
"fraction is:3.710515571566825\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.7563784954846597, 1.0738989927860294]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.742741687477763, 1.0942235215499974]\n",
"[0.6856474067998508, 1.0942235215499974]\n",
"QUALITY_R///0.75614710877103\n",
"QUALITY_S///0.7744176101529551\n",
"fraction is:0.160887464253075\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.7817237419198304, 0.9813735760327346]\n",
"[0.6856474067998508, 1.0942235215499974]\n",
"QUALITY_R///0.7970250344711836\n",
"QUALITY_S///0.7744176101529551\n",
"fraction is:9.590206598900105\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.6856474067998508, 1.0942235215499974]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.7817237419198304, 1.046534639476874]\n",
"[0.7817237419198304, 0.9813735760327346]\n",
"QUALITY_R///0.765541782552947\n",
"QUALITY_S///0.7970250344711836\n",
"fraction is:0.04292395609278827\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.8945804152795324, 1.0141746149726125]\n",
"[0.7817237419198304, 0.9813735760327346]\n",
"QUALITY_R///0.7394588513755396\n",
"QUALITY_S///0.7970250344711836\n",
"fraction is:0.0031617857205143846\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.8344356275316307, 0.8666741724661906]\n",
"[0.7817237419198304, 0.9813735760327346]\n",
"QUALITY_R///0.8311983549449066\n",
"QUALITY_S///0.7970250344711836\n",
"fraction is:30.487965969336013\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.7817237419198304, 0.9813735760327346]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.9787585866169337, 0.6969838995510642]\n",
"[0.8344356275316307, 0.8666741724661906]\n",
"QUALITY_R///0.8322489584627167\n",
"QUALITY_S///0.8311983549449066\n",
"fraction is:1.1107776457420664\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.8344356275316307, 0.8666741724661906]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.8531717539137342, 0.6969838995510642]\n",
"[0.9787585866169337, 0.6969838995510642]\n",
"QUALITY_R///0.9077084200009895\n",
"QUALITY_S///0.8322489584627167\n",
"fraction is:1893.0530096979865\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.9787585866169337, 0.6969838995510642]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.8531717539137342, 0.695893256167055]\n",
"[0.8531717539137342, 0.6969838995510642]\n",
"QUALITY_R///0.9082770275339634\n",
"QUALITY_S///0.9077084200009895\n",
"fraction is:1.0585084063277113\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.8531717539137342, 0.6969838995510642]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.8373959009399372, 0.7230819110140125]\n",
"[0.8531717539137342, 0.695893256167055]\n",
"QUALITY_R///0.9038476124068087\n",
"QUALITY_S///0.9082770275339634\n",
"fraction is:0.6421447632929794\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.8348979357959858, 0.695893256167055]\n",
"[0.8531717539137342, 0.695893256167055]\n",
"QUALITY_R///0.9200593779732655\n",
"QUALITY_S///0.9082770275339634\n",
"fraction is:3.248635441207762\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.8531717539137342, 0.695893256167055]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.745170404383672, 0.7882250096151733]\n",
"[0.8348979357959858, 0.695893256167055]\n",
"QUALITY_R///0.9219125191387393\n",
"QUALITY_S///0.9200593779732655\n",
"fraction is:1.2035964503163654\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.8348979357959858, 0.695893256167055]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.813697291133306, 0.7882250096151733]\n",
"[0.745170404383672, 0.7882250096151733]\n",
"QUALITY_R///0.8827112325252835\n",
"QUALITY_S///0.9219125191387393\n",
"fraction is:0.01983854212663786\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.745170404383672, 0.6757426935814994]\n",
"[0.745170404383672, 0.7882250096151733]\n",
"QUALITY_R///0.9940990854417591\n",
"QUALITY_S///0.9219125191387393\n",
"fraction is:1364.6545931713426\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.745170404383672, 0.7882250096151733]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.5951027927829815, 0.6604290796522768]\n",
"[0.745170404383672, 0.6757426935814994]\n",
"QUALITY_R///1.1248644430072647\n",
"QUALITY_S///0.9940990854417591\n",
"fraction is:477603.30284946156\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.745170404383672, 0.6757426935814994]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.5951027927829815, 0.6604290796522768]\n",
"[0.5951027927829815, 0.6604290796522768]\n",
"QUALITY_R///1.1248644430072647\n",
"QUALITY_S///1.1248644430072647\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.5638716189943292, 0.6604290796522768]\n",
"[0.5951027927829815, 0.6604290796522768]\n",
"QUALITY_R///1.15154366938365\n",
"QUALITY_S///1.1248644430072647\n",
"fraction is:14.41000328010689\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.5951027927829815, 0.6604290796522768]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.4846641705367689, 0.6604290796522768]\n",
"[0.5638716189943292, 0.6604290796522768]\n",
"QUALITY_R///1.2207237824660178\n",
"QUALITY_S///1.15154366938365\n",
"fraction is:1010.3088025833035\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.5638716189943292, 0.6604290796522768]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.545646738601485, 0.5514671119847743]\n",
"[0.4846641705367689, 0.6604290796522768]\n",
"QUALITY_R///1.2890126769000452\n",
"QUALITY_S///1.2207237824660178\n",
"fraction is:924.1639060429386\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.4846641705367689, 0.6604290796522768]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.4447598085936159, 0.5367028045746085]\n",
"[0.545646738601485, 0.5514671119847743]\n",
"QUALITY_R///1.4346431737272092\n",
"QUALITY_S///1.2890126769000452\n",
"fraction is:2111796.7485946543\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.545646738601485, 0.5514671119847743]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.5210618938067, 0.5367028045746085]\n",
"[0.4447598085936159, 0.5367028045746085]\n",
"QUALITY_R///1.3368369943234115\n",
"QUALITY_S///1.4346431737272092\n",
"fraction is:5.653684884895499e-05\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.5401908374547584, 0.33658185547746755]\n",
"[0.4447598085936159, 0.5367028045746085]\n",
"QUALITY_R///1.5711670765479142\n",
"QUALITY_S///1.4346431737272092\n",
"fraction is:849489.0092200328\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.4447598085936159, 0.5367028045746085]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.5672397341252972, 0.38856086667568357]\n",
"[0.5401908374547584, 0.33658185547746755]\n",
"QUALITY_R///1.454415893802054\n",
"QUALITY_S///1.5711670765479142\n",
"fraction is:8.502772471051205e-06\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.4452598405965462, 0.33658185547746755]\n",
"[0.5401908374547584, 0.33658185547746755]\n",
"QUALITY_R///1.791597853467911\n",
"QUALITY_S///1.5711670765479142\n",
"fraction is:3742717137.6968265\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.5401908374547584, 0.33658185547746755]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.45542685438875485, 0.3416109450345255]\n",
"[0.4452598405965462, 0.33658185547746755]\n",
"QUALITY_R///1.7565182811347235\n",
"QUALITY_S///1.791597853467911\n",
"fraction is:0.02995804927846021\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.5637541231152163, 0.52635763794572]\n",
"[0.4452598405965462, 0.33658185547746755]\n",
"QUALITY_R///1.296547923857021\n",
"QUALITY_S///1.791597853467911\n",
"fraction is:3.164133001138598e-22\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.4314420836552507, 0.42878871315853845]\n",
"[0.4452598405965462, 0.33658185547746755]\n",
"QUALITY_R///1.6439853585850248\n",
"QUALITY_S///1.791597853467911\n",
"fraction is:3.8839246986725904e-07\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.5456017526105091, 0.33658185547746755]\n",
"[0.4452598405965462, 0.33658185547746755]\n",
"QUALITY_R///1.5598960921579579\n",
"QUALITY_S///1.791597853467911\n",
"fraction is:8.656062062314911e-11\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.4126983292256511, 0.5137770401834525]\n",
"[0.4452598405965462, 0.33658185547746755]\n",
"QUALITY_R///1.5174406233043674\n",
"QUALITY_S///1.791597853467911\n",
"fraction is:1.2402315543642299e-12\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.18440605920729763, 0.446874325605652]\n",
"[0.4452598405965462, 0.33658185547746755]\n",
"QUALITY_R///2.068562018259641\n",
"QUALITY_S///1.791597853467911\n",
"fraction is:1067581023254.3448\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.4452598405965462, 0.33658185547746755]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.22887123206087356, 0.46074221335025767]\n",
"[0.18440605920729763, 0.446874325605652]\n",
"QUALITY_R///1.9437991702257031\n",
"QUALITY_S///2.068562018259641\n",
"fraction is:3.816087772766113e-06\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.18440605920729763, 0.6117952626356171]\n",
"[0.18440605920729763, 0.446874325605652]\n",
"QUALITY_R///1.5649873146694988\n",
"QUALITY_S///2.068562018259641\n",
"fraction is:1.3490514108693835e-22\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.2665677221399444, 0.5567031199171686]\n",
"[0.18440605920729763, 0.446874325605652]\n",
"QUALITY_R///1.620133432572625\n",
"QUALITY_S///2.068562018259641\n",
"fraction is:3.349607889846518e-20\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.21207707116463717, 0.446874325605652]\n",
"[0.18440605920729763, 0.446874325605652]\n",
"QUALITY_R///2.0216532510736136\n",
"QUALITY_S///2.068562018259641\n",
"fraction is:0.009178635547169063\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09750399145350819, 0.46959496580926974]\n",
"[0.18440605920729763, 0.446874325605652]\n",
"QUALITY_R///2.0850242086103514\n",
"QUALITY_S///2.068562018259641\n",
"fraction is:5.187329590904113\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.18440605920729763, 0.446874325605652]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.12166205508945657, 0.46959496580926974]\n",
"[0.09750399145350819, 0.46959496580926974]\n",
"QUALITY_R///2.061434673168783\n",
"QUALITY_S///2.0850242086103514\n",
"fraction is:0.09451908150698679\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.0773248748767218, 0.5311892897589944]\n",
"[0.09750399145350819, 0.46959496580926974]\n",
"QUALITY_R///1.8629333668138641\n",
"QUALITY_S///2.0850242086103514\n",
"fraction is:2.2631705996081897e-10\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.1280280419882439, 0.6801811129233544]\n",
"[0.09750399145350819, 0.46959496580926974]\n",
"QUALITY_R///1.4448249483574218\n",
"QUALITY_S///2.0850242086103514\n",
"fraction is:1.572169603634999e-28\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09750399145350819, 0.46959496580926974]\n",
"[0.09750399145350819, 0.46959496580926974]\n",
"QUALITY_R///2.0850242086103514\n",
"QUALITY_S///2.0850242086103514\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.10658632283511241, 0.4740447529614597]\n",
"[0.09750399145350819, 0.46959496580926974]\n",
"QUALITY_R///2.0581226648730673\n",
"QUALITY_S///2.0850242086103514\n",
"fraction is:0.06787046114686444\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.15510753866149649, 0.37352634745786467]\n",
"[0.09750399145350819, 0.46959496580926974]\n",
"QUALITY_R///2.4724898950214316\n",
"QUALITY_S///2.0850242086103514\n",
"fraction is:6.720799718632232e+16\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.09750399145350819, 0.46959496580926974]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.15510753866149649, 0.37352634745786467]\n",
"[0.15510753866149649, 0.37352634745786467]\n",
"QUALITY_R///2.4724898950214316\n",
"QUALITY_S///2.4724898950214316\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.1495778778896783, 0.4730569570069555]\n",
"[0.15510753866149649, 0.37352634745786467]\n",
"QUALITY_R///2.0155538744515935\n",
"QUALITY_S///2.4724898950214316\n",
"fraction is:1.4306083922174356e-20\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.11314881192716021, 0.3155115108922473]\n",
"[0.15510753866149649, 0.37352634745786467]\n",
"QUALITY_R///2.9834113565579727\n",
"QUALITY_S///2.4724898950214316\n",
"fraction is:1.5453866033992604e+22\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.15510753866149649, 0.37352634745786467]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.10915659971634487, 0.22427499830129277]\n",
"[0.11314881192716021, 0.3155115108922473]\n",
"QUALITY_R///4.009169413219291\n",
"QUALITY_S///2.9834113565579727\n",
"fraction is:3.5326969028594097e+44\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.11314881192716021, 0.3155115108922473]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.021003895575133352, 0.25949829512480477]\n",
"[0.10915659971634487, 0.22427499830129277]\n",
"QUALITY_R///3.841028447252393\n",
"QUALITY_S///4.009169413219291\n",
"fraction is:4.9857515147279e-08\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.1549308483684162, 0.28796907274860695]\n",
"[0.10915659971634487, 0.22427499830129277]\n",
"QUALITY_R///3.058093184530497\n",
"QUALITY_S///4.009169413219291\n",
"fraction is:4.9577451814994105e-42\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.1344568342952866, 0.3653308466053202]\n",
"[0.10915659971634487, 0.22427499830129277]\n",
"QUALITY_R///2.568791232591621\n",
"QUALITY_S///4.009169413219291\n",
"fraction is:2.787214739259468e-63\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"[0.10915659971634487, 0.22427499830129277]\n",
"QUALITY_R///6.7992460647913004\n",
"QUALITY_S///4.009169413219291\n",
"fraction is:1.4841896082134563e+121\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.10915659971634487, 0.22427499830129277]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.08407806220569569, 0.12818921113809278]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///6.523059450394656\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:1.0124363727181492e-12\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09543024691867062, 0.2664137949789984]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///3.5336959304242086\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:1.5099397788047781e-142\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///6.7992460647913004\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.20818560652004875, 0.12067300182167984]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///4.155742614611451\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:1.563521542699531e-115\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.23447683652268692, 0.1018239230909951]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///3.9118799400332063\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:4.011275383264028e-126\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.2934749585333822, 0.062169086532014216]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///3.3334713677144223\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:3.0431079173388783e-151\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.10362793764241869, 0.12067300182167984]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///6.286856326564413\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:5.587228209571513e-23\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.02209267229128878, 0.15278955694625934]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///6.477584082555825\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:1.0725007577740964e-14\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///6.7992460647913004\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.09025138271659974, 0.17266703805843334]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///5.13264669730285\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:4.173583585239628e-73\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.06504123494009412, 0.12067300182167984]\n",
"[0.08407806220569569, 0.12067300182167984]\n",
"QUALITY_R///7.294736686536512\n",
"QUALITY_S///6.7992460647913004\n",
"fraction is:3.3028152856748344e+21\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.08407806220569569, 0.12067300182167984]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"[0.06504123494009412, 0.12067300182167984]\n",
"QUALITY_R///8.226503470815343\n",
"QUALITY_S///7.294736686536512\n",
"fraction is:2.9249421658262716e+40\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.06504123494009412, 0.12067300182167984]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984]]\n",
"\n",
"\n",
"\n",
"\n",
"[-0.05890020420984039, 0.11452687644028661]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///7.764864642490124\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:8.93882474589516e-21\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.02384745081145885, 0.26534842657491825]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///3.753501786900963\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:5.495473439620686e-195\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.23046837571820097, 0.1723256234350558]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///3.4749927820923094\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:4.410752798348624e-207\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.06786111739113854, 0.3138047300932379]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///3.1146974761039616\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:9.933136274749798e-223\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.13712284459316468, 0.12336333975791373]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///5.421572401977311\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:1.525427138209343e-122\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.050888508488927786, 0.14112347774349104]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///6.665855515970649\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:1.6669420483474848e-68\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.015537697200280576, 0.29958242168523797]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///3.333499134275596\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:3.158796667833557e-213\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.014644231791525658, 0.1998708372828939]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///4.989855636104901\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:2.717506253254559e-141\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.03980951262252362, 0.25708731834681176]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///3.843917332639004\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:4.641970460153984e-191\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.044681211240095504, -0.01949006063387379]\n",
"[0.014644231791525658, 0.12067300182167984]\n",
"QUALITY_R///20.51406956978361\n",
"QUALITY_S///8.226503470815343\n",
"fraction is:4.641970460153984e-191\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.014644231791525658, 0.12067300182167984]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.08099095433773093, -0.06736084682670491]\n",
"[0.044681211240095504, -0.01949006063387379]\n",
"QUALITY_R///9.492855006383643\n",
"QUALITY_S///20.51406956978361\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.12776503211020634, 0.14084012706574808]\n",
"[0.044681211240095504, -0.01949006063387379]\n",
"QUALITY_R///5.2588008077865425\n",
"QUALITY_S///20.51406956978361\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.19678484111473846, 0.03994901543334077]\n",
"[0.044681211240095504, -0.01949006063387379]\n",
"QUALITY_R///4.980107006866647\n",
"QUALITY_S///20.51406956978361\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.07864006750680749, 0.02591756026718172]\n",
"[0.044681211240095504, -0.01949006063387379]\n",
"QUALITY_R///12.077171245328087\n",
"QUALITY_S///20.51406956978361\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.11957137814294203, -0.0570810371701428]\n",
"[0.044681211240095504, -0.01949006063387379]\n",
"QUALITY_R///7.547318281794643\n",
"QUALITY_S///20.51406956978361\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.22338399817641724, -0.01949006063387379]\n",
"[0.044681211240095504, -0.01949006063387379]\n",
"QUALITY_R///4.459654210722729\n",
"QUALITY_S///20.51406956978361\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.044681211240095504, -0.023246704333206053]\n",
"[0.044681211240095504, -0.01949006063387379]\n",
"QUALITY_R///19.854327532289915\n",
"QUALITY_S///20.51406956978361\n",
"fraction is:2.227241774422459e-29\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.044681211240095504, 0.013835739519553851]\n",
"[0.044681211240095504, -0.01949006063387379]\n",
"QUALITY_R///21.37924612470135\n",
"QUALITY_S///20.51406956978361\n",
"fraction is:3.7509421596298177e+37\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.044681211240095504, -0.01949006063387379]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.06948470241658873, -0.06269193803779677]\n",
"[0.044681211240095504, 0.013835739519553851]\n",
"QUALITY_R///10.68532014374372\n",
"QUALITY_S///21.37924612470135\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"[0.044681211240095504, 0.013835739519553851]\n",
"QUALITY_R///62.399831256792126\n",
"QUALITY_S///21.37924612470135\n",
"fraction is:0.0\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[0.044681211240095504, 0.013835739519553851]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736]]\n",
"\n",
"\n",
"\n",
"\n",
"[-0.011713864801829309, 0.11810255090220423]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///8.425874553925528\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.011713864801829309, -0.07406182583386461]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///13.336453035972767\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.011713864801829309, 0.09807069306155294]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///10.124758738295197\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.29202490779623985, -0.0013390955699567123]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///3.4243294315747304\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08194406265655388, 0.03529454971925991]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///11.208019596710168\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.25940286159354436, 0.018285997833199043]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///3.8454649575517066\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.031587321985649584, 0.005281131001343833]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///31.224864725790795\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.11936074964647034, -0.06338332808962985]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///7.399406400463709\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.023047206866746897, 0.15096552645899347]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///6.548160301594488\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.031849117201150134, 0.010936541075390736]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///29.696031396585223\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08513075075758211, -0.11262750851278178]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///7.083083760402996\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"[-0.011713864801829309, 0.010936541075390736]\n",
"QUALITY_R///73.17597527473586\n",
"QUALITY_S///62.399831256792126\n",
"fraction is:0.0\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[-0.011713864801829309, 0.010936541075390736]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736], [-0.008194088124388477, 0.010936541075390736]]\n",
"\n",
"\n",
"\n",
"\n",
"[-0.12936795926651248, 0.18316222114103936]\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"QUALITY_R///4.459468181230381\n",
"QUALITY_S///73.17597527473586\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.01908149624376336]\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"QUALITY_R///48.15453222862583\n",
"QUALITY_S///73.17597527473586\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.03713290166387834, -0.030641872815206063]\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"QUALITY_R///20.771324877318044\n",
"QUALITY_S///73.17597527473586\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.11646923166420547]\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"QUALITY_R///8.564788189557158\n",
"QUALITY_S///73.17597527473586\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.05052584824560383, 0.010936541075390736]\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"QUALITY_R///19.343882247362636\n",
"QUALITY_S///73.17597527473586\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.011090983668617155, 0.010936541075390736]\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"QUALITY_R///64.20053180956194\n",
"QUALITY_S///73.17597527473586\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.08539112900210881, -0.06666981240707193]\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"QUALITY_R///9.230612838734404\n",
"QUALITY_S///73.17597527473586\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.016303759695857928, 0.024167537181351575]\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"QUALITY_R///34.302089329386156\n",
"QUALITY_S///73.17597527473586\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"[-0.008194088124388477, 0.010936541075390736]\n",
"QUALITY_R///93.63101398185279\n",
"QUALITY_S///73.17597527473586\n",
"fraction is:0.0\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[-0.008194088124388477, 0.010936541075390736]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736], [-0.008194088124388477, 0.010936541075390736], [-0.008194088124388477, 0.006850113740894805]]\n",
"\n",
"\n",
"\n",
"\n",
"[-0.011399556179374763, 0.30303790131203295]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///3.297584903049905\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.1822732651803589, 0.006850113740894805]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///5.482397867494422\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09432265876192233, 0.006504827635378341]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///10.576784778951131\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.02908517747323872, 0.006850113740894805]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///33.46612999111588\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, -0.12834485770816212]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///7.7756770283346945\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.06509719119887793, 0.11118798204603815]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///7.761409022394065\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///93.63101398185279\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.15000699251122115, -0.19354589624716972]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///4.083772499650724\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, -0.050400840409318054]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///19.583809951114663\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.023705911926606534, 0.006850113740894805]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///40.52556133293316\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08462274724689234, 0.13011540199658594]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///6.442765747524145\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///93.63101398185279\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.07471050786761843, 0.1207976153032017]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///7.040556113586401\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.1854877045354416, -0.004439852865701043]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///5.389649179279143\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.025508237282704554, 0.059384249625334604]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///15.472464057545093\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.1223762518422661, -0.09046229758060526]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///6.571077496472566\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.0185015051078176, -0.1646502558268101]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///6.035495167504051\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.16266117722489476, 0.07047157702535019]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///5.641090092164721\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"[-0.008194088124388477, 0.006850113740894805]\n",
"QUALITY_R///119.32555184465436\n",
"QUALITY_S///93.63101398185279\n",
"fraction is:0.0\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[-0.008194088124388477, 0.006850113740894805]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736], [-0.008194088124388477, 0.010936541075390736], [-0.008194088124388477, 0.006850113740894805], [-0.008194088124388477, -0.0017574430956154227]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.042047790435448665, -0.14653733989050072]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///6.559498620576597\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.05372233602386302, -0.02287394135014401]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///17.126435039409635\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.007876011512256318, 0.06858647454008754]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///14.484942733026424\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.04670268067525982, 0.06762752143720663]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///12.167447294208761\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.08016930895457283, -0.0017574430956154227]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///12.470605277175114\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.0056589678339006855, -0.13674884212864633]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///7.306422777706245\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.046807391613446915]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///21.04412242731636\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.027644295145699736, -0.0017574430956154227]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///36.100949873475955\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.02256897142509944, 0.0854046273852952]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///11.320369480354742\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.03132097674162722, -0.0017574430956154227]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///31.877342404988173\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.0364500562882233, 0.03214028013771028]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///20.577681585151062\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09130518050019104, -0.012629643517128563]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///10.84898405054724\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.06091638413251811, 0.07091796307023482]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///10.696463793404597\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.1240274871565443]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///8.045190112202988\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.055147509907314596, 0.021578236715206728]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///16.886524762883194\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.011898765504218981, 0.07240483620230714]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///13.628429872454712\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.0590741371520591, -0.10661622041753444]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///8.2042288994946\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.003331456950110419, -0.13215717615664643]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///7.564344603727579\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.027040609875576962, -0.0017574430956154227]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///36.903555228467575\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.15597808273567781, 0.04102971180748603]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///6.200234601146042\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, -0.12822079440912446]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///7.783169996516436\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.0788133490377372, -0.0402729351826797]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///11.29856714324494\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"[-0.008194088124388477, -0.0017574430956154227]\n",
"QUALITY_R///121.49515057410059\n",
"QUALITY_S///119.32555184465436\n",
"fraction is:1.6767781816851807e+94\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[-0.008194088124388477, -0.0017574430956154227]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736], [-0.008194088124388477, 0.010936541075390736], [-0.008194088124388477, 0.006850113740894805], [-0.008194088124388477, -0.0017574430956154227], [-0.008194088124388477, 0.0007763239043705266]]\n",
"\n",
"\n",
"\n",
"\n",
"[-0.14795053938287445, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.758922528963166\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.10343828024136163, 0.07956275783714456]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.662956682474698\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.03723698768416807, 0.18376945889040924]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///5.333215215241961\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.11383546292512614, -0.10621876559293013]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.422813071867453\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.052474826114194524]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///18.82858427242952\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.11435433762767498, -0.08364991029333733]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.057983494009738\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.014283575091754246, 0.1677392352325671]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///5.940137034257503\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.06832331476358193, -0.13672036925804754]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.542724151336616\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.014376280315093515, 0.14268156506357849]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.973306314699994\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.17363985074787336, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///5.758989088241623\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.07517364819207392, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///13.301824563185622\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.11805489126641053, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///8.470452756069944\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.020314658276668007, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///49.18963408140522\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.11170534067062494, -0.19382991564726532]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///4.469985544975077\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.06716338668541817, 0.26172941918870074]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///3.700831232669789\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.12763841168091772, 0.06094095982823734]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.07011964492319\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.029806613447858853, 0.041390316188136746]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///19.60561029248563\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.03538901830496552, 0.09144435186608688]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///10.19853357168351\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.06524336180938928, 0.02704000960521138]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///14.159337803610262\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.0664936870569563, 0.07338698090576357]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///10.097889116284927\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.268926723874551, -0.03486739141257241]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///3.6876195380391983\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///121.49515057410059\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.1915095865544344, -0.11832964441161006]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///4.442127399420042\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.13160156470024037, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.598561638306476\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.26444782482036416, 0.08138062955953504]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///3.614197805527763\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.050216630163841314, 0.02821909262720237]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///17.360412227216532\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.11321777106267696, 0.0978690631317069]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.682035619811943\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.0812501137888959, -0.05555833442896603]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///10.159585686852278\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.17992897257937723, 0.023515067507304203]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///5.510884673736562\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.0024519817361034653, -0.04146049981478953]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///24.077273491353605\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.024398612270376267, -0.1345596025806452]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.312415537276386\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.018869131778554853, -0.07773111645879754]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///12.501786906521234\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.021032122118865994, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///47.51396297464574\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.0331418670922219, -0.08415985517269277]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///11.055790007062203\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.12517933443810303, -0.05018166251172427]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.41492480044364\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.02472584741012288, 0.050747726495446406]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///17.71452286519213\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09190437460555352, 0.0020693186777497718]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///10.878117777943324\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.07841476964943292, 0.09789730244560828]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.972555841450472\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.11801137121058122, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///8.473576341737918\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.05031299354994678, 0.21293824287142232]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///4.570352761479938\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.007932184991696746, -0.2120085824310491]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///4.713492264786977\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.04690194961942204, 0.14276959749252693]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.65441152781602\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///121.49515057410059\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08841711194995094, -0.037089476341283206]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///10.429567348708794\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.1324527276852778, 0.012616676490759352]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.515843412358962\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.0815774496660775, 0.01721670054167612]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///11.994085433806527\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.14134027202388783, -0.0697631572261894]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.344384518087169\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.04272083632472981, -0.10090904729881518]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///9.125779746713212\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.0953557174106987, 0.042159599740377016]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///9.591407382569374\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.05659297835792017, 0.12492069230142752]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.291709060688634\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.16863762059062565]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///5.922887151018117\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.027177908009648494, 0.02786035055274508]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///25.69312505986133\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.18844995838978362, -0.0351931918900825]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///5.216267092921679\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.060472506535255086, 0.020527473357691048]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///15.6588675603593\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.23627197956864468, -0.12610281250172867]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///3.733881931083372\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.035645026157059403, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///28.047753727749907\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.1055796148041711, -0.11422443066123349]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.429003883193084\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09464384497995422, 0.04449544563744165]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///9.561915391248979\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09751989466767265, 0.08862070191985483]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.588887757223709\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.0686216341454121, 0.13807339132981086]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.485691226035879\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08321262410264353, -0.027751666402189568]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///11.40013296094169\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.19506842697937, 0.21776627228164952]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///3.4204511383755705\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.06137099104039101, 0.011845186270069705]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///15.999064189007917\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.004730882335483149, -0.20512772676326163]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///4.873715359765033\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.04655704447645457]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///21.153890044328914\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.15334596180794535, -0.013983791522640796]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.494255415011941\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.03338130304551175, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///29.948791445272388\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.0731874131611672, -0.13938058497011982]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.352139680953202\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.11335187047551384, -0.061773446270343584]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.746445777396703\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08773120644046421, -0.07612414022596105]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///8.60929279409702\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.074717942628296, 0.021132229662650655]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///12.878492744708588\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09269223488922995, -0.022816205267215083]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///10.475696465308774\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.05631057687288851, -0.11941357365587481]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///7.5743486794873744\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.05160135864704882, -0.07267444475508755]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///11.21948343397421\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.027294870802228713, -0.026332555840013823]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///26.366842771271116\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.012487418369021407, 0.08518694550766108]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///11.614761199597938\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.03733882068748175]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///26.159278361054863\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.01310807650778521, 0.011621392995422261]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///57.08431679704058\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.04258971469619409, -0.052526635932678326]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///14.78776915770206\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, -0.07123621497262211]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///13.945846628164688\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.018871325116679123, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///52.94566804068244\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.05131927502274826, 0.0407479181291588]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///15.260399540990825\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, -0.04407116779370289]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///22.30825611929874\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.013152603753673484, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///75.89847759546286\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.14480977983511842, -0.10434029096544341]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///5.602722842544395\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.018738032138237166, 0.15385569437953814]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.451923282250338\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.14723528141612255, -0.07074354145882131]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.121863965834267\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.18078342051700896, -0.07469312705786087]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///5.112317542743056\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.07670560687468386, -0.04509095097339893]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///11.238832893824414\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.008194088124388477, 0.14364281785006014]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///6.95041294578718\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.1902765057514506, 0.0007763239043705266]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///5.255465844538102\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.1110633368404402, 0.017337696721712596]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///8.896128048441696\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"[-0.008194088124388477, 0.0007763239043705266]\n",
"QUALITY_R///146.14053379236734\n",
"QUALITY_S///121.49515057410059\n",
"fraction is:0.0\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[-0.008194088124388477, 0.0007763239043705266]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736], [-0.008194088124388477, 0.010936541075390736], [-0.008194088124388477, 0.006850113740894805], [-0.008194088124388477, -0.0017574430956154227], [-0.008194088124388477, 0.0007763239043705266], [-0.002801673680896128, -0.006242880611049365]]\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"QUALITY_R///146.14053379236734\n",
"QUALITY_S///146.14053379236734\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.06084682991712597, -0.058508479568561436]\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"QUALITY_R///11.846496312567542\n",
"QUALITY_S///146.14053379236734\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.09132363228633734, -0.006242880611049365]\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"QUALITY_R///10.924572202990264\n",
"QUALITY_S///146.14053379236734\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.06404904808878982, -0.006242880611049365]\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"QUALITY_R///15.539393328275734\n",
"QUALITY_S///146.14053379236734\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, 0.05592593526410328]\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"QUALITY_R///17.858396831181516\n",
"QUALITY_S///146.14053379236734\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.24929953243481145, 0.01321267300593378]\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"QUALITY_R///4.0056171990251\n",
"QUALITY_S///146.14053379236734\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, 0.02220394387549844]\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"QUALITY_R///44.682748039786844\n",
"QUALITY_S///146.14053379236734\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"[-0.002801673680896128, -0.006242880611049365]\n",
"QUALITY_R///174.3159269702019\n",
"QUALITY_S///146.14053379236734\n",
"fraction is:0.0\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[-0.002801673680896128, -0.006242880611049365]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736], [-0.008194088124388477, 0.010936541075390736], [-0.008194088124388477, 0.006850113740894805], [-0.008194088124388477, -0.0017574430956154227], [-0.008194088124388477, 0.0007763239043705266], [-0.002801673680896128, -0.006242880611049365], [-0.002801673680896128, 0.005006043485897255]]\n",
"\n",
"\n",
"\n",
"\n",
"[0.13303969892686954, 0.16985164469555172]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///4.634940427256006\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.021569353719816043]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///45.975850344211274\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.1328823014202229, 0.02160187280768539]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///7.42794734618411\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.07025973248835767]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///14.221601275039697\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.026250621859298478, 0.07297265358079415]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///12.894798428304101\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.08579661244769654, -0.15935549732070461]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///5.525348200503622\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.07103208682010966, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///14.043312509297694\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.021061316773971567]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///47.06581052076682\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.1882931896456296, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///5.308990569598673\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09029855047782766, 0.2677433912160787]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///3.5390669558093375\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.032636889407664835, 0.015003153954759433]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///27.83948421288157\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.08279025707961493, 0.04117868528081721]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///10.814817830107453\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.04091664791376777, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///24.259038901415938\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.16700552009465394]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///5.9869836226801585\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.019813061843788886, -0.05977619918050334]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///15.879515825977291\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09016166163363792, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///11.074132135501054\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.008770009188252374, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///99.02760321290793\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.19088472361912123, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///5.236963285668208\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.04209758585253214]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///23.701899588540748\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08519893616026468, -0.054820550097265094]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///9.8704845835606\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.04580726608779064, 0.16394174444880852]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///5.8747145577955076\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.04541357693805598, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///21.887270288012292\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.0533711222325799, -0.14457874587227115]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///6.4886532486427635\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08554690306497022, 0.05886541132429341]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///9.629903954042518\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.08001963409946827, 0.14499164404110865]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///6.038387667721167\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.004614086595229851, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///146.88379415688385\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.08785468856361434, -0.067254051690114]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///9.038195430212069\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.0699778490286649, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///14.253810073870733\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.22809922621473036, 0.010425775318899443]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///4.379484651027365\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.036420559648095006, -0.007932659699335718]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///26.828031865440074\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.06672835436802114]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///14.97294141780395\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.161502718781907, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///6.188873829686658\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.1871284120265314, 0.07652204679632164]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///4.9463348763140305\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.05797425379109108, 0.05060608690541373]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///12.994697083725754\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.13130221396857433, 0.10578197225894877]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///5.9307665427402165\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.01229978132795172, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///75.30404607254859\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, 0.10674233298741911]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///9.365129049589033\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, 0.11425308361710003]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///8.74986869772059\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.2897873814035187, 0.18106596690548563]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///2.926509654305378\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.21493724593275995, 0.11933036484870338]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///4.067671154508867\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.04418086609678231, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///22.490319899572608\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.07659650435931256]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///13.046701527343796\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.025438931309956486, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///38.57010699594801\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, 0.0865613591641419]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///11.546452494568735\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.13165377743666734, 0.017502192202420393]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///7.529436588956455\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.10958496111263134, 0.07093470830725629]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///7.660508572698239\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09724410654735005, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///10.269800526719333\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.029354521651254274, -0.030329998998947998]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///23.69164903159265\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.09821923892255734, 0.21114094407498873]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///4.294277838924823\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.02774818332436426, -0.11008106474141083]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///8.8086745394119\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.06279296673834153, -0.02277270617886433]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///14.971212702179368\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.06195786924786355, 0.1614688499535191]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///5.782089006216348\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.07838771663686733]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///12.74896037647024\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.09216717983875644, -0.03602488647649994]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///10.105351001128618\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.018266728949483217, -0.09753493175038773]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///10.077524120438932\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.05133782078950606, 0.07470963312074189]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///11.031655323731185\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.09598891715431737, 0.11616156170904088]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///6.6361543703265715\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.034311494538581774, -0.05206214188539053]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///16.038032857142042\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.030563134507898385, 0.09674800840555961]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///9.856028773280872\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.056872656100511294, -0.05454880064596709]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///12.689710928953815\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08891104216646156, -0.05402160124527654]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///9.612049583362973\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.142592254821955, 0.023546360510364524]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///6.919299851451911\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.015648533330288903, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///60.865155767176645\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.1322604003826576, 0.20602194289488462]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///4.08459878251931\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.11997301514414034, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///8.327960976821002\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.08697432296047357, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///11.478648237775928\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.05502049664899231, 0.04885364909213323]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///13.59075295559015\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.15125697130711419, 0.13599163324824357]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///4.91637119189186\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.035740680986408736, -0.018411150833640116]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///24.87310743033916\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, -0.10890545057697408]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///9.179239899606342\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, 0.1536459460721871]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///6.5073880341967\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.15554562559631036, 0.06982844727878625]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///5.865082091393143\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///174.3159269702019\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.06435932238058892, 0.1193612310077115]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///7.374257129041377\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"[-0.002801673680896128, 0.005006043485897255]\n",
"QUALITY_R///176.34346045042264\n",
"QUALITY_S///174.3159269702019\n",
"fraction is:1.1341231968450698e+88\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[-0.002801673680896128, 0.005006043485897255]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736], [-0.008194088124388477, 0.010936541075390736], [-0.008194088124388477, 0.006850113740894805], [-0.008194088124388477, -0.0017574430956154227], [-0.008194088124388477, 0.0007763239043705266], [-0.002801673680896128, -0.006242880611049365], [-0.002801673680896128, 0.005006043485897255], [-0.00266401104853638, 0.005006043485897255]]\n",
"\n",
"\n",
"\n",
"\n",
"[-0.007714380487781763, 0.07217007484059726]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///13.777671441202555\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.05872820908576379, -0.16077745417792857]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///5.842222661413196\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.11899693160636542, 0.08581599377730825]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///6.816036465460626\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.1467222094784863, -0.08203357671802505]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///5.948913190328382\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.003954072830836718, 0.01122677870965021]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///84.01425930575937\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.04825149346319596, 0.005006043485897255]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///20.614100502179173\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.15523783559109092, 0.005006043485897255]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///6.438381779656043\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///176.34346045042264\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:1.0\n",
"NEW_S\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.00266401104853638, 0.06299407399386756]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///15.860332851252176\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[0.07205016459797473, -0.05788538920477948]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///10.819859648319746\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"t = 0.01\n",
"\n",
"\n",
"\n",
"\n",
"[-0.00266401104853638, 0.003819308161653955]\n",
"[-0.00266401104853638, 0.005006043485897255]\n",
"QUALITY_R///214.74823481299555\n",
"QUALITY_S///176.34346045042264\n",
"fraction is:0.0\n",
"NEW_S\n",
"t = 0.01\n",
"new Best****:[-0.00266401104853638, 0.005006043485897255]\n",
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736], [-0.008194088124388477, 0.010936541075390736], [-0.008194088124388477, 0.006850113740894805], [-0.008194088124388477, -0.0017574430956154227], [-0.008194088124388477, 0.0007763239043705266], [-0.002801673680896128, -0.006242880611049365], [-0.002801673680896128, 0.005006043485897255], [-0.00266401104853638, 0.005006043485897255], [-0.00266401104853638, 0.003819308161653955]]\n",
"the Best Quality obtained was:214.74823481299555\n"
]
},
{
"data": {
"text/plain": [
"[-0.00266401104853638, 0.003819308161653955]"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"simulatedAnnealing(S = [9.00,4.00],y = 0,high = 10,low = -8,t =0.01,p = 0.8)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[[9.0, 4.0], [8.798005481733506, 3.985375451831662], [8.810343898188737, 3.9068912786374947], [8.78415849877267, 3.9068912786374947], [8.743490542744514, 3.9563170094022984], [8.649703644048506, 4.0268354620179005], [8.649703644048506, 3.8654966044938543], [8.444409455242399, 3.7889186246540234], [8.394678551978993, 3.695246913345679], [8.394678551978993, 3.6055545369054642], [8.394678551978993, 3.593071717522474], [8.34926756476514, 3.613757374515311], [8.214601764371702, 3.3820941905609776], [8.245033871721281, 3.294192945254893], [8.094712332268344, 3.294192945254893], [7.992952571352107, 3.3657642831718864], [7.993420349098464, 3.342113190341529], [7.993420349098464, 3.298585769988641], [7.874277977486796, 3.135214519287545], [7.865452379110922, 3.135214519287545], [7.822666959862244, 3.1362280950164254], [7.822666959862244, 2.9894971527041436], [7.644143930786412, 2.9926759841564436], [7.644143930786412, 2.8696219654048143], [7.564712928389627, 2.8871911937716375], [7.6225514069127644, 2.714026570630022], [7.6225514069127644, 2.573900562137037], [7.358616787499413, 2.692991710800732], [7.313121311270736, 2.7074851067988197], [7.317981245534683, 2.660123635450271], [7.263201234584234, 2.7899374187169803], [7.160999326737772, 2.7450405679998306], [7.076019889301692, 2.945688245194562], [7.097422516726427, 2.8825365946612185], [6.906799924218089, 2.94841564582606], [6.929207412876897, 2.842445492473061], [6.898931668140743, 2.896250150256778], [6.916577784620183, 2.8268051472902833], [6.774279202019106, 2.8312279923147847], [6.726121536395429, 2.907739221056047], [6.582157909197203, 2.9723790376768298], [6.5772461339607835, 2.9723790376768298], [6.975347902158536, 1.6080588518313543], [6.8974899340902045, 1.3918212125683775], [6.847335775175817, 1.249530943314293], [6.8143063803385315, 1.249530943314293], [6.65420301532439, 1.5551797328804304], [6.6220901132019385, 1.6180761627154105], [6.664919154684771, 1.3441323280750397], [6.590909148571175, 1.286637655782278], [6.5684714070038925, 1.2789983373140423], [6.448004327673894, 1.0702108373063082], [6.40878618548298, 0.9665456821843998], [6.232939664705916, 1.1877796145229156], [6.126346536628695, 1.1755696015184598], [6.094089205274584, 1.0493617194342142], [6.012796733742833, 1.1686491919466784], [5.871496199834028, 1.2032969431923068], [5.84553603360577, 1.2647578597179359], [5.84553603360577, 1.1711059942417978], [5.735261872807097, 1.579696342409531], [5.589363448707716, 1.534318484323652], [5.556684997676078, 1.4555445575982942], [5.577638545187083, 1.1737376102588797], [5.463182056395056, 1.0543264736238305], [5.433383075498511, 1.048691581429359], [5.311961715456606, 0.8000328891220071], [5.167915636087542, 1.046535273760655], [5.12444361088066, 1.147186338625099], [4.995801760317439, 1.2063426100293313], [4.960213819685214, 1.2176482570289267], [4.861715721857353, 1.2479208335476202], [4.6879882977610565, 1.353593336000816], [4.62705144233582, 1.5023560614460572], [4.577238489241105, 1.5434739218706615], [4.4046526689095815, 1.6599554977043947], [4.370123259644846, 1.7230902086914726], [4.370123259644846, 1.6690689526277949], [4.336526703016509, 1.546645680857334], [4.307442657698301, 1.546645680857334], [4.307442657698301, 1.4518358163411402], [4.262712558629769, 1.5117690028768869], [4.111426682385623, 1.6232958583170172], [4.095452900292015, 1.6232958583170172], [3.911489314171372, 1.6232958583170172], [3.7859832060426615, 1.6616657019742522], [3.676557406018872, 1.6091467342967236], [3.3899069817625116, 1.608163333421736], [3.166366031190185, 1.91492483850007], [3.0099298050409784, 2.0671909296864706], [2.8600040660704913, 2.2099242487259394], [2.9339387405908743, 2.1095355204481616], [2.8935738539028915, 1.9029913634846989], [2.8487512993816595, 1.9029913634846989], [2.6694894377324707, 1.8938565638262421], [2.6571920174201558, 1.6754811461002996], [2.5368493644507777, 1.6928208138349157], [2.3530806929476085, 1.8175283017266768], [2.47448119314521, 1.6278709930316992], [2.4461842227722874, 1.6278709930316992], [2.4461842227722874, 1.569941783979457], [2.3749469510172414, 1.569941783979457], [2.3749469510172414, 1.5409946445880796], [2.365426716397192, 1.4985703164817328], [2.314171611169998, 1.5132111947685962], [2.223756031026309, 1.5132111947685962], [2.0130186558164582, 1.617944361558398], [2.0441691334891883, 1.5240712928013251], [1.8569145154395372, 1.7040403531269812], [1.6961086598792476, 1.7266248474441412], [1.670512216835277, 1.7266248474441412], [1.5261301902892137, 1.6392527910143146], [1.5511429133094368, 1.4701669030515734], [1.5126840115798776, 1.4721727949332508], [1.5007055905635716, 1.4794803171364024], [1.5233536973431385, 1.383328771150882], [1.4763761745238801, 1.3675235953847287], [1.350272672727706, 1.4237753150167967], [1.350272672727706, 1.2525190805149855], [1.4368558935757398, 1.1028759808554278], [1.1817252256305033, 1.0747187293525695], [1.165257561233246, 1.0747187293525695], [0.9373773761515032, 1.1396859327491053], [0.9373773761515032, 1.0715433735204483], [0.7563784954846597, 1.0738989927860294], [0.6856474067998508, 1.0942235215499974], [0.7817237419198304, 0.9813735760327346], [0.8344356275316307, 0.8666741724661906], [0.9787585866169337, 0.6969838995510642], [0.8531717539137342, 0.6969838995510642], [0.8531717539137342, 0.695893256167055], [0.8348979357959858, 0.695893256167055], [0.745170404383672, 0.7882250096151733], [0.745170404383672, 0.6757426935814994], [0.5951027927829815, 0.6604290796522768], [0.5638716189943292, 0.6604290796522768], [0.4846641705367689, 0.6604290796522768], [0.545646738601485, 0.5514671119847743], [0.4447598085936159, 0.5367028045746085], [0.5401908374547584, 0.33658185547746755], [0.4452598405965462, 0.33658185547746755], [0.18440605920729763, 0.446874325605652], [0.09750399145350819, 0.46959496580926974], [0.15510753866149649, 0.37352634745786467], [0.11314881192716021, 0.3155115108922473], [0.10915659971634487, 0.22427499830129277], [0.08407806220569569, 0.12067300182167984], [0.06504123494009412, 0.12067300182167984], [0.014644231791525658, 0.12067300182167984], [0.044681211240095504, -0.01949006063387379], [0.044681211240095504, 0.013835739519553851], [-0.011713864801829309, 0.010936541075390736], [-0.008194088124388477, 0.010936541075390736], [-0.008194088124388477, 0.006850113740894805], [-0.008194088124388477, -0.0017574430956154227], [-0.008194088124388477, 0.0007763239043705266], [-0.002801673680896128, -0.006242880611049365], [-0.002801673680896128, 0.005006043485897255], [-0.00266401104853638, 0.005006043485897255], [-0.00266401104853638, 0.003819308161653955]]\n"
]
}
],
"source": [
"print(route)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"h1 = [i[0] for i in route]\n",
"h2 = [i[1] for i in route]\n",
"plt.plot(h1,h2)\n",
"plt.show()"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"h3 = [func(s) for s in route]\n",
"fig = plt.figure()\n",
"ax = plt.axes(projection='3d')\n",
"ax.scatter3D(h1, h2, h3, c=h3, cmap='Greens');\n",
"plt.show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.2"
}
},
"nbformat": 4,
"nbformat_minor": 4
}