Last active
May 7, 2016 14:16
-
-
Save adamlwatson/21cd6f67fba062301a672f7cd15c86fa to your computer and use it in GitHub Desktop.
Calculate percentage of change over time to linearly ramp a value to 0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def linearRampToZeroOverTime( value, seconds ) | |
value = value.to_f | |
update_ticks = 60 | |
step_delta = value / seconds.to_f | |
tick_delta = step_delta / update_ticks.to_f | |
( 1..seconds ).each do | sec | | |
( 1..update_ticks ).each do | tick | | |
last_value = value | |
value = value - tick_delta | |
percentage_of_change = value / last_value | |
set_value = last_value * percentage_of_change | |
puts "percentage of change this cycle: #{ percentage_of_change } for a new value of #{ set_value }" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example output:
2.1.2 :069 > linearRampToZeroOverTime( 1, 10 )
percentage of change this cycle: 0.9983333333333333 for a new value of 0.9983333333333333
percentage of change this cycle: 0.998330550918197 for a new value of 0.9966666666666666
percentage of change this cycle: 0.9983277591973244 for a new value of 0.9949999999999999
percentage of change this cycle: 0.998324958123953 for a new value of 0.9933333333333332
percentage of change this cycle: 0.9983221476510067 for a new value of 0.9916666666666665
percentage of change this cycle: 0.9983193277310924 for a new value of 0.9899999999999998
percentage of change this cycle: 0.9983164983164983 for a new value of 0.9883333333333331
percentage of change this cycle: 0.9983136593591905 for a new value of 0.9866666666666664
percentage of change this cycle: 0.9983108108108107 for a new value of 0.9849999999999997
percentage of change this cycle: 0.9983079526226734 for a new value of 0.983333333333333
percentage of change this cycle: 0.9983050847457626 for a new value of 0.9816666666666662
percentage of change this cycle: 0.99830220713073 for a new value of 0.9799999999999995
percentage of change this cycle: 0.9982993197278911 for a new value of 0.9783333333333328
percentage of change this cycle: 0.9982964224872232 for a new value of 0.9766666666666661
percentage of change this cycle: 0.9982935153583617 for a new value of 0.9749999999999994
percentage of change this cycle: 0.9982905982905983 for a new value of 0.9733333333333327
percentage of change this cycle: 0.9982876712328766 for a new value of 0.971666666666666
percentage of change this cycle: 0.9982847341337907 for a new value of 0.9699999999999993
percentage of change this cycle: 0.9982817869415808 for a new value of 0.9683333333333326
percentage of change this cycle: 0.9982788296041307 for a new value of 0.9666666666666659
percentage of change this cycle: 0.9982758620689655 for a new value of 0.9649999999999992
percentage of change this cycle: 0.9982728842832469 for a new value of 0.9633333333333325
percentage of change this cycle: 0.9982698961937716 for a new value of 0.9616666666666658
percentage of change this cycle: 0.998266897746967 for a new value of 0.9599999999999991
percentage of change this cycle: 0.9982638888888888 for a new value of 0.9583333333333324
percentage of change this cycle: 0.9982608695652173 for a new value of 0.9566666666666657
percentage of change this cycle: 0.9982578397212543 for a new value of 0.954999999999999
percentage of change this cycle: 0.9982547993019196 for a new value of 0.9533333333333323
percentage of change this cycle: 0.9982517482517482 for a new value of 0.9516666666666656
percentage of change this cycle: 0.9982486865148861 for a new value of 0.9499999999999988
percentage of change this cycle: 0.9982456140350877 for a new value of 0.9483333333333321
percentage of change this cycle: 0.9982425307557118 for a new value of 0.9466666666666654
percentage of change this cycle: 0.9982394366197183 for a new value of 0.9449999999999987
percentage of change this cycle: 0.9982363315696648 for a new value of 0.943333333333332
percentage of change this cycle: 0.9982332155477032 for a new value of 0.9416666666666653
percentage of change this cycle: 0.9982300884955752 for a new value of 0.9399999999999986
percentage of change this cycle: 0.9982269503546098 for a new value of 0.9383333333333319
percentage of change this cycle: 0.9982238010657193 for a new value of 0.9366666666666652
percentage of change this cycle: 0.998220640569395 for a new value of 0.9349999999999985
percentage of change this cycle: 0.9982174688057041 for a new value of 0.9333333333333318
percentage of change this cycle: 0.9982142857142857 for a new value of 0.9316666666666651
percentage of change this cycle: 0.998211091234347 for a new value of 0.9299999999999984
percentage of change this cycle: 0.9982078853046594 for a new value of 0.9283333333333317
percentage of change this cycle: 0.9982046678635547 for a new value of 0.926666666666665
percentage of change this cycle: 0.9982014388489208 for a new value of 0.9249999999999983
percentage of change this cycle: 0.9981981981981981 for a new value of 0.9233333333333316
percentage of change this cycle: 0.9981949458483754 for a new value of 0.9216666666666649
percentage of change this cycle: 0.9981916817359855 for a new value of 0.9199999999999982
percentage of change this cycle: 0.9981884057971014 for a new value of 0.9183333333333314
percentage of change this cycle: 0.9981851179673321 for a new value of 0.9166666666666647
percentage of change this cycle: 0.9981818181818182 for a new value of 0.914999999999998
percentage of change this cycle: 0.9981785063752276 for a new value of 0.9133333333333313
percentage of change this cycle: 0.9981751824817517 for a new value of 0.9116666666666646
percentage of change this cycle: 0.9981718464351005 for a new value of 0.9099999999999979
percentage of change this cycle: 0.9981684981684982 for a new value of 0.9083333333333312
percentage of change this cycle: 0.9981651376146788 for a new value of 0.9066666666666645
percentage of change this cycle: 0.9981617647058824 for a new value of 0.9049999999999978
percentage of change this cycle: 0.998158379373849 for a new value of 0.9033333333333311
percentage of change this cycle: 0.9981549815498154 for a new value of 0.9016666666666644
percentage of change this cycle: 0.9981515711645101 for a new value of 0.8999999999999977
percentage of change this cycle: 0.9981481481481481 for a new value of 0.898333333333331
percentage of change this cycle: 0.9981447124304267 for a new value of 0.8966666666666643
percentage of change this cycle: 0.9981412639405204 for a new value of 0.8949999999999976
percentage of change this cycle: 0.9981378026070763 for a new value of 0.8933333333333309
percentage of change this cycle: 0.9981343283582089 for a new value of 0.8916666666666642
percentage of change this cycle: 0.9981308411214953 for a new value of 0.8899999999999975
percentage of change this cycle: 0.99812734082397 for a new value of 0.8883333333333308
percentage of change this cycle: 0.99812382739212 for a new value of 0.886666666666664
percentage of change this cycle: 0.9981203007518796 for a new value of 0.8849999999999973
percentage of change this cycle: 0.9981167608286252 for a new value of 0.8833333333333306
percentage of change this cycle: 0.9981132075471698 for a new value of 0.8816666666666639
percentage of change this cycle: 0.998109640831758 for a new value of 0.8799999999999972
percentage of change this cycle: 0.9981060606060606 for a new value of 0.8783333333333305
percentage of change this cycle: 0.9981024667931688 for a new value of 0.8766666666666638
percentage of change this cycle: 0.9980988593155893 for a new value of 0.8749999999999971
percentage of change this cycle: 0.998095238095238 for a new value of 0.8733333333333304
percentage of change this cycle: 0.998091603053435 for a new value of 0.8716666666666637
percentage of change this cycle: 0.9980879541108986 for a new value of 0.869999999999997
percentage of change this cycle: 0.9980842911877394 for a new value of 0.8683333333333303
percentage of change this cycle: 0.9980806142034548 for a new value of 0.8666666666666636
percentage of change this cycle: 0.998076923076923 for a new value of 0.8649999999999969
percentage of change this cycle: 0.9980732177263969 for a new value of 0.8633333333333302
percentage of change this cycle: 0.9980694980694981 for a new value of 0.8616666666666635
percentage of change this cycle: 0.9980657640232108 for a new value of 0.8599999999999968
percentage of change this cycle: 0.998062015503876 for a new value of 0.8583333333333301
percentage of change this cycle: 0.9980582524271844 for a new value of 0.8566666666666634
percentage of change this cycle: 0.9980544747081711 for a new value of 0.8549999999999967
percentage of change this cycle: 0.9980506822612085 for a new value of 0.85333333333333
percentage of change this cycle: 0.998046875 for a new value of 0.8516666666666632
percentage of change this cycle: 0.9980430528375733 for a new value of 0.8499999999999965
percentage of change this cycle: 0.9980392156862744 for a new value of 0.8483333333333298
percentage of change this cycle: 0.9980353634577602 for a new value of 0.8466666666666631
percentage of change this cycle: 0.998031496062992 for a new value of 0.8449999999999964
percentage of change this cycle: 0.9980276134122288 for a new value of 0.8433333333333297
percentage of change this cycle: 0.9980237154150197 for a new value of 0.841666666666663
percentage of change this cycle: 0.998019801980198 for a new value of 0.8399999999999963
percentage of change this cycle: 0.9980158730158729 for a new value of 0.8383333333333296
percentage of change this cycle: 0.9980119284294234 for a new value of 0.8366666666666629
percentage of change this cycle: 0.9980079681274899 for a new value of 0.8349999999999962
percentage of change this cycle: 0.998003992015968 for a new value of 0.8333333333333295
percentage of change this cycle: 0.998 for a new value of 0.8316666666666628
percentage of change this cycle: 0.9979959919839679 for a new value of 0.8299999999999961
percentage of change this cycle: 0.9979919678714859 for a new value of 0.8283333333333294
percentage of change this cycle: 0.9979879275653923 for a new value of 0.8266666666666627
percentage of change this cycle: 0.9979838709677419 for a new value of 0.824999999999996
percentage of change this cycle: 0.997979797979798 for a new value of 0.8233333333333293
percentage of change this cycle: 0.9979757085020242 for a new value of 0.8216666666666625
percentage of change this cycle: 0.997971602434077 for a new value of 0.8199999999999958
percentage of change this cycle: 0.9979674796747967 for a new value of 0.8183333333333291
percentage of change this cycle: 0.9979633401221996 for a new value of 0.8166666666666624
percentage of change this cycle: 0.9979591836734694 for a new value of 0.8149999999999957
percentage of change this cycle: 0.9979550102249488 for a new value of 0.813333333333329
percentage of change this cycle: 0.9979508196721311 for a new value of 0.8116666666666623
percentage of change this cycle: 0.9979466119096508 for a new value of 0.8099999999999956
percentage of change this cycle: 0.9979423868312757 for a new value of 0.8083333333333289
percentage of change this cycle: 0.9979381443298968 for a new value of 0.8066666666666622
percentage of change this cycle: 0.9979338842975206 for a new value of 0.8049999999999955
percentage of change this cycle: 0.9979296066252588 for a new value of 0.8033333333333288
percentage of change this cycle: 0.9979253112033194 for a new value of 0.8016666666666621
percentage of change this cycle: 0.9979209979209979 for a new value of 0.7999999999999954
percentage of change this cycle: 0.9979166666666666 for a new value of 0.7983333333333287
percentage of change this cycle: 0.9979123173277661 for a new value of 0.796666666666662
percentage of change this cycle: 0.9979079497907949 for a new value of 0.7949999999999953
percentage of change this cycle: 0.9979035639412998 for a new value of 0.7933333333333286
percentage of change this cycle: 0.9978991596638654 for a new value of 0.7916666666666619
percentage of change this cycle: 0.9978947368421052 for a new value of 0.7899999999999952
percentage of change this cycle: 0.9978902953586497 for a new value of 0.7883333333333284
percentage of change this cycle: 0.9978858350951374 for a new value of 0.7866666666666617
percentage of change this cycle: 0.9978813559322033 for a new value of 0.784999999999995
percentage of change this cycle: 0.9978768577494691 for a new value of 0.7833333333333283
percentage of change this cycle: 0.9978723404255319 for a new value of 0.7816666666666616
percentage of change this cycle: 0.997867803837953 for a new value of 0.7799999999999949
percentage of change this cycle: 0.9978632478632478 for a new value of 0.7783333333333282
percentage of change this cycle: 0.9978586723768736 for a new value of 0.7766666666666615
percentage of change this cycle: 0.9978540772532188 for a new value of 0.7749999999999948
percentage of change this cycle: 0.9978494623655914 for a new value of 0.7733333333333281
percentage of change this cycle: 0.9978448275862069 for a new value of 0.7716666666666614
percentage of change this cycle: 0.9978401727861771 for a new value of 0.7699999999999947
percentage of change this cycle: 0.9978354978354977 for a new value of 0.768333333333328
percentage of change this cycle: 0.9978308026030368 for a new value of 0.7666666666666613
percentage of change this cycle: 0.9978260869565216 for a new value of 0.7649999999999946
percentage of change this cycle: 0.9978213507625272 for a new value of 0.7633333333333279
percentage of change this cycle: 0.9978165938864628 for a new value of 0.7616666666666612
percentage of change this cycle: 0.9978118161925601 for a new value of 0.7599999999999945
percentage of change this cycle: 0.9978070175438596 for a new value of 0.7583333333333278
percentage of change this cycle: 0.9978021978021977 for a new value of 0.756666666666661
percentage of change this cycle: 0.9977973568281938 for a new value of 0.7549999999999943
percentage of change this cycle: 0.9977924944812361 for a new value of 0.7533333333333276
percentage of change this cycle: 0.997787610619469 for a new value of 0.7516666666666609
percentage of change this cycle: 0.9977827050997782 for a new value of 0.7499999999999942
percentage of change this cycle: 0.9977777777777778 for a new value of 0.7483333333333275
percentage of change this cycle: 0.997772828507795 for a new value of 0.7466666666666608
percentage of change this cycle: 0.9977678571428571 for a new value of 0.7449999999999941
percentage of change this cycle: 0.9977628635346756 for a new value of 0.7433333333333274
percentage of change this cycle: 0.9977578475336322 for a new value of 0.7416666666666607
percentage of change this cycle: 0.997752808988764 for a new value of 0.739999999999994
percentage of change this cycle: 0.9977477477477477 for a new value of 0.7383333333333273
percentage of change this cycle: 0.9977426636568848 for a new value of 0.7366666666666606
percentage of change this cycle: 0.9977375565610859 for a new value of 0.7349999999999939
percentage of change this cycle: 0.9977324263038548 for a new value of 0.7333333333333272
percentage of change this cycle: 0.9977272727272727 for a new value of 0.7316666666666605
percentage of change this cycle: 0.9977220956719817 for a new value of 0.7299999999999938
percentage of change this cycle: 0.9977168949771689 for a new value of 0.7283333333333271
percentage of change this cycle: 0.9977116704805491 for a new value of 0.7266666666666604
percentage of change this cycle: 0.9977064220183486 for a new value of 0.7249999999999936
percentage of change this cycle: 0.9977011494252873 for a new value of 0.7233333333333269
percentage of change this cycle: 0.9976958525345622 for a new value of 0.7216666666666602
percentage of change this cycle: 0.997690531177829 for a new value of 0.7199999999999935
percentage of change this cycle: 0.9976851851851851 for a new value of 0.7183333333333268
percentage of change this cycle: 0.9976798143851507 for a new value of 0.7166666666666601
percentage of change this cycle: 0.9976744186046511 for a new value of 0.7149999999999934
percentage of change this cycle: 0.9976689976689976 for a new value of 0.7133333333333267
percentage of change this cycle: 0.9976635514018691 for a new value of 0.71166666666666
percentage of change this cycle: 0.9976580796252926 for a new value of 0.7099999999999933
percentage of change this cycle: 0.9976525821596244 for a new value of 0.7083333333333266
percentage of change this cycle: 0.9976470588235293 for a new value of 0.7066666666666599
percentage of change this cycle: 0.9976415094339622 for a new value of 0.7049999999999932
percentage of change this cycle: 0.9976359338061465 for a new value of 0.7033333333333265
percentage of change this cycle: 0.9976303317535544 for a new value of 0.7016666666666598
percentage of change this cycle: 0.9976247030878859 for a new value of 0.6999999999999931
percentage of change this cycle: 0.9976190476190475 for a new value of 0.6983333333333264
percentage of change this cycle: 0.9976133651551312 for a new value of 0.6966666666666597
percentage of change this cycle: 0.9976076555023923 for a new value of 0.694999999999993
percentage of change this cycle: 0.9976019184652277 for a new value of 0.6933333333333263
percentage of change this cycle: 0.9975961538461537 for a new value of 0.6916666666666595
percentage of change this cycle: 0.9975903614457831 for a new value of 0.6899999999999928
percentage of change this cycle: 0.9975845410628018 for a new value of 0.6883333333333261
percentage of change this cycle: 0.9975786924939466 for a new value of 0.6866666666666594
percentage of change this cycle: 0.9975728155339805 for a new value of 0.6849999999999927
percentage of change this cycle: 0.997566909975669 for a new value of 0.683333333333326
percentage of change this cycle: 0.997560975609756 for a new value of 0.6816666666666593
percentage of change this cycle: 0.9975550122249388 for a new value of 0.6799999999999926
percentage of change this cycle: 0.997549019607843 for a new value of 0.6783333333333259
percentage of change this cycle: 0.9975429975429975 for a new value of 0.6766666666666592
percentage of change this cycle: 0.9975369458128078 for a new value of 0.6749999999999925
percentage of change this cycle: 0.9975308641975308 for a new value of 0.6733333333333258
percentage of change this cycle: 0.9975247524752474 for a new value of 0.6716666666666591
percentage of change this cycle: 0.9975186104218361 for a new value of 0.6699999999999924
percentage of change this cycle: 0.9975124378109452 for a new value of 0.6683333333333257
percentage of change this cycle: 0.997506234413965 for a new value of 0.666666666666659
percentage of change this cycle: 0.9974999999999999 for a new value of 0.6649999999999923
percentage of change this cycle: 0.9974937343358395 for a new value of 0.6633333333333256
percentage of change this cycle: 0.9974874371859296 for a new value of 0.6616666666666589
percentage of change this cycle: 0.9974811083123425 for a new value of 0.6599999999999921
percentage of change this cycle: 0.9974747474747474 for a new value of 0.6583333333333254
percentage of change this cycle: 0.9974683544303796 for a new value of 0.6566666666666587
percentage of change this cycle: 0.9974619289340101 for a new value of 0.654999999999992
percentage of change this cycle: 0.9974554707379134 for a new value of 0.6533333333333253
percentage of change this cycle: 0.9974489795918366 for a new value of 0.6516666666666586
percentage of change this cycle: 0.9974424552429667 for a new value of 0.6499999999999919
percentage of change this cycle: 0.9974358974358973 for a new value of 0.6483333333333252
percentage of change this cycle: 0.9974293059125963 for a new value of 0.6466666666666585
percentage of change this cycle: 0.997422680412371 for a new value of 0.6449999999999918
percentage of change this cycle: 0.9974160206718345 for a new value of 0.6433333333333251
percentage of change this cycle: 0.9974093264248703 for a new value of 0.6416666666666584
percentage of change this cycle: 0.9974025974025973 for a new value of 0.6399999999999917
percentage of change this cycle: 0.9973958333333333 for a new value of 0.638333333333325
percentage of change this cycle: 0.9973890339425586 for a new value of 0.6366666666666583
percentage of change this cycle: 0.9973821989528795 for a new value of 0.6349999999999916
percentage of change this cycle: 0.9973753280839894 for a new value of 0.6333333333333249
percentage of change this cycle: 0.9973684210526315 for a new value of 0.6316666666666582
percentage of change this cycle: 0.9973614775725592 for a new value of 0.6299999999999915
percentage of change this cycle: 0.9973544973544972 for a new value of 0.6283333333333248
percentage of change this cycle: 0.9973474801061007 for a new value of 0.626666666666658
percentage of change this cycle: 0.9973404255319148 for a new value of 0.6249999999999913
percentage of change this cycle: 0.9973333333333332 for a new value of 0.6233333333333246
percentage of change this cycle: 0.997326203208556 for a new value of 0.6216666666666579
percentage of change this cycle: 0.9973190348525468 for a new value of 0.6199999999999912
percentage of change this cycle: 0.9973118279569891 for a new value of 0.6183333333333245
percentage of change this cycle: 0.9973045822102425 for a new value of 0.6166666666666578
percentage of change this cycle: 0.9972972972972972 for a new value of 0.6149999999999911
percentage of change this cycle: 0.9972899728997289 for a new value of 0.6133333333333244
percentage of change this cycle: 0.9972826086956521 for a new value of 0.6116666666666577
percentage of change this cycle: 0.9972752043596729 for a new value of 0.609999999999991
percentage of change this cycle: 0.9972677595628414 for a new value of 0.6083333333333243
percentage of change this cycle: 0.9972602739726026 for a new value of 0.6066666666666576
percentage of change this cycle: 0.9972527472527472 for a new value of 0.6049999999999909
percentage of change this cycle: 0.9972451790633607 for a new value of 0.6033333333333242
percentage of change this cycle: 0.9972375690607733 for a new value of 0.6016666666666575
percentage of change this cycle: 0.9972299168975068 for a new value of 0.5999999999999908
percentage of change this cycle: 0.9972222222222221 for a new value of 0.5983333333333241
percentage of change this cycle: 0.9972144846796657 for a new value of 0.5966666666666574
percentage of change this cycle: 0.9972067039106144 for a new value of 0.5949999999999906
percentage of change this cycle: 0.9971988795518206 for a new value of 0.5933333333333239
percentage of change this cycle: 0.997191011235955 for a new value of 0.5916666666666572
percentage of change this cycle: 0.9971830985915492 for a new value of 0.5899999999999905
percentage of change this cycle: 0.9971751412429377 for a new value of 0.5883333333333238
percentage of change this cycle: 0.9971671388101981 for a new value of 0.5866666666666571
percentage of change this cycle: 0.9971590909090908 for a new value of 0.5849999999999904
percentage of change this cycle: 0.9971509971509971 for a new value of 0.5833333333333237
percentage of change this cycle: 0.997142857142857 for a new value of 0.581666666666657
percentage of change this cycle: 0.9971346704871059 for a new value of 0.5799999999999903
percentage of change this cycle: 0.9971264367816091 for a new value of 0.5783333333333236
percentage of change this cycle: 0.9971181556195964 for a new value of 0.5766666666666569
percentage of change this cycle: 0.9971098265895952 for a new value of 0.5749999999999902
percentage of change this cycle: 0.9971014492753622 for a new value of 0.5733333333333235
percentage of change this cycle: 0.9970930232558138 for a new value of 0.5716666666666568
percentage of change this cycle: 0.9970845481049562 for a new value of 0.5699999999999901
percentage of change this cycle: 0.9970760233918128 for a new value of 0.5683333333333234
percentage of change this cycle: 0.9970674486803518 for a new value of 0.5666666666666567
percentage of change this cycle: 0.9970588235294117 for a new value of 0.56499999999999
percentage of change this cycle: 0.9970501474926252 for a new value of 0.5633333333333232
percentage of change this cycle: 0.9970414201183431 for a new value of 0.5616666666666565
percentage of change this cycle: 0.9970326409495548 for a new value of 0.5599999999999898
percentage of change this cycle: 0.9970238095238094 for a new value of 0.5583333333333231
percentage of change this cycle: 0.9970149253731342 for a new value of 0.5566666666666564
percentage of change this cycle: 0.997005988023952 for a new value of 0.5549999999999897
percentage of change this cycle: 0.9969969969969968 for a new value of 0.553333333333323
percentage of change this cycle: 0.9969879518072288 for a new value of 0.5516666666666563
percentage of change this cycle: 0.9969788519637461 for a new value of 0.5499999999999896
percentage of change this cycle: 0.9969696969696968 for a new value of 0.5483333333333229
percentage of change this cycle: 0.9969604863221884 for a new value of 0.5466666666666562
percentage of change this cycle: 0.996951219512195 for a new value of 0.5449999999999895
percentage of change this cycle: 0.9969418960244647 for a new value of 0.5433333333333228
percentage of change this cycle: 0.9969325153374232 for a new value of 0.5416666666666561
percentage of change this cycle: 0.9969230769230768 for a new value of 0.5399999999999894
percentage of change this cycle: 0.9969135802469135 for a new value of 0.5383333333333227
percentage of change this cycle: 0.9969040247678017 for a new value of 0.536666666666656
percentage of change this cycle: 0.996894409937888 for a new value of 0.5349999999999893
percentage of change this cycle: 0.9968847352024921 for a new value of 0.5333333333333226
percentage of change this cycle: 0.9968749999999998 for a new value of 0.5316666666666559
percentage of change this cycle: 0.9968652037617554 for a new value of 0.5299999999999891
percentage of change this cycle: 0.9968553459119496 for a new value of 0.5283333333333224
percentage of change this cycle: 0.9968454258675078 for a new value of 0.5266666666666557
percentage of change this cycle: 0.9968354430379746 for a new value of 0.524999999999989
percentage of change this cycle: 0.9968253968253967 for a new value of 0.5233333333333223
percentage of change this cycle: 0.9968152866242037 for a new value of 0.5216666666666556
percentage of change this cycle: 0.9968051118210861 for a new value of 0.5199999999999889
percentage of change this cycle: 0.9967948717948717 for a new value of 0.5183333333333222
percentage of change this cycle: 0.9967845659163985 for a new value of 0.5166666666666555
percentage of change this cycle: 0.9967741935483869 for a new value of 0.5149999999999888
percentage of change this cycle: 0.9967637540453073 for a new value of 0.5133333333333221
percentage of change this cycle: 0.9967532467532466 for a new value of 0.5116666666666554
percentage of change this cycle: 0.9967426710097719 for a new value of 0.5099999999999887
percentage of change this cycle: 0.9967320261437908 for a new value of 0.508333333333322
percentage of change this cycle: 0.9967213114754097 for a new value of 0.5066666666666553
percentage of change this cycle: 0.9967105263157893 for a new value of 0.5049999999999886
percentage of change this cycle: 0.9966996699669965 for a new value of 0.5033333333333219
percentage of change this cycle: 0.9966887417218542 for a new value of 0.5016666666666552
percentage of change this cycle: 0.9966777408637874 for a new value of 0.4999999999999885
percentage of change this cycle: 0.9966666666666666 for a new value of 0.49833333333332186
percentage of change this cycle: 0.9966555183946488 for a new value of 0.4966666666666552
percentage of change this cycle: 0.9966442953020134 for a new value of 0.49499999999998856
percentage of change this cycle: 0.9966329966329965 for a new value of 0.4933333333333219
percentage of change this cycle: 0.9966216216216216 for a new value of 0.49166666666665526
percentage of change this cycle: 0.9966101694915254 for a new value of 0.4899999999999886
percentage of change this cycle: 0.9965986394557823 for a new value of 0.48833333333332196
percentage of change this cycle: 0.9965870307167235 for a new value of 0.4866666666666553
percentage of change this cycle: 0.9965753424657534 for a new value of 0.48499999999998866
percentage of change this cycle: 0.9965635738831614 for a new value of 0.483333333333322
percentage of change this cycle: 0.996551724137931 for a new value of 0.48166666666665536
percentage of change this cycle: 0.9965397923875432 for a new value of 0.4799999999999887
percentage of change this cycle: 0.9965277777777777 for a new value of 0.47833333333332206
percentage of change this cycle: 0.9965156794425086 for a new value of 0.4766666666666554
percentage of change this cycle: 0.9965034965034965 for a new value of 0.47499999999998876
percentage of change this cycle: 0.9964912280701754 for a new value of 0.4733333333333221
percentage of change this cycle: 0.9964788732394366 for a new value of 0.47166666666665547
percentage of change this cycle: 0.9964664310954063 for a new value of 0.4699999999999888
percentage of change this cycle: 0.9964539007092198 for a new value of 0.46833333333332217
percentage of change this cycle: 0.9964412811387899 for a new value of 0.4666666666666555
percentage of change this cycle: 0.9964285714285713 for a new value of 0.46499999999998887
percentage of change this cycle: 0.996415770609319 for a new value of 0.4633333333333222
percentage of change this cycle: 0.9964028776978416 for a new value of 0.46166666666665557
percentage of change this cycle: 0.9963898916967509 for a new value of 0.4599999999999889
percentage of change this cycle: 0.9963768115942029 for a new value of 0.45833333333332227
percentage of change this cycle: 0.9963636363636363 for a new value of 0.4566666666666556
percentage of change this cycle: 0.9963503649635036 for a new value of 0.45499999999998897
percentage of change this cycle: 0.9963369963369962 for a new value of 0.4533333333333223
percentage of change this cycle: 0.9963235294117646 for a new value of 0.45166666666665567
percentage of change this cycle: 0.9963099630996309 for a new value of 0.449999999999989
percentage of change this cycle: 0.9962962962962962 for a new value of 0.44833333333332237
percentage of change this cycle: 0.9962825278810409 for a new value of 0.4466666666666557
percentage of change this cycle: 0.9962686567164178 for a new value of 0.44499999999998907
percentage of change this cycle: 0.9962546816479401 for a new value of 0.4433333333333224
percentage of change this cycle: 0.9962406015037594 for a new value of 0.44166666666665577
percentage of change this cycle: 0.9962264150943396 for a new value of 0.4399999999999891
percentage of change this cycle: 0.9962121212121211 for a new value of 0.4383333333333225
percentage of change this cycle: 0.9961977186311787 for a new value of 0.4366666666666558
percentage of change this cycle: 0.9961832061068702 for a new value of 0.4349999999999892
percentage of change this cycle: 0.9961685823754789 for a new value of 0.4333333333333225
percentage of change this cycle: 0.9961538461538461 for a new value of 0.4316666666666559
percentage of change this cycle: 0.996138996138996 for a new value of 0.4299999999999892
percentage of change this cycle: 0.9961240310077519 for a new value of 0.4283333333333226
percentage of change this cycle: 0.9961089494163423 for a new value of 0.4266666666666559
percentage of change this cycle: 0.9960937499999999 for a new value of 0.4249999999999893
percentage of change this cycle: 0.9960784313725489 for a new value of 0.4233333333333226
percentage of change this cycle: 0.9960629921259841 for a new value of 0.421666666666656
percentage of change this cycle: 0.9960474308300394 for a new value of 0.4199999999999893
percentage of change this cycle: 0.9960317460317459 for a new value of 0.4183333333333227
percentage of change this cycle: 0.99601593625498 for a new value of 0.416666666666656
percentage of change this cycle: 0.9959999999999999 for a new value of 0.4149999999999894
percentage of change this cycle: 0.9959839357429718 for a new value of 0.4133333333333227
percentage of change this cycle: 0.9959677419354838 for a new value of 0.4116666666666561
percentage of change this cycle: 0.9959514170040485 for a new value of 0.40999999999998943
percentage of change this cycle: 0.9959349593495934 for a new value of 0.4083333333333228
percentage of change this cycle: 0.9959183673469387 for a new value of 0.40666666666665613
percentage of change this cycle: 0.9959016393442622 for a new value of 0.4049999999999895
percentage of change this cycle: 0.9958847736625513 for a new value of 0.40333333333332283
percentage of change this cycle: 0.9958677685950412 for a new value of 0.4016666666666562
percentage of change this cycle: 0.9958506224066389 for a new value of 0.39999999999998953
percentage of change this cycle: 0.9958333333333332 for a new value of 0.3983333333333229
percentage of change this cycle: 0.9958158995815899 for a new value of 0.39666666666665623
percentage of change this cycle: 0.995798319327731 for a new value of 0.3949999999999896
percentage of change this cycle: 0.9957805907172995 for a new value of 0.39333333333332293
percentage of change this cycle: 0.9957627118644067 for a new value of 0.3916666666666563
percentage of change this cycle: 0.9957446808510637 for a new value of 0.38999999999998963
percentage of change this cycle: 0.9957264957264956 for a new value of 0.388333333333323
percentage of change this cycle: 0.9957081545064377 for a new value of 0.38666666666665633
percentage of change this cycle: 0.9956896551724137 for a new value of 0.3849999999999897
percentage of change this cycle: 0.9956709956709956 for a new value of 0.38333333333332303
percentage of change this cycle: 0.9956521739130434 for a new value of 0.3816666666666564
percentage of change this cycle: 0.9956331877729256 for a new value of 0.37999999999998973
percentage of change this cycle: 0.9956140350877192 for a new value of 0.3783333333333231
percentage of change this cycle: 0.9955947136563876 for a new value of 0.37666666666665644
percentage of change this cycle: 0.9955752212389379 for a new value of 0.3749999999999898
percentage of change this cycle: 0.9955555555555555 for a new value of 0.37333333333332314
percentage of change this cycle: 0.9955357142857142 for a new value of 0.3716666666666565
percentage of change this cycle: 0.9955156950672645 for a new value of 0.36999999999998984
percentage of change this cycle: 0.9954954954954954 for a new value of 0.3683333333333232
percentage of change this cycle: 0.9954751131221719 for a new value of 0.36666666666665654
percentage of change this cycle: 0.9954545454545454 for a new value of 0.3649999999999899
percentage of change this cycle: 0.9954337899543378 for a new value of 0.36333333333332324
percentage of change this cycle: 0.9954128440366972 for a new value of 0.3616666666666566
percentage of change this cycle: 0.9953917050691243 for a new value of 0.35999999999998994
percentage of change this cycle: 0.9953703703703702 for a new value of 0.3583333333333233
percentage of change this cycle: 0.9953488372093022 for a new value of 0.35666666666665664
percentage of change this cycle: 0.9953271028037383 for a new value of 0.35499999999999
percentage of change this cycle: 0.9953051643192488 for a new value of 0.35333333333332334
percentage of change this cycle: 0.9952830188679245 for a new value of 0.3516666666666567
percentage of change this cycle: 0.995260663507109 for a new value of 0.34999999999999004
percentage of change this cycle: 0.9952380952380951 for a new value of 0.3483333333333234
percentage of change this cycle: 0.9952153110047846 for a new value of 0.34666666666665674
percentage of change this cycle: 0.9951923076923076 for a new value of 0.3449999999999901
percentage of change this cycle: 0.9951690821256037 for a new value of 0.34333333333332344
percentage of change this cycle: 0.9951456310679611 for a new value of 0.3416666666666568
percentage of change this cycle: 0.9951219512195121 for a new value of 0.33999999999999014
percentage of change this cycle: 0.9950980392156862 for a new value of 0.3383333333333235
percentage of change this cycle: 0.9950738916256157 for a new value of 0.33666666666665684
percentage of change this cycle: 0.9950495049504949 for a new value of 0.3349999999999902
percentage of change this cycle: 0.9950248756218905 for a new value of 0.33333333333332354
percentage of change this cycle: 0.9949999999999999 for a new value of 0.3316666666666569
percentage of change this cycle: 0.9949748743718592 for a new value of 0.32999999999999025
percentage of change this cycle: 0.9949494949494948 for a new value of 0.3283333333333236
percentage of change this cycle: 0.9949238578680202 for a new value of 0.32666666666665695
percentage of change this cycle: 0.9948979591836734 for a new value of 0.3249999999999903
percentage of change this cycle: 0.9948717948717948 for a new value of 0.32333333333332365
percentage of change this cycle: 0.9948453608247422 for a new value of 0.321666666666657
percentage of change this cycle: 0.9948186528497408 for a new value of 0.31999999999999035
percentage of change this cycle: 0.9947916666666665 for a new value of 0.3183333333333237
percentage of change this cycle: 0.9947643979057591 for a new value of 0.31666666666665705
percentage of change this cycle: 0.994736842105263 for a new value of 0.3149999999999904
percentage of change this cycle: 0.9947089947089947 for a new value of 0.31333333333332375
percentage of change this cycle: 0.9946808510638296 for a new value of 0.3116666666666571
percentage of change this cycle: 0.9946524064171122 for a new value of 0.30999999999999045
percentage of change this cycle: 0.9946236559139784 for a new value of 0.3083333333333238
percentage of change this cycle: 0.9945945945945944 for a new value of 0.30666666666665715
percentage of change this cycle: 0.9945652173913042 for a new value of 0.3049999999999905
percentage of change this cycle: 0.9945355191256829 for a new value of 0.30333333333332385
percentage of change this cycle: 0.9945054945054944 for a new value of 0.3016666666666572
percentage of change this cycle: 0.9944751381215469 for a new value of 0.29999999999999055
percentage of change this cycle: 0.9944444444444444 for a new value of 0.2983333333333239
percentage of change this cycle: 0.9944134078212289 for a new value of 0.29666666666665725
percentage of change this cycle: 0.99438202247191 for a new value of 0.2949999999999906
percentage of change this cycle: 0.9943502824858755 for a new value of 0.29333333333332395
percentage of change this cycle: 0.9943181818181817 for a new value of 0.2916666666666573
percentage of change this cycle: 0.9942857142857141 for a new value of 0.28999999999999065
percentage of change this cycle: 0.9942528735632182 for a new value of 0.288333333333324
percentage of change this cycle: 0.9942196531791906 for a new value of 0.28666666666665735
percentage of change this cycle: 0.9941860465116278 for a new value of 0.2849999999999907
percentage of change this cycle: 0.9941520467836256 for a new value of 0.28333333333332406
percentage of change this cycle: 0.9941176470588234 for a new value of 0.2816666666666574
percentage of change this cycle: 0.9940828402366862 for a new value of 0.27999999999999076
percentage of change this cycle: 0.994047619047619 for a new value of 0.2783333333333241
percentage of change this cycle: 0.994011976047904 for a new value of 0.27666666666665746
percentage of change this cycle: 0.9939759036144576 for a new value of 0.2749999999999908
percentage of change this cycle: 0.9939393939393938 for a new value of 0.27333333333332416
percentage of change this cycle: 0.9939024390243901 for a new value of 0.2716666666666575
percentage of change this cycle: 0.9938650306748464 for a new value of 0.26999999999999086
percentage of change this cycle: 0.993827160493827 for a new value of 0.2683333333333242
percentage of change this cycle: 0.9937888198757763 for a new value of 0.26666666666665756
percentage of change this cycle: 0.9937499999999998 for a new value of 0.2649999999999909
percentage of change this cycle: 0.9937106918238993 for a new value of 0.26333333333332426
percentage of change this cycle: 0.9936708860759492 for a new value of 0.2616666666666576
percentage of change this cycle: 0.9936305732484075 for a new value of 0.25999999999999096
percentage of change this cycle: 0.9935897435897434 for a new value of 0.2583333333333243
percentage of change this cycle: 0.9935483870967741 for a new value of 0.25666666666665766
percentage of change this cycle: 0.9935064935064933 for a new value of 0.254999999999991
percentage of change this cycle: 0.9934640522875815 for a new value of 0.25333333333332436
percentage of change this cycle: 0.9934210526315788 for a new value of 0.2516666666666577
percentage of change this cycle: 0.9933774834437084 for a new value of 0.24999999999999103
percentage of change this cycle: 0.9933333333333331 for a new value of 0.24833333333332436
percentage of change this cycle: 0.9932885906040265 for a new value of 0.24666666666665768
percentage of change this cycle: 0.993243243243243 for a new value of 0.244999999999991
percentage of change this cycle: 0.9931972789115643 for a new value of 0.24333333333332433
percentage of change this cycle: 0.9931506849315066 for a new value of 0.24166666666665765
percentage of change this cycle: 0.9931034482758617 for a new value of 0.23999999999999097
percentage of change this cycle: 0.9930555555555552 for a new value of 0.2383333333333243
percentage of change this cycle: 0.9930069930069927 for a new value of 0.23666666666665762
percentage of change this cycle: 0.9929577464788729 for a new value of 0.23499999999999094
percentage of change this cycle: 0.9929078014184394 for a new value of 0.23333333333332426
percentage of change this cycle: 0.9928571428571425 for a new value of 0.23166666666665758
percentage of change this cycle: 0.9928057553956832 for a new value of 0.2299999999999909
percentage of change this cycle: 0.9927536231884054 for a new value of 0.22833333333332423
percentage of change this cycle: 0.992700729927007 for a new value of 0.22666666666665755
percentage of change this cycle: 0.9926470588235291 for a new value of 0.22499999999999087
percentage of change this cycle: 0.9925925925925922 for a new value of 0.2233333333333242
percentage of change this cycle: 0.9925373134328355 for a new value of 0.22166666666665752
percentage of change this cycle: 0.9924812030075184 for a new value of 0.21999999999999084
percentage of change this cycle: 0.9924242424242421 for a new value of 0.21833333333332416
percentage of change this cycle: 0.9923664122137401 for a new value of 0.2166666666666575
percentage of change this cycle: 0.9923076923076919 for a new value of 0.2149999999999908
percentage of change this cycle: 0.9922480620155035 for a new value of 0.21333333333332413
percentage of change this cycle: 0.9921874999999997 for a new value of 0.21166666666665745
percentage of change this cycle: 0.9921259842519681 for a new value of 0.20999999999999078
percentage of change this cycle: 0.9920634920634916 for a new value of 0.2083333333333241
percentage of change this cycle: 0.9919999999999995 for a new value of 0.20666666666665742
percentage of change this cycle: 0.9919354838709673 for a new value of 0.20499999999999075
percentage of change this cycle: 0.9918699186991866 for a new value of 0.20333333333332407
percentage of change this cycle: 0.9918032786885241 for a new value of 0.2016666666666574
percentage of change this cycle: 0.9917355371900822 for a new value of 0.1999999999999907
percentage of change this cycle: 0.9916666666666663 for a new value of 0.19833333333332404
percentage of change this cycle: 0.9915966386554618 for a new value of 0.19666666666665736
percentage of change this cycle: 0.9915254237288131 for a new value of 0.19499999999999068
percentage of change this cycle: 0.991452991452991 for a new value of 0.193333333333324
percentage of change this cycle: 0.9913793103448271 for a new value of 0.19166666666665733
percentage of change this cycle: 0.9913043478260865 for a new value of 0.18999999999999065
percentage of change this cycle: 0.9912280701754381 for a new value of 0.18833333333332397
percentage of change this cycle: 0.9911504424778756 for a new value of 0.1866666666666573
percentage of change this cycle: 0.991071428571428 for a new value of 0.18499999999999062
percentage of change this cycle: 0.9909909909909905 for a new value of 0.18333333333332394
percentage of change this cycle: 0.9909090909090904 for a new value of 0.18166666666665726
percentage of change this cycle: 0.990825688073394 for a new value of 0.17999999999999058
percentage of change this cycle: 0.9907407407407401 for a new value of 0.1783333333333239
percentage of change this cycle: 0.9906542056074761 for a new value of 0.17666666666665723
percentage of change this cycle: 0.9905660377358485 for a new value of 0.17499999999999055
percentage of change this cycle: 0.99047619047619 for a new value of 0.17333333333332387
percentage of change this cycle: 0.9903846153846148 for a new value of 0.1716666666666572
percentage of change this cycle: 0.9902912621359218 for a new value of 0.16999999999999052
percentage of change this cycle: 0.9901960784313719 for a new value of 0.16833333333332384
percentage of change this cycle: 0.9900990099009894 for a new value of 0.16666666666665717
percentage of change this cycle: 0.9899999999999993 for a new value of 0.1649999999999905
percentage of change this cycle: 0.9898989898989893 for a new value of 0.1633333333333238
percentage of change this cycle: 0.9897959183673463 for a new value of 0.16166666666665713
percentage of change this cycle: 0.9896907216494839 for a new value of 0.15999999999999046
percentage of change this cycle: 0.9895833333333326 for a new value of 0.15833333333332378
percentage of change this cycle: 0.9894736842105256 for a new value of 0.1566666666666571
percentage of change this cycle: 0.9893617021276588 for a new value of 0.15499999999999042
percentage of change this cycle: 0.9892473118279562 for a new value of 0.15333333333332375
percentage of change this cycle: 0.989130434782608 for a new value of 0.15166666666665707
percentage of change this cycle: 0.9890109890109883 for a new value of 0.1499999999999904
percentage of change this cycle: 0.9888888888888882 for a new value of 0.1483333333333237
percentage of change this cycle: 0.9887640449438194 for a new value of 0.14666666666665704
percentage of change this cycle: 0.9886363636363629 for a new value of 0.14499999999999036
percentage of change this cycle: 0.9885057471264359 for a new value of 0.14333333333332368
percentage of change this cycle: 0.9883720930232549 for a new value of 0.141666666666657
percentage of change this cycle: 0.9882352941176462 for a new value of 0.13999999999999033
percentage of change this cycle: 0.9880952380952372 for a new value of 0.13833333333332365
percentage of change this cycle: 0.9879518072289147 for a new value of 0.13666666666665697
percentage of change this cycle: 0.9878048780487796 for a new value of 0.1349999999999903
percentage of change this cycle: 0.9876543209876534 for a new value of 0.13333333333332362
percentage of change this cycle: 0.987499999999999 for a new value of 0.13166666666665694
percentage of change this cycle: 0.9873417721518977 for a new value of 0.12999999999999026
percentage of change this cycle: 0.9871794871794861 for a new value of 0.12833333333332358
percentage of change this cycle: 0.9870129870129859 for a new value of 0.1266666666666569
percentage of change this cycle: 0.9868421052631569 for a new value of 0.12499999999999024
percentage of change this cycle: 0.9866666666666657 for a new value of 0.12333333333332358
percentage of change this cycle: 0.9864864864864854 for a new value of 0.12166666666665692
percentage of change this cycle: 0.9863013698630126 for a new value of 0.11999999999999025
percentage of change this cycle: 0.98611111111111 for a new value of 0.11833333333332359
percentage of change this cycle: 0.9859154929577454 for a new value of 0.11666666666665693
percentage of change this cycle: 0.9857142857142845 for a new value of 0.11499999999999026
percentage of change this cycle: 0.9855072463768104 for a new value of 0.1133333333333236
percentage of change this cycle: 0.9852941176470575 for a new value of 0.11166666666665694
percentage of change this cycle: 0.9850746268656704 for a new value of 0.10999999999999027
percentage of change this cycle: 0.9848484848484835 for a new value of 0.10833333333332361
percentage of change this cycle: 0.9846153846153832 for a new value of 0.10666666666665695
percentage of change this cycle: 0.9843749999999986 for a new value of 0.10499999999999028
percentage of change this cycle: 0.9841269841269827 for a new value of 0.10333333333332362
percentage of change this cycle: 0.9838709677419339 for a new value of 0.10166666666665695
percentage of change this cycle: 0.9836065573770476 for a new value of 0.09999999999999029
percentage of change this cycle: 0.9833333333333317 for a new value of 0.09833333333332363
percentage of change this cycle: 0.9830508474576255 for a new value of 0.09666666666665696
percentage of change this cycle: 0.9827586206896535 for a new value of 0.0949999999999903
percentage of change this cycle: 0.9824561403508755 for a new value of 0.09333333333332364
percentage of change this cycle: 0.9821428571428553 for a new value of 0.09166666666665697
percentage of change this cycle: 0.9818181818181799 for a new value of 0.08999999999999031
percentage of change this cycle: 0.9814814814814795 for a new value of 0.08833333333332365
percentage of change this cycle: 0.9811320754716961 for a new value of 0.08666666666665698
percentage of change this cycle: 0.9807692307692286 for a new value of 0.08499999999999032
percentage of change this cycle: 0.980392156862743 for a new value of 0.08333333333332366
percentage of change this cycle: 0.9799999999999978 for a new value of 0.08166666666665699
percentage of change this cycle: 0.9795918367346915 for a new value of 0.07999999999999033
percentage of change this cycle: 0.9791666666666642 for a new value of 0.07833333333332367
percentage of change this cycle: 0.9787234042553166 for a new value of 0.076666666666657
percentage of change this cycle: 0.9782608695652147 for a new value of 0.07499999999999034
percentage of change this cycle: 0.977777777777775 for a new value of 0.07333333333332367
percentage of change this cycle: 0.9772727272727243 for a new value of 0.07166666666665701
percentage of change this cycle: 0.9767441860465086 for a new value of 0.06999999999999035
percentage of change this cycle: 0.9761904761904729 for a new value of 0.06833333333332368
percentage of change this cycle: 0.9756097560975576 for a new value of 0.06666666666665702
percentage of change this cycle: 0.9749999999999964 for a new value of 0.06499999999999036
percentage of change this cycle: 0.9743589743589706 for a new value of 0.0633333333333237
percentage of change this cycle: 0.9736842105263118 for a new value of 0.06166666666665703
percentage of change this cycle: 0.9729729729729688 for a new value of 0.05999999999999037
percentage of change this cycle: 0.9722222222222178 for a new value of 0.0583333333333237
percentage of change this cycle: 0.9714285714285668 for a new value of 0.05666666666665704
percentage of change this cycle: 0.9705882352941128 for a new value of 0.054999999999990376
percentage of change this cycle: 0.9696969696969645 for a new value of 0.05333333333332371
percentage of change this cycle: 0.9687499999999944 for a new value of 0.05166666666665705
percentage of change this cycle: 0.967741935483865 for a new value of 0.049999999999990385
percentage of change this cycle: 0.9666666666666603 for a new value of 0.04833333333332372
percentage of change this cycle: 0.9655172413793035 for a new value of 0.04666666666665706
percentage of change this cycle: 0.964285714285707 for a new value of 0.044999999999990395
percentage of change this cycle: 0.9629629629629551 for a new value of 0.04333333333332373
percentage of change this cycle: 0.9615384615384531 for a new value of 0.04166666666665707
percentage of change this cycle: 0.9599999999999909 for a new value of 0.039999999999990404
percentage of change this cycle: 0.9583333333333234 for a new value of 0.03833333333332374
percentage of change this cycle: 0.9565217391304239 for a new value of 0.03666666666665708
percentage of change this cycle: 0.9545454545454427 for a new value of 0.034999999999990414
percentage of change this cycle: 0.9523809523809394 for a new value of 0.03333333333332375
percentage of change this cycle: 0.9499999999999857 for a new value of 0.03166666666665709
percentage of change this cycle: 0.9473684210526157 for a new value of 0.02999999999999042
percentage of change this cycle: 0.9444444444444267 for a new value of 0.028333333333323753
percentage of change this cycle: 0.9411764705882154 for a new value of 0.026666666666657086
percentage of change this cycle: 0.9374999999999776 for a new value of 0.02499999999999042
percentage of change this cycle: 0.9333333333333078 for a new value of 0.023333333333323752
percentage of change this cycle: 0.9285714285713992 for a new value of 0.021666666666657085
percentage of change this cycle: 0.923076923076889 for a new value of 0.019999999999990418
percentage of change this cycle: 0.9166666666666268 for a new value of 0.01833333333332375
percentage of change this cycle: 0.9090909090908615 for a new value of 0.016666666666657084
percentage of change this cycle: 0.8999999999999425 for a new value of 0.014999999999990417
percentage of change this cycle: 0.8888888888888179 for a new value of 0.01333333333332375
percentage of change this cycle: 0.8749999999999102 for a new value of 0.011666666666657083
percentage of change this cycle: 0.8571428571427397 for a new value of 0.009999999999990416
percentage of change this cycle: 0.8333333333331736 for a new value of 0.008333333333323749
percentage of change this cycle: 0.7999999999997699 for a new value of 0.006666666666657082
percentage of change this cycle: 0.7499999999996405 for a new value of 0.004999999999990415
percentage of change this cycle: 0.6666666666660276 for a new value of 0.003333333333323748
percentage of change this cycle: 0.49999999999856215 for a new value of 0.0016666666666570811
percentage of change this cycle: -5.7513889484603834e-12 for a new value of -9.585648247378842e-15