diff --git a/build.sbt b/build.sbt index c461024d32ecb82fad8c435b2451b2a517d48ceb..2b2242fbad3e2e4b81f820cfc85375dbc2c80ee8 100644 --- a/build.sbt +++ b/build.sbt @@ -25,7 +25,7 @@ run / javaOptions += "-Dfile.encoding=UTF-8" //Compile / run / mainClass := Some("org.smastaplus.experiment.balancer.DelegationVsSwapCampaign") //Compile / run / mainClass := Some("org.smastaplus.experiment.balancer.SwapCounterProposalStrategy") //Compile / run / mainClass := Some("org.smastaplus.experiment.balancer.HillClimbingVsSimulatedAnnealingVsNegotiationCampaign") -//Compile / run / mainClass := Some("org.smastaplus.experiment.consumer.WithVsWithoutNegotiationCampaign") +Compile / run / mainClass := Some("org.smastaplus.experiment.consumer.WithVsWithoutNegotiationCampaign") //Compile / run / mainClass := Some("org.smastaplus.experiment.consumer.WithVsWithoutNegotiationByNodesCampaign") //Compile / run / mainClass := Some("org.smastaplus.experiment.consumer.WithVsWithoutNegotiationSlowDownHalfNodeCampaign") //Compile / run / mainClass := Some("org.smastaplus.experiment.consumer.WithVsWithoutNegotiationFromStableCampaign") @@ -37,7 +37,7 @@ run / javaOptions += "-Dfile.encoding=UTF-8" //Compile / run / mainClass := Some("org.smastaplus.utils.MASTAPlusBalancer") //assembly / mainClass := Some("org.smastaplus.utils.MASTAPlusBalancer") //Compile / run / mainClass := Some("org.smastaplus.utils.MASTAPlusConsumer") -Compile / run / mainClass := Some("org.smastaplus.utils.MASTAPlusJobRelease") +//Compile / run / mainClass := Some("org.smastaplus.utils.MASTAPlusJobRelease") //assembly / mainClass := Some("org.smastaplus.utils.MASTAPlusConsumer") assembly / mainClass := Some("org.smastaplus.utils.MASTAPlusJobRelease") //Compile / run / mainClass := Some("org.smastaplus.utils.MASTAPlusScaler") diff --git a/doc/experiments/README.md b/doc/experiments/README.md index cd12a70fa839577cf0cb887d76044b738c956f19..798145e516c33a3e6b4baeb4b0d2ec93af517baf 100644 --- a/doc/experiments/README.md +++ b/doc/experiments/README.md @@ -36,15 +36,49 @@ During the consumption of the initial allocation, we consider the following metr - the number of performed tasks; - the number of delegated tasks if the reallocation strategy is adopted. - +During the consumption of the initial allocation, we consider the following metrics : +- the flowtime of the current allocation according to the completion times of tasks + already performed which are measured and the simulated cost of forthcoming tasks; +- the number of performed tasks; +- the number of delegated tasks if any. + +These figures respectively compare these metrics for our delegation strategy with +Sequential Single-Issue (SSI) auctions and Parallel Single-Issue (PSI) +auctions [Lagoudakis et al., 2006]. + +In the method of allocation base on SSI auctions, all the tasks are initially unallocated. +Every agent bids on each unallocated task. +It bids the increase in the smallest mean flowtime that results from winning the +task that it bids on. The agent with the overall smallest bid is allocated the +corresponding task. Then, each agent re-bids on each unallocated task, and the cycle +repeats until all targets are assigned. + +In the method for reallocation based on PSI auctions, every agent +bids on each task in parallel. The agent that currently owns a task determines and +informs the winning agent for the target, which is the agent with the smallest bid on the target. + +It is worth noticing that we do not implement single-round combinatorial auction since +agents cannot bid on all possible bundles of tasks because the number of possible bundles +is exponential in the number of tasks and the computation by the agents of their bids +is NP-hard. + +[Lagoudakis et al., 2006] Lagoudakis, S. K. C. T. M., Markakis, V., Kempe, D., Keskinocak, P., +Kleywegt, A., Meyerson, A., & Jain, S. (2006). The Power of Sequential Single-Item Auctions +for Agent Coordination. AAAI? 1625--1629 This figure shows the medians and standard deviations of our metrics as a function of the runtime -(according to a logarithmic timeline). +(according to a logarithmic timeline). + + + +We observe that the flowtime of the allocation method based on SSI auctions executed before +the consumption process and after the job release is worst that the flowtime for executing a +random allocation since this method postpone the consumption. We observe that the flowtime of the current allocation is better when the reallocation strategy is executed continuously during the consumption process in particular after the job release. -Our strategy reallocates the task of the job as soon it is released inr order to improve the -mean flowtime. - +Our strategy reallocates the task of the job as soon it is released in order to improve the +mean flowtime. The flowtime of our strategy is better than the flowtime of the reallocation method +based on PSI auctions since our strategy select the task and the recipient of the bargained delegation. To run the experiment, execute 10 times: @@ -72,36 +106,6 @@ We empirically set: - n = 128 tasks with 10 resources per task; - Each resource ρi is replicated 3 times and |ρi| ∈ [0;500]. -During the consumption of the initial allocation, we consider the following metrics : -- the flowtime of the current allocation according to the completion times of tasks - already performed which are measured and the simulated cost of forthcoming tasks; -- the number of performed tasks; -- the number of delegated tasks if any. - -These figures respectively compare these metrics for our delegation strategy with -Sequential Single-Issue (SSI) auctions and Parallel Single-Issue (PSI) -auctions [Lagoudakis et al., 2006]. - -In the method of allocation base on SSI auctions, all the tasks are initially unallocated. -Every agent bids on each unallocated task. -It bids the increase in the smallest mean flowtime that results from winning the -task that it bids on. The agent with the overall smallest bid is allocated the -corresponding task. Then, each agent re-bids on each unallocated task, and the cycle -repeats until all targets are assigned. - -In the method for reallocation based on PSI auctions, every agent -bids on each task in parallel. The agent that currently owns a task determines and -informs the winning agent for the target, which is the agent with the smallest bid on the target. - -It is worth noticing that we do not implement single-round combinatorial auction since -agents cannot bid on all possible bundles of tasks because the number of possible bundles -is exponential in the number of tasks and the computation by the agents of their bids -is NP-hard. - -[Lagoudakis et al., 2006] Lagoudakis, S. K. C. T. M., Markakis, V., Kempe, D., Keskinocak, P., -Kleywegt, A., Meyerson, A., & Jain, S. (2006). The Power of Sequential Single-Item Auctions -for Agent Coordination. AAAI? 1625--1629 -  This figure shows the medians and standard deviations of our metrics as a function of the runtime diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocations040-320tasks.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocations040-320tasks.csv index ac5538ea4061f0b98eddb3111c73028c2a929228..8aba0ca385b457bf8ec2356bbf32c02153f82b2c 100644 --- a/experiments/consumer/data/consumption4jobs8nodes5staps5allocations040-320tasks.csv +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocations040-320tasks.csv @@ -1,9 +1 @@ -m,l,n,randomGenerationRule,InitialLocalAvailabilityRatioOpen,InitialLocalAvailabilityRatioMean,InitialLocalAvailabilityRatioClose,InitialGlobalFlowtimeOpen,InitialGlobalFlowtimeMean,InitialGlobalFlowtimeClose,InitialSimulatedFlowtimeOpen,InitialSimulatedFlowtimeMean,InitialSimulatedFlowtimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatioOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatioMean,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatioClose,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDealsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDealsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDealsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegationsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegationsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegationsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwapsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwapsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwapsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeoutsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeoutsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeoutsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSizeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSizeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSizeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasksOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasksMean,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasksClose,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStagesOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStagesMean,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStagesClose,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStagesOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStagesMean,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStagesClose,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtimeClose,PSI00MeanRealFlowtimeOpen,PSI00MeanRealFlowtimeMean,PSI00MeanRealFlowtimeClose,PSI01MeanGlobalFlowtimeOpen,PSI01MeanGlobalFlowtimeMean,PSI01MeanGlobalFlowtimeClose,PSI02SolvingTimeOpen,PSI02SolvingTimeMean,PSI02SolvingTimeClose,PSI03LocalRatioOpen,PSI03LocalRatioMean,PSI03LocalRatioClose,PSI04NbDealsOpen,PSI04NbDealsMean,PSI04NbDealsClose,PSI05NbDelegationsOpen,PSI05NbDelegationsMean,PSI05NbDelegationsClose,PSI06NbSwapsOpen,PSI06NbSwapsMean,PSI06NbSwapsClose,PSI07NbTimeoutsOpen,PSI07NbTimeoutsMean,PSI07NbTimeoutsClose,PSI08EndowmentSizeOpen,PSI08EndowmentSizeMean,PSI08EndowmentSizeClose,PSI09NbDelegatedTasksOpen,PSI09NbDelegatedTasksMean,PSI09NbDelegatedTasksClose,PSI10NbFirstStagesOpen,PSI10NbFirstStagesMean,PSI10NbFirstStagesClose,PSI11NbSecondStagesOpen,PSI11NbSecondStagesMean,PSI11NbSecondStagesClose,PSI12MeanSimulatedFlowtimeOpen,PSI12MeanSimulatedFlowtimeMean,PSI12MeanSimulatedFlowtimeClose,SSI00MeanRealFlowtimeOpen,SSI00MeanRealFlowtimeMean,SSI00MeanRealFlowtimeClose,SSI01MeanGlobalFlowtimeOpen,SSI01MeanGlobalFlowtimeMean,SSI01MeanGlobalFlowtimeClose,SSI02SolvingTimeOpen,SSI02SolvingTimeMean,SSI02SolvingTimeClose,SSI03LocalRatioOpen,SSI03LocalRatioMean,SSI03LocalRatioClose,SSI04NbDealsOpen,SSI04NbDealsMean,SSI04NbDealsClose,SSI05NbDelegationsOpen,SSI05NbDelegationsMean,SSI05NbDelegationsClose,SSI06NbSwapsOpen,SSI06NbSwapsMean,SSI06NbSwapsClose,SSI07NbTimeoutsOpen,SSI07NbTimeoutsMean,SSI07NbTimeoutsClose,SSI08EndowmentSizeOpen,SSI08EndowmentSizeMean,SSI08EndowmentSizeClose,SSI09NbDelegatedTasksOpen,SSI09NbDelegatedTasksMean,SSI09NbDelegatedTasksClose,SSI10NbFirstStagesOpen,SSI10NbFirstStagesMean,SSI10NbFirstStagesClose,SSI11NbSecondStagesOpen,SSI11NbSecondStagesMean,SSI11NbSecondStagesClose,SSI12MeanSimulatedFlowtimeOpen,SSI12MeanSimulatedFlowtimeMean,SSI12MeanSimulatedFlowtimeClose,AOpen,AMean,AClose,BOpen,BMean,BClose,COpen,CMean,CClose,DOpen,DMean,DClose,EOpen,EMean,EClose,FOpen,FMean,FClose,Consumer00MeanRealFlowtimeOpen,Consumer00MeanRealFlowtimeMean,Consumer00MeanRealFlowtimeClose,GammaTheoreticalOpen,GammaTheoreticalMean,GammaTheoreticalClose,GammaSimulatedOpen,GammaSimulatedMean,GammaSimulatedClose,GammaRealOpen,GammaRealMean,GammaRealClose -8,4,40,Uncorrelated,0.35627020163152223,0.363839814893839,0.3964810681853163,27740.75,29462.5,31255.5,29860.25,31187.5,33849.75,21677.0,22695.0,23452.25,19124.5,19632.5,19979.25,2.9563713724E10,3.1605682617E10,3.2642275872E10,0.40100019611688564,0.4181154082878447,0.45619070638709286,12.0,35.0,71.0,12.0,35.0,71.0,0.0,0.0,0.0,70.0,219.0,460.0,1.220472440944882,1.4,1.5454545454545454,17.0,56.0,98.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35627020163152223,0.363839814893839,0.3964810681853163,0.0,11.5,23037.0,0.0,11.5,23037.0,22946.5,24729.0,25005.0,20400.25,21475.25,22019.25,2.7546274849E10,3.058225304E10,3.1618932362E10,0.37316140419690136,0.3832538094505156,0.41585539479759887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35627020163152223,0.363839814893839,0.3964810681853163,0.0,0.0,0.0,0.0,0.0,0.0,21615.0,22731.75,24174.25,17689.5,18855.75,18890.75,2.7683115051E10,2.8563658859E10,3.0723625446E10,0.5342561951670002,0.5453898893345851,0.5670131125747779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29067.5,30076.0,31617.5,-Infinity,-Infinity,-Infinity,NaN,1.0,1.0,0.1835911963390717,0.2598311967383223,0.2843998256963765 -8,4,80,Uncorrelated,0.3488265452966687,0.3702427885553691,0.37642738489505523,48229.5,51481.75,57545.5,49992.5,53641.25,60059.0,42072.5,43601.25,44113.5,36204.0,37534.0,38021.0,5.3052363294E10,5.6101754476E10,6.0184487365E10,0.41120111532864545,0.42678620493146224,0.45327716540029384,51.0,85.0,136.0,51.0,85.0,136.0,0.0,0.0,0.0,100.0,386.0,1156.0,1.376068376068376,1.5983935742971886,1.830188679245283,62.0,119.0,225.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3488265452966687,0.3702427885553691,0.37642738489505523,0.0,0.0,1433.75,0.0,0.0,1433.75,45896.5,47172.5,48701.75,39491.5,41137.25,42559.5,5.3032091471E10,5.4056667279E10,5.6097951679E10,0.37548711305201793,0.3806123342446029,0.40298484072839724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3488265452966687,0.3702427885553691,0.37642738489505523,0.0,0.0,0.0,0.0,0.0,0.0,50963.25,51800.5,56136.75,34892.75,35502.75,35553.75,5.6116880147E10,5.722560121E10,6.506630197E10,0.557705028137625,0.5724605251636881,0.5833028444873727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50747.75,54823.0,58136.5,-Infinity,-Infinity,-Infinity,NaN,NaN,NaN,-0.047083097112373025,0.06043452208018594,0.1305710598213238 -8,4,120,Uncorrelated,0.3496856489572705,0.36269130811435174,0.3726502952404856,70349.75,73444.5,78951.75,72247.25,76578.25,78951.75,61199.0,62730.25,65280.25,53252.0,54739.75,56704.0,7.8541063504E10,8.158133388E10,8.4693538109E10,0.4193313580955701,0.4319389539997544,0.447473796777012,113.0,237.0,362.0,113.0,237.0,362.0,0.0,0.0,0.0,455.0,1280.0,2931.0,1.341789052069426,1.528205128205128,1.7829977628635347,187.0,458.0,635.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3496856489572705,0.36269130811435174,0.3726502952404856,0.0,0.0,773.0,0.0,0.0,773.0,66809.0,70121.75,71646.25,57880.25,60641.25,62731.0,7.8533153004E10,8.0590318721E10,8.3637131273E10,0.3720320176723543,0.38720096167818124,0.40037254630676355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3496856489572705,0.36269130811435174,0.3726502952404856,0.0,0.0,0.0,0.0,0.0,0.0,97985.25,102587.5,104471.0,49380.75,49591.75,53110.0,1.06911128207E11,1.12281885033E11,1.20986146728E11,0.581738277579001,0.5886597903428397,0.589916249455093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75465.5,77266.0,80577.0,-Infinity,-Infinity,-Infinity,NaN,NaN,NaN,-0.41641055079156736,-0.3399925812092629,-0.27775926697209496 -8,4,160,Uncorrelated,0.3416721112150971,0.350154169742244,0.3627910731268021,93006.5,98051.25,105550.25,94243.0,100348.75,106235.0,82360.0,84915.0,87496.25,70662.0,73290.75,76741.5,1.04044295813E11,1.07074959473E11,1.13225541594E11,0.4108514783546336,0.42530373125189014,0.4433859317894445,184.0,360.0,611.0,184.0,360.0,611.0,0.0,0.0,0.0,1232.0,3462.0,8300.0,1.4580335731414868,1.7475728155339805,1.9377431906614786,377.0,608.0,1018.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3416721112150971,0.350154169742244,0.3627910731268021,0.0,0.0,91006.75,0.0,0.0,91006.75,92310.75,96366.5,100972.25,80524.0,83897.25,88387.5,1.07096758708E11,1.1117011E11,1.20338955888E11,0.36017048381808814,0.37124319244602066,0.3836325522613585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3416721112150971,0.350154169742244,0.3627910731268021,0.0,0.0,0.0,0.0,0.0,0.0,199219.5,203318.5,209213.75,65541.25,67106.0,70901.5,2.08171826341E11,2.15211993166E11,2.27796787337E11,0.5593028864778672,0.5734083698779053,0.584837794669109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99194.75,105544.75,109117.5,-Infinity,-Infinity,-Infinity,NaN,NaN,NaN,-1.01864867328362,-0.9251856451964829,-0.8802028825959901 -8,4,200,Uncorrelated,0.3569658571341407,0.3646799429571268,0.36951979520056627,117510.75,122646.5,131446.0,122550.0,126351.75,133138.25,101743.0,104792.5,108633.0,88086.5,90370.25,92714.0,1.26532893143E11,1.31598308455E11,1.42803100191E11,0.41411268068136187,0.4239923942835759,0.44355486330949806,320.0,477.0,933.0,320.0,477.0,933.0,0.0,0.0,0.0,2508.0,7136.0,17032.0,1.5866842452208305,1.7839506172839505,2.097069597069597,579.0,1164.0,1555.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3569658571341407,0.3646799429571268,0.36951979520056627,0.0,2394.75,121857.0,0.0,2394.75,121857.0,116773.5,122148.0,123930.75,101349.75,105966.5,108480.75,1.38646657631E11,1.46881129769E11,1.59147715005E11,0.3648660402738867,0.36970935729254806,0.3797376459728878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3569658571341407,0.3646799429571268,0.36951979520056627,0.0,0.0,0.0,0.0,0.0,0.0,373437.5,377119.0,428175.5,83580.25,86857.25,87728.0,3.85466657393E11,3.91597340384E11,4.3415806048E11,0.5613000661616395,0.5693364214699665,0.585938483362137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125716.0,128769.0,133612.5,-Infinity,-Infinity,-Infinity,NaN,NaN,NaN,-2.287731993757242,-1.9777605691266236,-1.898149011019733 -8,4,240,Uncorrelated,0.3436099608121831,0.3501457544286275,0.3619202168148625,139606.5,145195.75,157253.5,139606.5,145195.75,157253.5,123903.75,127543.0,132356.5,108227.0,110342.75,114741.5,1.56071976712E11,1.58169960164E11,1.6319227559E11,0.4137481079388277,0.42837999481384204,0.4372154128911937,672.0,927.0,1654.0,672.0,927.0,1654.0,0.0,0.0,0.0,3921.0,8091.0,19321.0,1.5851851851851853,1.749730312837109,1.9598705501618123,1118.0,1622.0,3028.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,158045.25,162963.25,180789.25,0.18804998683672497,0.24596838061620027,0.2992294728591025,1.0,1.0,1.0,0.1621533255029085,0.247315810022507,0.2946468515063232 -8,4,280,Uncorrelated,0.33775809941394774,0.35670312882980965,0.3605179755234192,156815.25,162670.5,173661.0,159997.0,164680.25,177090.0,146828.0,148185.25,154527.5,127285.0,130254.75,133641.25,1.75354681118E11,1.81562067404E11,1.90822172066E11,0.39741525254655624,0.4195972030838961,0.4300606112711172,737.0,901.0,1501.0,737.0,901.0,1501.0,0.0,0.0,0.0,3034.0,6839.0,25620.0,1.4551656920077973,1.56651376146789,1.7843833185448092,1104.0,1859.0,2732.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33775809941394774,0.35670312882980965,0.3605179755234192,0.0,0.0,161521.75,0.0,0.0,161521.75,169835.0,172634.5,180291.0,147224.75,151253.75,158099.25,1.93805846904E11,2.0400806545E11,2.07019088786E11,0.3497614237200705,0.3626270428026654,0.3685853071400937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33775809941394774,0.35670312882980965,0.3605179755234192,0.0,0.0,0.0,0.0,0.0,0.0,1091102.5,1106485.75,1110411.5,113103.25,115781.5,115781.5,1.105860136745E12,1.123644448148E12,1.1307793804E12,0.5800641934975426,0.5800641934975426,0.5820769182536923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,170092.0,173660.5,178749.5,-Infinity,-Infinity,-Infinity,NaN,NaN,NaN,-5.564449378008905,-5.354670729093658,-5.159439865097239 -8,4,320,Uncorrelated,0.3330563397477905,0.33537112572352634,0.3461003705152579,181884.25,187226.25,199074.0,181894.5,188424.0,199074.0,171920.25,176196.5,178754.5,149929.5,153994.5,156552.0,2.05024365863E11,2.19418059761E11,2.25381141208E11,0.3778383536863403,0.39677400064285767,0.40275158035845543,69.0,955.0,1401.0,69.0,955.0,1401.0,0.0,0.0,0.0,2435.0,4315.0,15586.0,1.5322128851540617,1.910071942446043,2.34375,152.0,1504.0,2124.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3330563397477905,0.33537112572352634,0.3461003705152579,0.0,0.0,186282.5,0.0,0.0,186282.5,201458.25,202427.25,214969.0,174300.0,176013.25,187194.5,2.29441966519E11,2.33583004178E11,2.52971109932E11,0.33759371893166024,0.342085001731729,0.35146748460754534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3330563397477905,0.33537112572352634,0.3461003705152579,0.0,0.0,0.0,0.0,0.0,0.0,1765061.0,1773895.75,1779698.75,125084.0,131598.5,131598.5,1.78534183864E12,1.789037690633E12,1.800964480281E12,0.549385423077594,0.549385423077594,0.5569209151724348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200945.5,205533.75,210882.75,-Infinity,-Infinity,-Infinity,NaN,NaN,NaN,-7.91549963485128,-7.6306786598308065,-7.369869038600834 +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatioOpen,InitialLocalAvailabilityRatioMean,InitialLocalAvailabilityRatioClose,InitialGlobalFlowtimeOpen,InitialGlobalFlowtimeMean,InitialGlobalFlowtimeClose,InitialSimulatedFlowtimeOpen,InitialSimulatedFlowtimeMean,InitialSimulatedFlowtimeCloseDecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatioOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatioMean,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatioClose,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDealsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDealsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDealsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegationsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegationsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegationsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwapsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwapsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwapsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeoutsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeoutsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeoutsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSizeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSizeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSizeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasksOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasksMean,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasksClose,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStagesOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStagesMean,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStagesClose,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStagesOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStagesMean,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStagesClose,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtimeClose,PSI00MeanRealFlowtimeOpen,PSI00MeanRealFlowtimeMean,PSI00MeanRealFlowtimeClose,PSI01MeanGlobalFlowtimeOpen,PSI01MeanGlobalFlowtimeMean,PSI01MeanGlobalFlowtimeClose,PSI02SolvingTimeOpen,PSI02SolvingTimeMean,PSI02SolvingTimeClose,PSI03LocalRatioOpen,PSI03LocalRatioMean,PSI03LocalRatioClose,PSI04NbDealsOpen,PSI04NbDealsMean,PSI04NbDealsClose,PSI05NbDelegationsOpen,PSI05NbDelegationsMean,PSI05NbDelegationsClose,PSI06NbSwapsOpen,PSI06NbSwapsMean,PSI06NbSwapsClose,PSI07NbTimeoutsOpen,PSI07NbTimeoutsMean,PSI07NbTimeoutsClose,PSI08EndowmentSizeOpen,PSI08EndowmentSizeMean,PSI08EndowmentSizeClose,PSI09NbDelegatedTasksOpen,PSI09NbDelegatedTasksMean,PSI09NbDelegatedTasksClose,PSI10NbFirstStagesOpen,PSI10NbFirstStagesMean,PSI10NbFirstStagesClose,PSI11NbSecondStagesOpen,PSI11NbSecondStagesMean,PSI11NbSecondStagesClose,PSI12MeanSimulatedFlowtimeOpen,PSI12MeanSimulatedFlowtimeMean,PSI12MeanSimulatedFlowtimeClose,SSI00MeanRealFlowtimeOpen,SSI00MeanRealFlowtimeMean,SSI00MeanRealFlowtimeClose,SSI01MeanGlobalFlowtimeOpen,SSI01MeanGlobalFlowtimeMean,SSI01MeanGlobalFlowtimeClose,SSI02SolvingTimeOpen,SSI02SolvingTimeMean,SSI02SolvingTimeClose,SSI03LocalRatioOpen,SSI03LocalRatioMean,SSI03LocalRatioClose,SSI04NbDealsOpen,SSI04NbDealsMean,SSI04NbDealsClose,SSI05NbDelegationsOpen,SSI05NbDelegationsMean,SSI05NbDelegationsClose,SSI06NbSwapsOpen,SSI06NbSwapsMean,SSI06NbSwapsClose,SSI07NbTimeoutsOpen,SSI07NbTimeoutsMean,SSI07NbTimeoutsClose,SSI08EndowmentSizeOpen,SSI08EndowmentSizeMean,SSI08EndowmentSizeClose,SSI09NbDelegatedTasksOpen,SSI09NbDelegatedTasksMean,SSI09NbDelegatedTasksClose,SSI10NbFirstStagesOpen,SSI10NbFirstStagesMean,SSI10NbFirstStagesClose,SSI11NbSecondStagesOpen,SSI11NbSecondStagesMean,SSI11NbSecondStagesClose,SSI12MeanSimulatedFlowtimeOpen,SSI12MeanSimulatedFlowtimeMean,SSI12MeanSimulatedFlowtimeClose,Consumer00MeanRealFlowtimeOpen,Consumer00MeanRealFlowtimeMean,Consumer00MeanRealFlowtimeClose,Consumer01MeanGlobalFlowtimeOpen,Consumer01MeanGlobalFlowtimeMean,Consumer01MeanGlobalFlowtimeClose,Consumer02SolvingTimeOpen,Consumer02SolvingTimeMean,Consumer02SolvingTimeClose,Consumer03LocalRatioOpen,Consumer03LocalRatioMean,Consumer03LocalRatioClose,Consumer04NbDealsOpen,Consumer04NbDealsMean,Consumer04NbDealsClose,Consumer05NbDelegationsOpen,Consumer05NbDelegationsMean,Consumer05NbDelegationsClose,Consumer06NbSwapsOpen,Consumer06NbSwapsMean,Consumer06NbSwapsClose,Consumer07NbTimeoutsOpen,Consumer07NbTimeoutsMean,Consumer07NbTimeoutsClose,Consumer08EndowmentSizeOpen,Consumer08EndowmentSizeMean,Consumer08EndowmentSizeClose,Consumer09NbDelegatedTasksOpen,Consumer09NbDelegatedTasksMean,Consumer09NbDelegatedTasksClose,Consumer10NbFirstStagesOpen,Consumer10NbFirstStagesMean,Consumer10NbFirstStagesClose,Consumer11NbSecondStagesOpen,Consumer11NbSecondStagesMean,Consumer11NbSecondStagesClose,Consumer12MeanSimulatedFlowtimeOpen,Consumer12MeanSimulatedFlowtimeMean,Consumer12MeanSimulatedFlowtimeClose, diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocations040-320tasksDetailed8-40.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocations040-320tasksDetailed8-40.csv index c328c68d7d020e3117bda52003a182f135eac797..644998e041052aa81d1cbef3bf7d391134ea5e5e 100644 --- a/experiments/consumer/data/consumption4jobs8nodes5staps5allocations040-320tasksDetailed8-40.csv +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocations040-320tasksDetailed8-40.csv @@ -1,26 +1,8 @@ -m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,A,B,C,D,E,F,Consumer00MeanRealFlowtime,GammaTheoretical,GammaSimulated,GammaReal -8,4,40,Uncorrelated,0.40579653190548703,31255.5,33849.75,21439.5,19006.25,3.3696089976E10,0.43836518151004567,33.0,33.0,0.0,105.0,1.5454545454545454,51.0,1.0,0.0,0.0,0.40579653190548703,30623.25,30623.25,24484.75,21475.25,2.7546274849E10,0.40784987964827824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.40579653190548703,442.0,442.0,21326.25,17117.5,2.769915082E10,0.5580291791521343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31109.0,-37.727375565610856, 1.0, 0.31446687453791505 -8,4,40,Uncorrelated,0.3319655667144907,27740.75,29768.5,24511.0,21638.25,3.3704618272E10,0.40598756575801054,33.0,33.0,0.0,180.0,1.1818181818181819,39.0,1.0,0.0,0.0,0.3319655667144907,27105.5,27105.5,24496.0,21533.5,2.6542314422E10,0.3593687230989957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3319655667144907,258.0,258.0,22308.25,18254.75,3.0723625446E10,0.5436059301769488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30334.25,-69.75484496124031, 1.0, 0.2645854108804404 -8,4,40,Uncorrelated,0.38852223816355813,31507.5,35551.75,24229.5,20995.25,3.8767142346E10,0.41281683405069347,35.0,35.0,0.0,861.0,1.6,56.0,1.0,0.0,0.0,0.38852223816355813,0.0,0.0,25242.5,21603.5,3.3657983606E10,0.3863318986131038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38852223816355813,0.0,0.0,22898.5,18254.75,3.1314009879E10,0.5436059301769488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29067.5,-Infinity, NaN, 0.21223015395200825 -8,4,40,Uncorrelated,0.3905544109029734,28564.75,31747.75,22696.75,19523.0,3.1619657231E10,0.43871803111354746,84.0,84.0,0.0,1211.0,1.1666666666666667,98.0,1.0,0.0,0.0,0.3905544109029734,378.5,378.5,25489.5,22424.0,3.058225304E10,0.387851350585033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3905544109029734,0.0,0.0,25381.5,20728.25,3.1756785098E10,0.5127970058408786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29835.0,-Infinity, NaN, 0.14927099044746103 -8,4,40,Uncorrelated,0.41890819046178857,28413.25,31439.0,21932.25,18687.75,2.9584291417E10,0.45896262971854146,35.0,35.0,0.0,0.0,1.2571428571428571,44.0,1.0,0.0,0.0,0.41890819046178857,0.0,0.0,23456.25,20400.25,3.263668614E10,0.43627960607148936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41890819046178857,0.0,0.0,26345.5,20728.25,3.2721496848E10,0.5127970058408786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29072.0,-Infinity, NaN, 0.09378439735828288 -8,4,40,Uncorrelated,0.4166209855773775,30830.25,35777.5,21418.0,18277.25,2.8559716773E10,0.48069107612044687,59.0,59.0,0.0,1189.0,1.423728813559322,84.0,1.0,0.0,0.0,0.4166209855773775,467.0,467.0,22440.75,19563.0,2.8561808492E10,0.42630852692663934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4166209855773775,0.0,0.0,26292.25,20728.25,3.2663012309E10,0.5127970058408786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30340.75,-Infinity, NaN, 0.13343440752123795 -8,4,40,Uncorrelated,0.4265259059032569,32306.25,36528.0,22945.5,19677.75,2.7538381202E10,0.4806532710810351,24.0,24.0,0.0,106.0,1.4166666666666667,34.0,1.0,0.0,0.0,0.4265259059032569,0.0,0.0,30850.25,27283.25,3.4676704778E10,0.4208929550309056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4265259059032569,0.0,0.0,26225.5,20728.25,3.2601011636E10,0.5127970058408786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32123.0,-Infinity, NaN, 0.1835911963390717 -8,4,40,Uncorrelated,0.36733900410609466,38971.25,39160.5,22692.5,19632.5,2.9579703907E10,0.43843228736972867,109.0,109.0,0.0,299.0,1.5779816513761469,172.0,1.0,0.0,0.0,0.36733900410609466,38905.25,38905.25,27029.25,23389.75,3.3660300399E10,0.3356945748342864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36733900410609466,9314.25,9314.25,24227.75,18890.75,2.8563658859E10,0.5453898893345851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39267.0,-1.0281557828059156, 1.0, 0.3829997198665546 -8,4,40,Uncorrelated,0.3623035854835804,28286.75,30247.75,22952.25,19518.5,3.2644350158E10,0.40640854219415284,16.0,16.0,0.0,460.0,1.125,18.0,1.0,0.0,0.0,0.3623035854835804,0.0,0.0,22686.5,19559.5,3.1611906019E10,0.37921159189401915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3623035854835804,0.0,0.0,23330.25,18890.75,2.766581743E10,0.5453898893345851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28301.0,-Infinity, NaN, 0.17563867001166036 -8,4,40,Uncorrelated,0.363839814893839,29521.75,31187.5,23452.25,19961.0,2.9563713724E10,0.400292073245901,11.0,11.0,0.0,120.0,1.4545454545454546,16.0,1.0,0.0,0.0,0.363839814893839,11.5,11.5,22690.5,20529.75,3.0595945811E10,0.37408134429556295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.363839814893839,0.0,0.0,23347.0,18890.75,2.7683115051E10,0.5453898893345851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32881.75,-Infinity, NaN, 0.28997088050362285 -8,4,40,Uncorrelated,0.34526281850682294,31579.5,32857.5,23200.0,19955.0,3.059404546E10,0.41214569523863714,9.0,9.0,0.0,52.0,1.8888888888888888,17.0,1.0,0.0,0.0,0.34526281850682294,0.0,0.0,24729.0,21461.0,2.9574559119E10,0.34585075815766264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34526281850682294,0.0,0.0,24244.0,18890.75,2.8581743739E10,0.5453898893345851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33399.75,-Infinity, NaN, 0.27412630334059385 -8,4,40,Uncorrelated,0.4136060614681422,33424.0,34760.75,22436.0,19714.5,3.2638021457E10,0.4614472798308251,86.0,86.0,0.0,1024.0,1.5116279069767442,130.0,1.0,0.0,0.0,0.4136060614681422,0.0,0.0,23963.0,20753.25,2.9574040498E10,0.37981849734004725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4136060614681422,0.0,0.0,24174.25,18890.75,2.8509825939E10,0.5453898893345851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33657.75,-Infinity, NaN, 0.28176274409311375 -8,4,40,Uncorrelated,0.34551857046282375,27059.0,30685.25,21677.0,18752.75,2.9585030146E10,0.4181154082878447,71.0,71.0,0.0,981.0,1.591549295774648,113.0,1.0,0.0,0.0,0.34551857046282375,26997.0,26997.0,24981.5,21978.5,2.5490004731E10,0.4120614676770021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34551857046282375,493.75,493.75,22614.0,18519.0,3.0774829112E10,0.5333319880131976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31872.0,-36.50683544303797, 1.0, 0.2904743975903614 -8,4,40,Uncorrelated,0.3495940434046483,24809.0,28402.5,22463.75,19641.75,3.2677132503E10,0.37594274280437123,6.0,6.0,0.0,327.0,1.6666666666666667,10.0,1.0,0.0,0.0,0.3495940434046483,24157.75,24157.75,25005.0,21997.0,3.1636372929E10,0.382686239802986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3495940434046483,0.0,0.0,23173.75,19313.75,2.9548929994E10,0.5342561951670002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28049.5,-Infinity, NaN, 0.17382662792563147 -8,4,40,Uncorrelated,0.35888679390487915,27774.75,29744.25,23461.0,20373.75,3.2642275872E10,0.41115130060027705,49.0,49.0,0.0,134.0,1.2448979591836735,61.0,1.0,0.0,0.0,0.35888679390487915,324.75,324.75,25244.5,22576.75,3.1618932362E10,0.37193127597352627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35888679390487915,0.0,0.0,21615.0,17689.5,2.442013911E10,0.538575496382946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29834.75,-Infinity, NaN, 0.27550926352659233 -8,4,40,Uncorrelated,0.414056487609666,21648.0,24664.25,21420.75,18667.0,2.8562986357E10,0.4630406341388333,6.0,6.0,0.0,219.0,1.1666666666666667,7.0,1.0,0.0,0.0,0.414056487609666,0.0,0.0,24729.5,21723.75,3.0595041302E10,0.41585539479759887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414056487609666,0.0,0.0,22360.0,17689.5,2.516511476E10,0.538575496382946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26770.0,-Infinity, NaN, 0.16473664549869257 -8,4,40,Uncorrelated,0.3964810681853163,29870.25,32207.5,22695.0,19532.25,3.1622173346E10,0.4980664152685855,127.0,127.0,0.0,26.0,1.220472440944882,155.0,1.0,0.0,0.0,0.3964810681853163,1222.0,1222.0,24737.25,21450.25,3.0602889012E10,0.4256291365245498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3964810681853163,0.0,0.0,22381.0,17689.5,2.5183936176E10,0.538575496382946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31617.5,-Infinity, NaN, 0.29213252154661185 -8,4,40,Uncorrelated,0.35627020163152223,29462.5,30297.25,23201.25,19979.25,3.059765765E10,0.44458019085731876,40.0,40.0,0.0,411.0,1.4,56.0,1.0,0.0,0.0,0.35627020163152223,0.0,0.0,24986.75,22030.5,2.8556774005E10,0.3832538094505156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35627020163152223,0.0,0.0,23988.0,19313.75,3.0363766826E10,0.5342561951670002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29805.0,-Infinity, NaN, 0.19516859587317564 -8,4,40,Uncorrelated,0.3620057606703325,23102.0,25431.25,21674.25,19481.0,2.5500340796E10,0.3882611235321369,12.0,12.0,0.0,2.0,1.1666666666666667,14.0,1.0,0.0,0.0,0.3620057606703325,23037.0,23037.0,23199.25,19980.25,2.5497310816E10,0.4174068926621951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3620057606703325,445.0,445.0,20561.25,16365.25,2.8467553168E10,0.5670131125747779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27279.0,-35.77584269662921, 1.0, 0.2462608600021995 -8,4,40,Uncorrelated,0.378280661469978,26384.75,30305.25,23963.5,20531.75,3.2635970725E10,0.43753902552017243,224.0,224.0,0.0,22.0,1.1741071428571428,263.0,1.0,0.0,0.0,0.378280661469978,0.0,0.0,22434.0,19408.75,2.7534721517E10,0.43397385541926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.378280661469978,0.0,0.0,20559.25,16365.25,2.8464883357E10,0.5670131125747779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25998.75,-Infinity, NaN, 0.2092215971921727 -8,4,40,Uncorrelated,0.3446733941627893,30314.75,31535.75,22440.0,19599.25,3.3662102715E10,0.38206739581445004,122.0,122.0,0.0,28.0,1.2295081967213115,150.0,1.0,0.0,0.0,0.3446733941627893,0.0,0.0,25491.75,23042.0,3.0591991423E10,0.37314439946018896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3446733941627893,0.0,0.0,20715.75,16365.25,2.8620582386E10,0.5670131125747779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28300.25,-Infinity, NaN, 0.26800116606743757 -8,4,40,Uncorrelated,0.35983040264265714,27097.75,28267.75,24219.75,21091.0,3.2635015353E10,0.39271255060728744,6.0,6.0,0.0,382.0,1.5,9.0,1.0,0.0,0.0,0.35983040264265714,0.0,0.0,21670.0,18941.75,2.7535504264E10,0.3915543738795899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35983040264265714,0.0,0.0,21348.5,16365.25,2.925373983E10,0.5670131125747779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29833.0,-Infinity, NaN, 0.2843998256963765 -8,4,40,Uncorrelated,0.3868612403569199,33242.0,34573.75,21421.0,18483.5,2.6522349517E10,0.45619070638709286,36.0,36.0,0.0,1029.0,1.8333333333333333,66.0,1.0,0.0,0.0,0.3868612403569199,2677.0,2677.0,22946.5,20717.75,3.4676826594E10,0.3478860756944025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3868612403569199,0.0,0.0,20541.25,16365.25,2.8445838864E10,0.5670131125747779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31365.0,-Infinity, NaN, 0.3450900685477443 -8,4,40,Uncorrelated,0.34426358109433225,29842.75,29867.0,24473.0,21285.75,2.6514426346E10,0.3580604040007845,6.0,6.0,0.0,70.0,1.3333333333333333,8.0,1.0,0.0,0.0,0.34426358109433225,29792.75,29792.75,22944.25,19711.25,2.7535004045E10,0.37316140419690136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34426358109433225,3273.75,3273.75,22731.75,18855.75,2.7574927374E10,0.5808786036477741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30076.0,-4.759679266895762, 1.0, 0.2441897193775768 -8,4,40,Uncorrelated,0.3617277897626986,29320.5,29860.25,21663.75,19124.5,3.1605682617E10,0.40100019611688564,44.0,44.0,0.0,322.0,1.2727272727272727,56.0,1.0,0.0,0.0,0.3617277897626986,0.0,0.0,24729.5,22019.25,2.8554460006E10,0.3755442243577172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3617277897626986,0.0,0.0,22647.5,18855.75,2.7493386404E10,0.5808786036477741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30597.75,-Infinity, NaN, 0.2598311967383223 +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,Consumer00MeanRealFlowtime,Consumer01MeanGlobalFlowtime,Consumer02SolvingTime,Consumer03LocalRatio,Consumer04NbDeals,Consumer05NbDelegations,Consumer06NbSwaps,Consumer07NbTimeouts,Consumer08EndowmentSize,Consumer09NbDelegatedTasks,Consumer10NbFirstStages,Consumer11NbSecondStages,Consumer12MeanSimulatedFlowtime, +8,4,40,Uncorrelated,0.3583515948380813,30350.75,32707.5,22450.0,19669.0,2.7557180875E10,0.42893231068906745,11403.0,11403.0,0.0,259736.0,1.3333333333333333,15204.0,1.0,0.0,0.0,25241.25,22007.25,2.8559217875E10,0.3913541920298677,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21296.75,17469.25,2.5122681333E10,0.5891364337310283,0.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,0.0,29831.5,26330.0,3.9779757209E10,0.3583515948380813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8,4,40,Uncorrelated,0.31302248194140087,28087.25,29342.0,23452.0,20881.0,3.4675454166E10,0.35820956091226364,20.0,20.0,0.0,904.0,1.2,24.0,1.0,0.0,0.0,23197.5,20445.25,2.8555490291E10,0.32100681762843924,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21323.75,17469.25,2.5151160458E10,0.5891364337310283,0.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,0.0,27794.75,24107.75,3.9779829292E10,0.31302248194140087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8,4,40,Uncorrelated,0.347475854232611,32395.25,33326.75,22432.75,19457.25,2.8551900667E10,0.45291575359142927,213.0,213.0,0.0,1720.0,1.1314553990610328,241.0,1.0,0.0,0.0,23459.75,20355.5,2.9583429333E10,0.373599951302654,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21344.25,17469.25,2.5171668125E10,0.5891364337310283,0.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,0.0,31619.0,27225.75,4.7945175917E10,0.347475854232611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8,4,40,Uncorrelated,0.35480074669263856,26383.0,29141.25,21670.0,19190.0,3.0598684292E10,0.35929510591672753,36.0,36.0,0.0,32.0,1.2222222222222223,44.0,1.0,0.0,0.0,24476.0,20974.75,3.365914975E10,0.39279482184887593,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21348.25,17469.25,2.5177773542E10,0.5891364337310283,0.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,0.0,25241.0,22064.25,3.3656252291E10,0.35480074669263856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8,4,40,Uncorrelated,0.39196290885480073,25129.0,27354.75,21416.25,18443.25,2.9580867833E10,0.45084611638665695,20.0,20.0,0.0,7.0,1.0,20.0,1.0,0.0,0.0,24224.75,21230.0,3.26432685E10,0.4163318724129535,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21359.5,17469.25,2.5186428208E10,0.5891364337310283,0.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,0.0,29579.5,25567.0,3.2642694125E10,0.39196290885480073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8,4,40,Uncorrelated,0.3742267510678812,27649.25,29771.75,22692.0,19075.25,2.9580158709E10,0.4234367762853173,34.0,34.0,0.0,41.0,2.235294117647059,76.0,1.0,0.0,0.0,22181.75,18929.75,2.6517206791E10,0.3541042663784674,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21339.25,17752.25,2.211224525E10,0.5969533220112192,0.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,0.0,28816.5,24954.25,3.7745265334E10,0.3742267510678812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8,4,40,Uncorrelated,0.40441562451752355,22567.25,25473.0,21415.25,18486.75,2.5491885542E10,0.42596881272193915,11.0,11.0,0.0,306.0,1.0,11.0,1.0,0.0,0.0,21674.5,19211.25,2.6522717334E10,0.4264628686120117,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21356.75,17752.25,2.2128238916E10,0.5969533220112192,0.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,0.0,25752.75,22460.0,3.1613998208E10,0.40441562451752355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, diff --git a/experiments/jobRelease/figures/monitor.svg b/experiments/jobRelease/figures/monitor.svg index ee7c05813b00b57453f1c71641161598dfaa8c84..d4dfdeb8c03421f3421c0a6777501ef05b785416 100644 --- a/experiments/jobRelease/figures/monitor.svg +++ b/experiments/jobRelease/figures/monitor.svg @@ -162,7 +162,7 @@ <path stroke='black' d='M72.53,123.01 L72.53,422.40 L506.48,422.40 L506.48,123.01 L72.53,123.01 Z '/></g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g transform="translate(20.48,272.71) rotate(270)" stroke="none" fill="rgb(0,0,0)" font-family="Arial" font-size="16.00" text-anchor="middle"> - <text><tspan font-family="Arial" >Mean flowtime (mn)</tspan></text> + <text><tspan font-family="Arial" >Mean flowtime (mins)</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> @@ -177,14 +177,274 @@ </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> - <g id="gnuplot_plot_1" ><title>MASTA+ delegated tasks</title> + <g id="gnuplot_plot_1" ><title>Consumption</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g transform="translate(221.76,24.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >Consumption</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb(252, 83, 92)' d='M231.55,19.50 L279.71,19.50 M72.53,340.21 L109.56,339.66 L141.65,339.26 L169.44,338.98 L193.48,338.81 L214.28,338.73 + L232.27,338.72 L247.83,338.77 L261.29,338.85 L272.94,338.96 L283.03,339.08 L291.78,339.20 L299.39,339.30 L306.03,339.37 + L311.82,339.41 L316.91,339.40 L321.40,339.33 L325.37,339.19 L328.92,338.99 L332.11,338.71 L334.99,338.36 L337.62,337.92 + L340.04,337.40 L342.29,336.81 L344.39,336.13 L346.37,335.37 L348.26,334.54 L350.06,333.64 L351.80,332.68 L353.48,331.65 + L355.12,330.58 L356.72,329.45 L358.28,328.29 L359.82,327.09 L361.34,325.86 L362.83,324.62 L364.31,323.36 L365.77,322.08 + L367.21,320.81 L368.64,319.53 L370.05,318.26 L371.45,317.00 L372.83,315.75 L374.20,314.51 L375.55,313.28 L376.89,312.07 + L378.22,310.87 L379.53,309.69 L380.83,308.53 L382.12,307.37 L383.40,306.23 L384.67,305.09 L385.92,303.97 L387.17,302.84 + L388.41,301.72 L389.64,300.59 L390.86,299.46 L392.07,298.32 L393.28,297.16 L394.48,295.99 L395.68,294.80 L396.87,293.59 + L398.06,292.36 L399.25,291.09 L400.43,289.79 L401.61,288.46 L402.78,287.10 L403.96,285.69 L405.14,284.25 L406.31,282.76 + L407.48,281.22 L408.65,279.64 L409.82,278.01 L410.99,276.33 L412.16,274.60 L413.33,272.81 L414.50,270.96 L415.67,269.05 + L416.84,267.08 L418.01,265.04 L419.18,262.93 L420.35,260.75 L421.52,258.48 L422.69,256.13 L423.85,253.68 L425.02,251.13 + L426.19,248.48 L427.36,245.70 L428.53,242.79 L429.70,239.74 L430.87,236.54 L432.04,233.17 L433.21,229.60 L434.37,225.84 + L435.54,221.86 L436.71,217.64 L437.88,213.15 L439.05,208.39 L440.22,203.33 L441.39,197.95 '/></g> + </g> + <g id="gnuplot_plot_2" fill="none"><title>gnuplot_plot_2</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb(255, 105, 65)' fill-opacity = '0.300000' points = '72.53,331.71 109.56,331.36 141.65,331.12 169.44,330.98 193.48,330.94 214.28,330.98 232.27,331.10 247.83,331.28 261.29,331.50 272.94,331.76 283.03,332.04 291.78,332.32 299.39,332.59 306.03,332.85 311.82,333.06 316.91,333.24 +321.40,333.36 325.37,333.41 328.92,333.40 332.11,333.30 334.99,333.13 337.62,332.87 340.04,332.52 342.29,332.09 344.39,331.57 346.37,330.97 348.26,330.28 350.06,329.52 351.80,328.68 353.48,327.77 355.12,326.80 356.72,325.78 +358.28,324.70 359.82,323.58 361.34,322.43 362.83,321.24 364.31,320.03 365.77,318.79 367.21,317.54 368.64,316.28 370.05,315.01 371.45,313.75 372.83,312.48 374.20,311.21 375.55,309.94 376.89,308.69 378.22,307.43 379.53,306.19 +380.83,304.94 382.12,303.71 383.40,302.47 384.67,301.24 385.92,300.01 387.17,298.77 388.41,297.53 389.64,296.29 390.86,295.03 392.07,293.76 393.28,292.48 394.48,291.18 395.68,289.86 396.87,288.52 398.06,287.15 399.25,285.76 +400.43,284.33 401.61,282.88 402.78,281.39 403.96,279.86 405.14,278.30 406.31,276.69 407.48,275.04 408.65,273.34 409.82,271.59 410.99,269.79 412.16,267.93 413.33,266.01 414.50,264.03 415.67,261.98 416.84,259.85 418.01,257.65 +419.18,255.36 420.35,252.98 421.52,250.50 422.68,247.92 423.85,245.24 425.02,242.44 426.19,239.52 427.36,236.47 428.53,233.30 429.70,230.00 430.87,226.58 432.04,223.04 433.21,219.38 434.37,215.64 435.54,211.82 436.71,207.96 +437.88,204.10 439.05,200.30 440.22,196.63 441.39,193.17 434.16,245.78 433.06,247.42 431.96,249.15 430.87,250.95 429.77,252.80 428.68,254.68 427.58,256.59 426.48,258.51 425.39,260.42 424.29,262.33 423.20,264.22 422.10,266.09 +421.00,267.93 419.91,269.73 418.81,271.50 417.72,273.23 416.62,274.92 415.53,276.56 414.43,278.16 413.33,279.72 412.24,281.23 411.14,282.69 410.04,284.11 408.95,285.49 407.85,286.83 406.75,288.12 405.65,289.38 404.56,290.60 +403.46,291.78 402.35,292.93 401.25,294.05 400.15,295.15 399.04,296.22 397.93,297.27 396.82,298.30 395.70,299.31 394.58,300.32 393.46,301.31 392.33,302.29 391.20,303.27 390.06,304.25 388.91,305.23 387.76,306.21 386.59,307.19 +385.42,308.19 384.24,309.19 383.06,310.21 381.86,311.24 380.65,312.28 379.42,313.34 378.19,314.42 376.95,315.51 375.69,316.61 374.42,317.73 373.14,318.87 371.84,320.02 370.54,321.17 369.22,322.34 367.89,323.51 366.54,324.68 +365.18,325.85 363.80,327.02 362.42,328.18 361.01,329.32 359.59,330.45 358.14,331.55 356.67,332.62 355.18,333.66 353.65,334.67 352.08,335.63 350.47,336.54 348.81,337.41 347.07,338.22 345.26,338.98 343.35,339.67 341.33,340.31 +339.17,340.88 336.84,341.39 334.31,341.84 331.55,342.22 328.51,342.55 325.14,342.81 321.39,343.02 317.18,343.17 312.44,343.28 307.08,343.34 300.99,343.37 294.07,343.36 286.18,343.32 277.16,343.26 266.84,343.19 255.03,343.12 +241.50,343.05 226.00,342.99 208.24,342.95 187.89,342.96 164.59,343.02 137.92,343.15 107.41,343.38 72.53,343.72 '/> + </g> + <path stroke='rgb(252, 83, 92)' d='M72.53,331.71 L109.56,331.36 L141.65,331.12 L169.44,330.98 L193.48,330.94 L214.28,330.98 L232.27,331.10 L247.83,331.28 + L261.29,331.50 L272.94,331.76 L283.03,332.04 L291.78,332.32 L299.39,332.59 L306.03,332.85 L311.82,333.06 L316.91,333.24 + L321.40,333.36 L325.37,333.41 L328.92,333.40 L332.11,333.30 L334.99,333.13 L337.62,332.87 L340.04,332.52 L342.29,332.09 + L344.39,331.57 L346.37,330.97 L348.26,330.28 L350.06,329.52 L351.80,328.68 L353.48,327.77 L355.12,326.80 L356.72,325.78 + L358.28,324.70 L359.82,323.58 L361.34,322.43 L362.83,321.24 L364.31,320.03 L365.77,318.79 L367.21,317.54 L368.64,316.28 + L370.05,315.01 L371.45,313.75 L372.83,312.48 L374.20,311.21 L375.55,309.94 L376.89,308.69 L378.22,307.43 L379.53,306.19 + L380.83,304.94 L382.12,303.71 L383.40,302.47 L384.67,301.24 L385.92,300.01 L387.17,298.77 L388.41,297.53 L389.64,296.29 + L390.86,295.03 L392.07,293.76 L393.28,292.48 L394.48,291.18 L395.68,289.86 L396.87,288.52 L398.06,287.15 L399.25,285.76 + L400.43,284.33 L401.61,282.88 L402.78,281.39 L403.96,279.86 L405.14,278.30 L406.31,276.69 L407.48,275.04 L408.65,273.34 + L409.82,271.59 L410.99,269.79 L412.16,267.93 L413.33,266.01 L414.50,264.03 L415.67,261.98 L416.84,259.85 L418.01,257.65 + L419.18,255.36 L420.35,252.98 L421.52,250.50 L422.68,247.92 L423.85,245.24 L425.02,242.44 L426.19,239.52 L427.36,236.47 + L428.53,233.30 L429.70,230.00 L430.87,226.58 L432.04,223.04 L433.21,219.38 L434.37,215.64 L435.54,211.82 L436.71,207.96 + L437.88,204.10 L439.05,200.30 L440.22,196.63 L441.39,193.17 L434.16,245.78 L433.06,247.42 L431.96,249.15 L430.87,250.95 + L429.77,252.80 L428.68,254.68 L427.58,256.59 L426.48,258.51 L425.39,260.42 L424.29,262.33 L423.20,264.22 L422.10,266.09 + L421.00,267.93 L419.91,269.73 L418.81,271.50 L417.72,273.23 L416.62,274.92 L415.53,276.56 L414.43,278.16 L413.33,279.72 + L412.24,281.23 L411.14,282.69 L410.04,284.11 L408.95,285.49 L407.85,286.83 L406.75,288.12 L405.65,289.38 L404.56,290.60 + L403.46,291.78 L402.35,292.93 L401.25,294.05 L400.15,295.15 L399.04,296.22 L397.93,297.27 L396.82,298.30 L395.70,299.31 + L394.58,300.32 L393.46,301.31 L392.33,302.29 L391.20,303.27 L390.06,304.25 L388.91,305.23 L387.76,306.21 L386.59,307.19 + L385.42,308.19 L384.24,309.19 L383.06,310.21 L381.86,311.24 L380.65,312.28 L379.42,313.34 L378.19,314.42 L376.95,315.51 + L375.69,316.61 L374.42,317.73 L373.14,318.87 L371.84,320.02 L370.54,321.17 L369.22,322.34 L367.89,323.51 L366.54,324.68 + L365.18,325.85 L363.80,327.02 L362.42,328.18 L361.01,329.32 L359.59,330.45 L358.14,331.55 L356.67,332.62 L355.18,333.66 + L353.65,334.67 L352.08,335.63 L350.47,336.54 L348.81,337.41 L347.07,338.22 L345.26,338.98 L343.35,339.67 L341.33,340.31 + L339.17,340.88 L336.84,341.39 L334.31,341.84 L331.55,342.22 L328.51,342.55 L325.14,342.81 L321.39,343.02 L317.18,343.17 + L312.44,343.28 L307.08,343.34 L300.99,343.37 L294.07,343.36 L286.18,343.32 L277.16,343.26 L266.84,343.19 L255.03,343.12 + L241.50,343.05 L226.00,342.99 L208.24,342.95 L187.89,342.96 L164.59,343.02 L137.92,343.15 L107.41,343.38 L72.53,343.72 + '/></g> + </g> + <g id="gnuplot_plot_3" ><title>MASTA+</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(221.76,45.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >MASTA+</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 50, 166, 140)' d='M231.55,40.50 L279.71,40.50 M72.53,340.21 L93.83,341.82 L110.97,343.11 L124.87,344.18 L136.24,345.09 L145.64,345.90 + L153.48,346.62 L160.10,347.28 L165.75,347.89 L170.65,348.46 L174.94,348.98 L178.75,349.47 L182.19,349.91 L185.33,350.32 + L188.25,350.69 L191.00,351.02 L193.63,351.32 L196.20,351.58 L198.73,351.81 L201.27,352.02 L203.84,352.19 L206.49,352.35 + L209.24,352.48 L212.11,352.60 L215.12,352.71 L218.29,352.81 L221.64,352.90 L225.18,352.98 L228.90,353.06 L232.81,353.14 + L236.90,353.21 L241.16,353.28 L245.59,353.34 L250.16,353.39 L254.85,353.44 L259.64,353.48 L264.51,353.51 L269.42,353.52 + L274.35,353.53 L279.27,353.51 L284.16,353.48 L288.98,353.43 L293.72,353.36 L298.36,353.27 L302.87,353.15 L307.24,353.00 + L311.46,352.83 L315.52,352.62 L319.41,352.38 L323.13,352.10 L326.68,351.79 L330.06,351.44 L333.28,351.05 L336.33,350.62 + L339.24,350.15 L342.01,349.64 L344.65,349.10 L347.17,348.52 L349.59,347.92 L351.91,347.29 L354.15,346.63 L356.31,345.97 + L358.41,345.29 L360.46,344.61 L362.46,343.93 L364.42,343.25 L366.36,342.60 L368.26,341.96 L370.15,341.35 L372.02,340.76 + L373.88,340.20 L375.73,339.68 L377.58,339.19 L379.41,338.74 L381.25,338.31 L383.08,337.93 L384.91,337.57 L386.74,337.24 + L388.57,336.93 L390.39,336.66 L392.22,336.40 L394.05,336.17 L395.87,335.96 L397.70,335.77 L399.53,335.60 L401.35,335.46 + L403.18,335.34 L405.01,335.25 L406.83,335.18 L408.66,335.15 L410.48,335.15 L412.31,335.17 L414.14,335.23 L415.96,335.31 + L417.79,335.41 L419.62,335.52 L421.44,335.64 L423.27,335.76 L425.10,335.87 L426.92,335.97 '/></g> + </g> + <g id="gnuplot_plot_4" fill="none"><title>gnuplot_plot_4</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '72.53,334.59 93.83,337.37 110.97,339.51 124.87,341.19 136.24,342.55 145.64,343.66 153.48,344.60 160.10,345.40 165.75,346.09 170.65,346.69 174.94,347.22 178.75,347.69 182.19,348.10 185.33,348.46 188.25,348.79 191.00,349.07 +193.63,349.33 196.20,349.56 198.73,349.77 201.27,349.95 203.84,350.12 206.49,350.28 209.24,350.42 212.11,350.55 215.12,350.67 218.30,350.78 221.64,350.89 225.18,350.99 228.90,351.08 232.81,351.16 236.90,351.24 241.16,351.31 +245.59,351.36 250.16,351.40 254.85,351.44 259.64,351.45 264.51,351.46 269.42,351.44 274.35,351.41 279.27,351.37 284.16,351.30 288.98,351.22 293.72,351.11 298.36,350.99 302.87,350.84 307.24,350.66 311.46,350.46 315.52,350.23 +319.41,349.97 323.13,349.68 326.68,349.36 330.06,349.00 333.28,348.61 336.33,348.18 339.24,347.72 342.01,347.22 344.65,346.68 347.17,346.12 349.59,345.52 351.91,344.90 354.15,344.26 356.31,343.61 358.41,342.94 360.46,342.28 +362.46,341.61 364.42,340.95 366.35,340.30 368.26,339.68 370.15,339.07 372.02,338.50 373.88,337.95 375.73,337.43 377.58,336.95 379.41,336.50 381.25,336.08 383.08,335.70 384.91,335.34 386.74,335.01 388.57,334.70 390.39,334.42 +392.22,334.16 394.05,333.91 395.87,333.69 397.70,333.48 399.53,333.28 401.35,333.11 403.18,332.95 405.01,332.81 406.83,332.69 408.66,332.60 410.49,332.52 412.31,332.47 414.14,332.43 415.96,332.41 417.79,332.40 419.62,332.38 +421.44,332.34 423.27,332.25 425.10,332.09 426.92,331.81 426.92,337.90 425.24,337.85 423.56,337.80 421.88,337.76 420.20,337.73 418.52,337.73 416.84,337.74 415.16,337.77 413.48,337.82 411.80,337.89 410.12,337.97 408.44,338.07 +406.76,338.18 405.08,338.30 403.40,338.44 401.72,338.59 400.04,338.75 398.36,338.92 396.68,339.10 395.00,339.29 393.32,339.49 391.64,339.70 389.96,339.92 388.27,340.16 386.59,340.42 384.91,340.70 383.23,341.00 381.54,341.32 +379.86,341.67 378.17,342.04 376.48,342.45 374.78,342.88 373.08,343.34 371.37,343.84 369.64,344.36 367.91,344.90 366.16,345.47 364.38,346.06 362.58,346.66 360.74,347.28 358.87,347.90 356.95,348.52 354.97,349.13 352.93,349.74 +350.81,350.33 348.61,350.90 346.31,351.45 343.90,351.96 341.36,352.45 338.70,352.91 335.89,353.33 332.92,353.71 329.79,354.05 326.48,354.36 322.99,354.64 319.31,354.88 315.45,355.09 311.39,355.26 307.16,355.41 302.75,355.54 +298.17,355.64 293.44,355.72 288.58,355.78 283.62,355.83 278.56,355.87 273.45,355.90 268.32,355.92 263.18,355.93 258.08,355.94 253.05,355.93 248.12,355.93 243.31,355.91 238.65,355.89 234.17,355.86 229.87,355.82 225.78,355.77 +221.89,355.70 218.21,355.61 214.72,355.51 211.40,355.38 208.24,355.22 205.20,355.05 202.24,354.84 199.31,354.60 196.36,354.33 193.32,354.02 190.12,353.68 186.68,353.31 182.91,352.91 178.70,352.46 173.92,351.98 168.45,351.46 +162.12,350.90 154.73,350.28 146.07,349.59 135.87,348.83 123.81,347.97 109.53,347.00 92.61,345.88 72.53,344.59 '/> + </g> + <path stroke='rgb( 50, 166, 140)' d='M72.53,334.59 L93.83,337.37 L110.97,339.51 L124.87,341.19 L136.24,342.55 L145.64,343.66 L153.48,344.60 L160.10,345.40 + L165.75,346.09 L170.65,346.69 L174.94,347.22 L178.75,347.69 L182.19,348.10 L185.33,348.46 L188.25,348.79 L191.00,349.07 + L193.63,349.33 L196.20,349.56 L198.73,349.77 L201.27,349.95 L203.84,350.12 L206.49,350.28 L209.24,350.42 L212.11,350.55 + L215.12,350.67 L218.30,350.78 L221.64,350.89 L225.18,350.99 L228.90,351.08 L232.81,351.16 L236.90,351.24 L241.16,351.31 + L245.59,351.36 L250.16,351.40 L254.85,351.44 L259.64,351.45 L264.51,351.46 L269.42,351.44 L274.35,351.41 L279.27,351.37 + L284.16,351.30 L288.98,351.22 L293.72,351.11 L298.36,350.99 L302.87,350.84 L307.24,350.66 L311.46,350.46 L315.52,350.23 + L319.41,349.97 L323.13,349.68 L326.68,349.36 L330.06,349.00 L333.28,348.61 L336.33,348.18 L339.24,347.72 L342.01,347.22 + L344.65,346.68 L347.17,346.12 L349.59,345.52 L351.91,344.90 L354.15,344.26 L356.31,343.61 L358.41,342.94 L360.46,342.28 + L362.46,341.61 L364.42,340.95 L366.35,340.30 L368.26,339.68 L370.15,339.07 L372.02,338.50 L373.88,337.95 L375.73,337.43 + L377.58,336.95 L379.41,336.50 L381.25,336.08 L383.08,335.70 L384.91,335.34 L386.74,335.01 L388.57,334.70 L390.39,334.42 + L392.22,334.16 L394.05,333.91 L395.87,333.69 L397.70,333.48 L399.53,333.28 L401.35,333.11 L403.18,332.95 L405.01,332.81 + L406.83,332.69 L408.66,332.60 L410.49,332.52 L412.31,332.47 L414.14,332.43 L415.96,332.41 L417.79,332.40 L419.62,332.38 + L421.44,332.34 L423.27,332.25 L425.10,332.09 L426.92,331.81 L426.92,337.90 L425.24,337.85 L423.56,337.80 L421.88,337.76 + L420.20,337.73 L418.52,337.73 L416.84,337.74 L415.16,337.77 L413.48,337.82 L411.80,337.89 L410.12,337.97 L408.44,338.07 + L406.76,338.18 L405.08,338.30 L403.40,338.44 L401.72,338.59 L400.04,338.75 L398.36,338.92 L396.68,339.10 L395.00,339.29 + L393.32,339.49 L391.64,339.70 L389.96,339.92 L388.27,340.16 L386.59,340.42 L384.91,340.70 L383.23,341.00 L381.54,341.32 + L379.86,341.67 L378.17,342.04 L376.48,342.45 L374.78,342.88 L373.08,343.34 L371.37,343.84 L369.64,344.36 L367.91,344.90 + L366.16,345.47 L364.38,346.06 L362.58,346.66 L360.74,347.28 L358.87,347.90 L356.95,348.52 L354.97,349.13 L352.93,349.74 + L350.81,350.33 L348.61,350.90 L346.31,351.45 L343.90,351.96 L341.36,352.45 L338.70,352.91 L335.89,353.33 L332.92,353.71 + L329.79,354.05 L326.48,354.36 L322.99,354.64 L319.31,354.88 L315.45,355.09 L311.39,355.26 L307.16,355.41 L302.75,355.54 + L298.17,355.64 L293.44,355.72 L288.58,355.78 L283.62,355.83 L278.56,355.87 L273.45,355.90 L268.32,355.92 L263.18,355.93 + L258.08,355.94 L253.05,355.93 L248.12,355.93 L243.31,355.91 L238.65,355.89 L234.17,355.86 L229.87,355.82 L225.78,355.77 + L221.89,355.70 L218.21,355.61 L214.72,355.51 L211.40,355.38 L208.24,355.22 L205.20,355.05 L202.24,354.84 L199.31,354.60 + L196.36,354.33 L193.32,354.02 L190.12,353.68 L186.68,353.31 L182.91,352.91 L178.70,352.46 L173.92,351.98 L168.45,351.46 + L162.12,350.90 L154.73,350.28 L146.07,349.59 L135.87,348.83 L123.81,347.97 L109.53,347.00 L92.61,345.88 L72.53,344.59 + '/></g> + </g> + <g id="gnuplot_plot_5" ><title>PSI</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(221.76,66.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >PSI</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 88, 98, 237)' d='M231.55,61.50 L279.71,61.50 M72.53,340.21 L107.41,339.95 L137.92,339.85 L164.59,339.87 L187.90,339.99 L208.24,340.18 + L226.00,340.41 L241.50,340.67 L255.03,340.94 L266.83,341.21 L277.14,341.46 L286.15,341.68 L294.03,341.87 L300.93,342.00 + L306.99,342.09 L312.31,342.11 L317.01,342.06 L321.16,341.94 L324.85,341.75 L328.14,341.48 L331.09,341.13 L333.75,340.70 + L336.16,340.19 L338.36,339.60 L340.37,338.94 L342.24,338.20 L343.98,337.39 L345.61,336.52 L347.15,335.59 L348.61,334.61 + L350.01,333.59 L351.35,332.52 L352.65,331.42 L353.91,330.30 L355.14,329.16 L356.35,328.01 L357.54,326.86 L358.70,325.72 + L359.86,324.58 L361.00,323.46 L362.13,322.36 L363.26,321.28 L364.38,320.24 L365.49,319.22 L366.60,318.24 L367.71,317.30 + L368.81,316.39 L369.92,315.52 L371.02,314.68 L372.12,313.88 L373.22,313.11 L374.32,312.38 L375.41,311.67 L376.51,310.99 + L377.61,310.33 L378.70,309.70 L379.80,309.07 L380.90,308.46 L381.99,307.86 L383.09,307.26 L384.18,306.66 L385.28,306.06 + L386.38,305.45 L387.47,304.83 L388.57,304.20 L389.66,303.55 L390.76,302.88 L391.86,302.19 L392.95,301.47 L394.05,300.73 + L395.14,299.96 L396.24,299.15 L397.33,298.31 L398.43,297.43 L399.53,296.52 L400.62,295.57 L401.72,294.58 L402.81,293.55 + L403.91,292.48 L405.01,291.36 L406.10,290.21 L407.20,289.01 L408.29,287.77 L409.39,286.49 L410.48,285.17 L411.58,283.80 + L412.68,282.39 L413.77,280.95 L414.87,279.47 L415.96,277.95 L417.06,276.40 L418.16,274.81 L419.25,273.20 L420.35,271.56 + L421.44,269.89 L422.54,268.20 L423.63,266.49 L424.73,264.76 L425.83,263.02 L426.92,261.27 '/></g> + </g> + <g id="gnuplot_plot_6" fill="none"><title>gnuplot_plot_6</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb( 88, 98, 237)' fill-opacity = '0.300000' points = '72.53,331.71 107.41,332.32 137.92,332.97 164.59,333.62 187.89,334.27 208.24,334.92 226.00,335.53 241.50,336.12 255.03,336.67 266.83,337.16 277.14,337.61 286.15,337.99 294.03,338.31 300.93,338.56 306.99,338.73 312.31,338.84 +317.01,338.86 321.16,338.80 324.85,338.65 328.14,338.43 331.09,338.12 333.75,337.73 336.16,337.25 338.36,336.70 340.37,336.06 342.24,335.36 343.98,334.59 345.61,333.75 347.15,332.85 348.61,331.90 350.01,330.91 351.35,329.87 +352.65,328.80 353.91,327.71 355.14,326.59 356.35,325.46 357.54,324.33 358.70,323.19 359.86,322.06 361.00,320.93 362.13,319.83 363.26,318.74 364.38,317.67 365.49,316.63 366.60,315.61 367.71,314.63 368.81,313.68 369.92,312.75 +371.02,311.86 372.12,310.99 373.22,310.16 374.32,309.35 375.41,308.57 376.51,307.81 377.61,307.07 378.70,306.35 379.80,305.64 380.90,304.94 381.99,304.25 383.09,303.57 384.18,302.88 385.28,302.20 386.38,301.51 387.47,300.81 +388.57,300.10 389.66,299.38 390.76,298.63 391.86,297.87 392.95,297.09 394.05,296.29 395.14,295.45 396.24,294.59 397.34,293.70 398.43,292.77 399.53,291.81 400.62,290.81 401.72,289.77 402.81,288.70 403.91,287.58 405.01,286.41 +406.10,285.20 407.20,283.95 408.29,282.65 409.39,281.30 410.49,279.90 411.58,278.45 412.68,276.96 413.77,275.42 414.87,273.82 415.96,272.19 417.06,270.50 418.16,268.78 419.25,267.01 420.35,265.21 421.44,263.37 422.54,261.50 +423.64,259.61 424.73,257.69 425.83,255.76 426.92,253.82 426.92,275.68 425.90,276.26 424.88,276.94 423.85,277.69 422.83,278.52 421.81,279.42 420.79,280.36 419.76,281.35 418.74,282.38 417.72,283.43 416.70,284.51 415.67,285.60 +414.65,286.71 413.63,287.83 412.60,288.94 411.58,290.06 410.56,291.17 409.53,292.28 408.51,293.37 407.49,294.45 406.46,295.51 405.44,296.55 404.41,297.58 403.39,298.58 402.36,299.56 401.34,300.52 400.31,301.46 399.28,302.37 +398.25,303.27 397.21,304.14 396.17,304.99 395.13,305.82 394.09,306.64 393.04,307.44 391.99,308.23 390.94,309.00 389.87,309.77 388.81,310.53 387.73,311.29 386.65,312.05 385.56,312.82 384.46,313.59 383.36,314.36 382.24,315.15 +381.12,315.95 379.98,316.77 378.84,317.61 377.68,318.46 376.51,319.34 375.33,320.24 374.14,321.15 372.94,322.10 371.73,323.06 370.51,324.04 369.28,325.04 368.03,326.06 366.77,327.09 365.50,328.14 364.22,329.19 362.93,330.25 +361.62,331.31 360.30,332.36 358.97,333.40 357.61,334.43 356.24,335.44 354.84,336.42 353.41,337.37 351.96,338.29 350.46,339.17 348.91,340.00 347.31,340.79 345.64,341.52 343.89,342.19 342.04,342.81 340.08,343.36 337.99,343.85 +335.73,344.28 333.29,344.64 330.62,344.94 327.69,345.18 324.47,345.35 320.88,345.46 316.89,345.52 312.42,345.52 307.40,345.48 301.75,345.39 295.38,345.26 288.16,345.10 280.00,344.91 270.73,344.70 260.23,344.48 248.30,344.25 +234.75,344.04 219.37,343.83 201.91,343.66 182.09,343.52 159.61,343.44 134.12,343.44 105.24,343.52 72.53,343.72 '/> + </g> + <path stroke='rgb( 88, 98, 237)' d='M72.53,331.71 L107.41,332.32 L137.92,332.97 L164.59,333.62 L187.89,334.27 L208.24,334.92 L226.00,335.53 L241.50,336.12 + L255.03,336.67 L266.83,337.16 L277.14,337.61 L286.15,337.99 L294.03,338.31 L300.93,338.56 L306.99,338.73 L312.31,338.84 + L317.01,338.86 L321.16,338.80 L324.85,338.65 L328.14,338.43 L331.09,338.12 L333.75,337.73 L336.16,337.25 L338.36,336.70 + L340.37,336.06 L342.24,335.36 L343.98,334.59 L345.61,333.75 L347.15,332.85 L348.61,331.90 L350.01,330.91 L351.35,329.87 + L352.65,328.80 L353.91,327.71 L355.14,326.59 L356.35,325.46 L357.54,324.33 L358.70,323.19 L359.86,322.06 L361.00,320.93 + L362.13,319.83 L363.26,318.74 L364.38,317.67 L365.49,316.63 L366.60,315.61 L367.71,314.63 L368.81,313.68 L369.92,312.75 + L371.02,311.86 L372.12,310.99 L373.22,310.16 L374.32,309.35 L375.41,308.57 L376.51,307.81 L377.61,307.07 L378.70,306.35 + L379.80,305.64 L380.90,304.94 L381.99,304.25 L383.09,303.57 L384.18,302.88 L385.28,302.20 L386.38,301.51 L387.47,300.81 + L388.57,300.10 L389.66,299.38 L390.76,298.63 L391.86,297.87 L392.95,297.09 L394.05,296.29 L395.14,295.45 L396.24,294.59 + L397.34,293.70 L398.43,292.77 L399.53,291.81 L400.62,290.81 L401.72,289.77 L402.81,288.70 L403.91,287.58 L405.01,286.41 + L406.10,285.20 L407.20,283.95 L408.29,282.65 L409.39,281.30 L410.49,279.90 L411.58,278.45 L412.68,276.96 L413.77,275.42 + L414.87,273.82 L415.96,272.19 L417.06,270.50 L418.16,268.78 L419.25,267.01 L420.35,265.21 L421.44,263.37 L422.54,261.50 + L423.64,259.61 L424.73,257.69 L425.83,255.76 L426.92,253.82 L426.92,275.68 L425.90,276.26 L424.88,276.94 L423.85,277.69 + L422.83,278.52 L421.81,279.42 L420.79,280.36 L419.76,281.35 L418.74,282.38 L417.72,283.43 L416.70,284.51 L415.67,285.60 + L414.65,286.71 L413.63,287.83 L412.60,288.94 L411.58,290.06 L410.56,291.17 L409.53,292.28 L408.51,293.37 L407.49,294.45 + L406.46,295.51 L405.44,296.55 L404.41,297.58 L403.39,298.58 L402.36,299.56 L401.34,300.52 L400.31,301.46 L399.28,302.37 + L398.25,303.27 L397.21,304.14 L396.17,304.99 L395.13,305.82 L394.09,306.64 L393.04,307.44 L391.99,308.23 L390.94,309.00 + L389.87,309.77 L388.81,310.53 L387.73,311.29 L386.65,312.05 L385.56,312.82 L384.46,313.59 L383.36,314.36 L382.24,315.15 + L381.12,315.95 L379.98,316.77 L378.84,317.61 L377.68,318.46 L376.51,319.34 L375.33,320.24 L374.14,321.15 L372.94,322.10 + L371.73,323.06 L370.51,324.04 L369.28,325.04 L368.03,326.06 L366.77,327.09 L365.50,328.14 L364.22,329.19 L362.93,330.25 + L361.62,331.31 L360.30,332.36 L358.97,333.40 L357.61,334.43 L356.24,335.44 L354.84,336.42 L353.41,337.37 L351.96,338.29 + L350.46,339.17 L348.91,340.00 L347.31,340.79 L345.64,341.52 L343.89,342.19 L342.04,342.81 L340.08,343.36 L337.99,343.85 + L335.73,344.28 L333.29,344.64 L330.62,344.94 L327.69,345.18 L324.47,345.35 L320.88,345.46 L316.89,345.52 L312.42,345.52 + L307.40,345.48 L301.75,345.39 L295.38,345.26 L288.16,345.10 L280.00,344.91 L270.73,344.70 L260.23,344.48 L248.30,344.25 + L234.75,344.04 L219.37,343.83 L201.91,343.66 L182.09,343.52 L159.61,343.44 L134.12,343.44 L105.24,343.52 L72.53,343.72 + '/></g> + </g> + <g id="gnuplot_plot_7" ><title>SSI</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(221.76,87.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >SSI</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 0, 0, 0)' d='M231.55,82.50 L279.71,82.50 M72.53,340.21 L95.86,336.60 L117.84,333.19 L138.53,329.96 L158.00,326.90 L176.31,324.02 + L193.52,321.29 L209.68,318.70 L224.86,316.26 L239.10,313.96 L252.46,311.78 L264.98,309.71 L276.70,307.76 L287.68,305.91 + L297.96,304.15 L307.57,302.49 L316.55,300.91 L324.94,299.40 L332.77,297.97 L340.08,296.60 L346.91,295.29 L353.26,294.03 + L359.19,292.82 L364.71,291.65 L369.85,290.51 L374.64,289.41 L379.09,288.34 L383.23,287.28 L387.08,286.24 L390.66,285.22 + L393.99,284.20 L397.08,283.18 L399.96,282.16 L402.63,281.14 L405.11,280.10 L407.43,279.05 L409.58,277.99 L411.58,276.90 + L413.44,275.79 L415.18,274.65 L416.80,273.48 L418.31,272.27 L419.73,271.03 L421.05,269.74 L422.29,268.42 L423.46,267.04 + L424.56,265.62 L425.59,264.15 L426.57,262.63 L427.49,261.06 L428.37,259.43 L429.21,257.74 L430.01,255.99 L430.77,254.19 + L431.51,252.32 L432.21,250.39 L432.89,248.41 L433.55,246.36 L434.19,244.25 L434.81,242.08 L435.42,239.84 L436.01,237.55 + L436.59,235.20 L437.16,232.79 L437.72,230.33 L438.28,227.81 L438.82,225.23 L439.37,222.61 L439.90,219.94 L440.43,217.23 + L440.96,214.47 L441.49,211.68 L442.01,208.85 L442.53,206.00 L443.05,203.11 L443.56,200.21 L444.08,197.29 L444.59,194.37 + L445.11,191.43 L445.62,188.51 L446.13,185.59 L446.65,182.68 L447.16,179.80 L447.67,176.95 L448.18,174.14 L448.69,171.37 + L449.20,168.66 L449.72,166.02 L450.23,163.45 L450.74,160.96 L451.25,158.57 L451.76,156.29 L452.27,154.12 L452.78,152.08 + L453.30,150.19 L453.81,148.44 L454.32,146.86 L454.83,145.45 L455.34,144.24 L455.85,143.24 '/></g> + </g> + <g id="gnuplot_plot_8" fill="none"><title>gnuplot_plot_8</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb( 45, 5, 5)' fill-opacity = '0.300000' points = '72.53,331.71 95.86,328.50 117.84,325.43 138.53,322.50 158.00,319.69 176.31,317.00 193.52,314.43 209.68,311.98 224.86,309.63 239.10,307.38 252.46,305.23 264.98,303.18 276.70,301.21 287.68,299.33 297.96,297.53 307.57,295.80 +316.55,294.13 324.94,292.54 332.77,290.99 340.08,289.51 346.91,288.07 353.27,286.67 359.19,285.32 364.71,283.99 369.85,282.69 374.64,281.42 379.09,280.16 383.23,278.92 387.08,277.69 390.66,276.45 393.99,275.22 397.08,273.98 +399.96,272.73 402.63,271.46 405.11,270.17 407.43,268.86 409.58,267.52 411.58,266.15 413.44,264.74 415.18,263.30 416.80,261.81 418.31,260.27 419.73,258.69 421.05,257.06 422.29,255.37 423.46,253.63 424.56,251.83 425.59,249.98 +426.57,248.06 427.49,246.09 428.37,244.05 429.21,241.96 430.01,239.80 430.77,237.58 431.51,235.31 432.21,232.98 432.89,230.59 433.55,228.14 434.19,225.65 434.81,223.10 435.42,220.51 436.01,217.88 436.59,215.21 437.16,212.50 +437.72,209.76 438.28,207.00 438.82,204.22 439.37,201.41 439.90,198.60 440.43,195.79 440.96,192.97 441.49,190.16 442.01,187.37 442.53,184.59 443.05,181.84 443.56,179.13 444.08,176.45 444.59,173.82 445.11,171.24 445.62,168.72 +446.13,166.27 446.65,163.89 447.16,161.58 447.67,159.36 448.18,157.22 448.69,155.18 449.20,153.24 449.72,151.39 450.23,149.65 450.74,148.02 451.25,146.49 451.76,145.07 452.27,143.76 452.78,142.55 453.30,141.46 453.81,140.46 +454.32,139.56 454.83,138.74 455.34,138.01 455.85,137.36 455.85,152.69 455.34,153.44 454.83,154.40 454.32,155.55 453.81,156.89 453.30,158.41 452.78,160.09 452.27,161.91 451.76,163.88 451.25,165.98 450.74,168.20 450.23,170.52 +449.72,172.94 449.20,175.44 448.69,178.03 448.18,180.68 447.67,183.39 447.16,186.15 446.65,188.95 446.13,191.78 445.62,194.64 445.11,197.52 444.59,200.40 444.08,203.29 443.56,206.17 443.05,209.04 442.53,211.90 442.01,214.74 +441.49,217.55 440.96,220.32 440.43,223.06 439.90,225.77 439.37,228.42 438.82,231.03 438.28,233.59 437.72,236.09 437.16,238.54 436.59,240.92 436.01,243.25 435.42,245.52 434.81,247.72 434.19,249.85 433.55,251.93 432.89,253.93 +432.21,255.87 431.51,257.75 430.77,259.56 430.01,261.31 429.21,262.99 428.37,264.61 427.49,266.17 426.57,267.67 425.59,269.12 424.56,270.51 423.46,271.84 422.29,273.13 421.05,274.37 419.73,275.56 418.31,276.71 416.80,277.82 +415.18,278.90 413.44,279.95 411.58,280.97 409.58,281.96 407.43,282.93 405.11,283.89 402.63,284.83 399.96,285.77 397.08,286.70 393.99,287.64 390.66,288.58 387.08,289.53 383.23,290.50 379.09,291.49 374.64,292.50 369.85,293.55 +364.71,294.63 359.19,295.75 353.27,296.92 346.91,298.14 340.08,299.42 332.77,300.77 324.94,302.19 316.55,303.68 307.57,305.25 297.96,306.92 287.68,308.68 276.70,310.55 264.98,312.52 252.46,314.62 239.10,316.83 224.86,319.18 +209.68,321.67 193.52,324.30 176.31,327.10 158.00,330.06 138.53,333.19 117.84,336.50 95.86,340.01 72.53,343.72 '/> + </g> + <path stroke='rgb( 0, 0, 0)' d='M72.53,331.71 L95.86,328.50 L117.84,325.43 L138.53,322.50 L158.00,319.69 L176.31,317.00 L193.52,314.43 L209.68,311.98 + L224.86,309.63 L239.10,307.38 L252.46,305.23 L264.98,303.18 L276.70,301.21 L287.68,299.33 L297.96,297.53 L307.57,295.80 + L316.55,294.13 L324.94,292.54 L332.77,290.99 L340.08,289.51 L346.91,288.07 L353.27,286.67 L359.19,285.32 L364.71,283.99 + L369.85,282.69 L374.64,281.42 L379.09,280.16 L383.23,278.92 L387.08,277.69 L390.66,276.45 L393.99,275.22 L397.08,273.98 + L399.96,272.73 L402.63,271.46 L405.11,270.17 L407.43,268.86 L409.58,267.52 L411.58,266.15 L413.44,264.74 L415.18,263.30 + L416.80,261.81 L418.31,260.27 L419.73,258.69 L421.05,257.06 L422.29,255.37 L423.46,253.63 L424.56,251.83 L425.59,249.98 + L426.57,248.06 L427.49,246.09 L428.37,244.05 L429.21,241.96 L430.01,239.80 L430.77,237.58 L431.51,235.31 L432.21,232.98 + L432.89,230.59 L433.55,228.14 L434.19,225.65 L434.81,223.10 L435.42,220.51 L436.01,217.88 L436.59,215.21 L437.16,212.50 + L437.72,209.76 L438.28,207.00 L438.82,204.22 L439.37,201.41 L439.90,198.60 L440.43,195.79 L440.96,192.97 L441.49,190.16 + L442.01,187.37 L442.53,184.59 L443.05,181.84 L443.56,179.13 L444.08,176.45 L444.59,173.82 L445.11,171.24 L445.62,168.72 + L446.13,166.27 L446.65,163.89 L447.16,161.58 L447.67,159.36 L448.18,157.22 L448.69,155.18 L449.20,153.24 L449.72,151.39 + L450.23,149.65 L450.74,148.02 L451.25,146.49 L451.76,145.07 L452.27,143.76 L452.78,142.55 L453.30,141.46 L453.81,140.46 + L454.32,139.56 L454.83,138.74 L455.34,138.01 L455.85,137.36 L455.85,152.69 L455.34,153.44 L454.83,154.40 L454.32,155.55 + L453.81,156.89 L453.30,158.41 L452.78,160.09 L452.27,161.91 L451.76,163.88 L451.25,165.98 L450.74,168.20 L450.23,170.52 + L449.72,172.94 L449.20,175.44 L448.69,178.03 L448.18,180.68 L447.67,183.39 L447.16,186.15 L446.65,188.95 L446.13,191.78 + L445.62,194.64 L445.11,197.52 L444.59,200.40 L444.08,203.29 L443.56,206.17 L443.05,209.04 L442.53,211.90 L442.01,214.74 + L441.49,217.55 L440.96,220.32 L440.43,223.06 L439.90,225.77 L439.37,228.42 L438.82,231.03 L438.28,233.59 L437.72,236.09 + L437.16,238.54 L436.59,240.92 L436.01,243.25 L435.42,245.52 L434.81,247.72 L434.19,249.85 L433.55,251.93 L432.89,253.93 + L432.21,255.87 L431.51,257.75 L430.77,259.56 L430.01,261.31 L429.21,262.99 L428.37,264.61 L427.49,266.17 L426.57,267.67 + L425.59,269.12 L424.56,270.51 L423.46,271.84 L422.29,273.13 L421.05,274.37 L419.73,275.56 L418.31,276.71 L416.80,277.82 + L415.18,278.90 L413.44,279.95 L411.58,280.97 L409.58,281.96 L407.43,282.93 L405.11,283.89 L402.63,284.83 L399.96,285.77 + L397.08,286.70 L393.99,287.64 L390.66,288.58 L387.08,289.53 L383.23,290.50 L379.09,291.49 L374.64,292.50 L369.85,293.55 + L364.71,294.63 L359.19,295.75 L353.27,296.92 L346.91,298.14 L340.08,299.42 L332.77,300.77 L324.94,302.19 L316.55,303.68 + L307.57,305.25 L297.96,306.92 L287.68,308.68 L276.70,310.55 L264.98,312.52 L252.46,314.62 L239.10,316.83 L224.86,319.18 + L209.68,321.67 L193.52,324.30 L176.31,327.10 L158.00,330.06 L138.53,333.19 L117.84,336.50 L95.86,340.01 L72.53,343.72 + '/></g> + </g> + <g id="gnuplot_plot_9" ><title>MASTA+ delegated tasks</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(221.76,108.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> <text><tspan font-family="Arial" >MASTA+ delegated tasks</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 50, 166, 140)' stroke-dasharray='2.5,4.0' d='M231.55,19.50 L279.71,19.50 M72.53,422.40 L93.83,422.39 L110.97,422.33 L124.87,422.20 L136.24,421.97 L145.64,421.65 + <path stroke='rgb( 50, 166, 140)' stroke-dasharray='2.5,4.0' d='M231.55,103.50 L279.71,103.50 M72.53,422.40 L93.83,422.39 L110.97,422.33 L124.87,422.20 L136.24,421.97 L145.64,421.65 L153.48,421.24 L160.10,420.73 L165.75,420.15 L170.65,419.48 L174.94,418.75 L178.75,417.96 L182.19,417.12 L185.33,416.24 L188.25,415.32 L191.00,414.37 L193.63,413.41 L196.20,412.44 L198.73,411.46 L201.27,410.48 L203.84,409.51 L206.49,408.56 L209.24,407.63 L212.11,406.73 L215.12,405.85 L218.29,405.02 L221.64,404.22 L225.18,403.46 L228.90,402.74 L232.81,402.06 @@ -198,7 +458,7 @@ L403.18,337.42 L405.01,334.61 L406.83,331.74 L408.66,328.86 L410.48,326.02 L412.31,323.27 L414.14,320.70 L415.96,318.37 L417.79,316.36 L419.62,314.74 L421.44,313.57 L423.27,312.84 L425.10,312.52 L426.92,312.47 '/></g> </g> - <g id="gnuplot_plot_2" fill="none"><title>gnuplot_plot_2</title> + <g id="gnuplot_plot_10" fill="none"><title>gnuplot_plot_10</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '72.53,422.40 93.83,422.39 110.97,422.33 124.87,422.18 136.24,421.93 145.64,421.55 153.48,421.06 160.10,420.46 165.75,419.74 170.65,418.92 174.94,418.01 178.75,417.03 182.19,415.98 185.33,414.88 188.25,413.75 191.00,412.59 @@ -242,14 +502,14 @@ L162.12,419.69 L154.73,420.23 L146.07,420.74 L135.87,421.22 L123.81,421.66 L109.53,422.03 L92.61,422.29 L72.53,422.40 '/></g> </g> - <g id="gnuplot_plot_3" ><title>PSI delegated tasks</title> + <g id="gnuplot_plot_11" ><title>PSI delegated tasks</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(221.76,45.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <g transform="translate(504.88,24.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> <text><tspan font-family="Arial" >PSI delegated tasks</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 88, 98, 237)' stroke-dasharray='2.5,4.0' d='M231.55,40.50 L279.71,40.50 M72.53,422.40 L107.41,421.41 L137.92,420.53 L164.59,419.76 L187.90,419.05 L208.24,418.41 + <path stroke='rgb( 88, 98, 237)' stroke-dasharray='2.5,4.0' d='M514.67,19.50 L562.83,19.50 M72.53,422.40 L107.41,421.41 L137.92,420.53 L164.59,419.76 L187.90,419.05 L208.24,418.41 L226.00,417.80 L241.50,417.23 L255.03,416.67 L266.83,416.13 L277.14,415.59 L286.15,415.05 L294.03,414.51 L300.93,413.96 L306.99,413.40 L312.31,412.82 L317.01,412.22 L321.16,411.61 L324.85,410.97 L328.14,410.31 L331.09,409.63 L333.75,408.92 L336.16,408.19 L338.36,407.42 L340.37,406.63 L342.24,405.82 L343.98,404.97 L345.61,404.10 L347.15,403.20 L348.61,402.27 @@ -263,7 +523,7 @@ L412.68,343.26 L413.77,343.35 L414.87,343.56 L415.96,343.89 L417.06,344.35 L418.16,344.94 L419.25,345.66 L420.35,346.52 L421.44,347.51 L422.54,348.64 L423.63,349.91 L424.73,351.32 L425.83,352.87 L426.92,354.57 '/></g> </g> - <g id="gnuplot_plot_4" fill="none"><title>gnuplot_plot_4</title> + <g id="gnuplot_plot_12" fill="none"><title>gnuplot_plot_12</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> <polygon fill = 'rgb( 88, 98, 237)' fill-opacity = '0.300000' points = '72.53,422.40 107.41,421.38 137.92,420.44 164.59,419.56 187.89,418.72 208.24,417.91 226.00,417.12 241.50,416.34 255.03,415.58 266.83,414.81 277.14,414.04 286.15,413.27 294.03,412.50 300.93,411.72 306.99,410.93 312.31,410.13 @@ -307,79 +567,14 @@ L234.75,420.35 L219.37,420.67 L201.91,420.96 L182.09,421.25 L159.61,421.52 L134.12,421.80 L105.24,422.09 L72.53,422.40 '/></g> </g> - <g id="gnuplot_plot_5" ><title>MASTA+ consumed tasks</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(221.76,66.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> - <text><tspan font-family="Arial" >MASTA+ consumed tasks</tspan></text> - </g> -</g> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 50, 166, 140)' stroke-dasharray='1.0,2.0' d='M231.55,61.50 L279.71,61.50 M72.53,422.40 L93.83,422.40 L110.97,422.40 L124.87,422.40 L136.24,422.40 L145.64,422.40 - L153.48,422.40 L160.10,422.40 L165.75,422.40 L170.65,422.40 L174.94,422.40 L178.75,422.40 L182.19,422.40 L185.33,422.40 - L188.25,422.40 L191.00,422.40 L193.63,422.39 L196.20,422.39 L198.73,422.38 L201.27,422.37 L203.84,422.36 L206.49,422.34 - L209.24,422.30 L212.11,422.26 L215.12,422.21 L218.29,422.14 L221.64,422.05 L225.18,421.93 L228.90,421.79 L232.81,421.62 - L236.90,421.41 L241.16,421.16 L245.59,420.86 L250.16,420.52 L254.85,420.13 L259.64,419.68 L264.51,419.17 L269.42,418.60 - L274.35,417.96 L279.27,417.26 L284.16,416.49 L288.98,415.66 L293.72,414.75 L298.36,413.77 L302.87,412.71 L307.24,411.58 - L311.46,410.38 L315.52,409.10 L319.41,407.75 L323.13,406.31 L326.68,404.79 L330.06,403.19 L333.28,401.49 L336.33,399.70 - L339.24,397.82 L342.01,395.83 L344.65,393.73 L347.17,391.52 L349.59,389.19 L351.91,386.72 L354.15,384.12 L356.31,381.37 - L358.41,378.47 L360.46,375.41 L362.46,372.17 L364.42,368.76 L366.36,365.16 L368.26,361.37 L370.15,357.38 L372.02,353.17 - L373.88,348.75 L375.73,344.09 L377.58,339.20 L379.41,334.07 L381.25,328.69 L383.08,323.04 L384.91,317.13 L386.74,310.95 - L388.57,304.48 L390.39,297.73 L392.22,290.70 L394.05,283.38 L395.87,275.77 L397.70,267.89 L399.53,259.73 L401.35,251.32 - L403.18,242.66 L405.01,233.80 L406.83,224.74 L408.66,215.54 L410.48,206.23 L412.31,196.87 L414.14,187.52 L415.96,178.24 - L417.79,169.13 L419.62,160.26 L421.44,151.77 L423.27,143.78 L425.10,136.46 L426.92,130.03 '/></g> - </g> - <g id="gnuplot_plot_6" fill="none"><title>gnuplot_plot_6</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '72.53,422.40 93.83,422.40 110.97,422.40 124.87,422.40 136.24,422.40 145.64,422.40 153.48,422.40 160.10,422.40 165.75,422.40 170.65,422.40 174.94,422.40 178.75,422.40 182.19,422.40 185.33,422.40 188.25,422.40 191.00,422.40 -193.63,422.39 196.20,422.39 198.73,422.38 201.27,422.36 203.84,422.34 206.49,422.32 209.24,422.28 212.11,422.23 215.12,422.16 218.30,422.07 221.64,421.96 225.18,421.82 228.90,421.65 232.81,421.44 236.90,421.19 241.16,420.89 -245.59,420.55 250.16,420.15 254.85,419.69 259.64,419.18 264.51,418.60 269.42,417.95 274.35,417.23 279.27,416.45 284.16,415.59 288.98,414.65 293.72,413.64 298.36,412.56 302.87,411.40 307.24,410.16 311.46,408.84 315.52,407.44 -319.41,405.96 323.13,404.39 326.68,402.74 330.06,401.00 333.28,399.17 336.33,397.24 339.24,395.21 342.01,393.07 344.65,390.82 347.17,388.45 349.59,385.96 351.91,383.34 354.15,380.59 356.31,377.69 358.41,374.63 360.46,371.42 -362.46,368.04 364.42,364.48 366.35,360.73 368.26,356.79 370.15,352.65 372.02,348.29 373.88,343.71 375.73,338.90 377.58,333.84 379.41,328.54 381.25,322.98 383.08,317.15 384.91,311.04 386.74,304.65 388.57,297.96 390.39,290.99 -392.22,283.72 394.05,276.16 395.87,268.30 397.70,260.17 399.53,251.77 401.35,243.13 403.18,234.26 405.01,225.20 406.83,216.00 408.66,206.70 410.49,197.37 412.31,188.07 414.14,178.88 415.96,169.90 417.79,161.23 419.62,153.01 -421.44,145.36 423.27,138.46 425.10,132.49 426.92,127.69 426.92,132.37 425.24,139.71 423.56,147.54 421.88,155.75 420.20,164.24 418.52,172.94 416.84,181.76 415.16,190.65 413.48,199.54 411.80,208.40 410.12,217.16 408.44,225.81 -406.76,234.30 405.08,242.61 403.40,250.71 401.72,258.58 400.04,266.22 398.36,273.61 396.68,280.75 395.00,287.63 393.32,294.25 391.64,300.62 389.96,306.73 388.27,312.59 386.59,318.22 384.91,323.60 383.23,328.76 381.54,333.71 -379.86,338.43 378.17,342.96 376.48,347.29 374.78,351.43 373.08,355.38 371.37,359.16 369.64,362.78 367.91,366.23 366.16,369.52 364.38,372.66 362.58,375.65 360.74,378.50 358.87,381.22 356.95,383.81 354.97,386.27 352.93,388.62 -350.81,390.85 348.61,392.97 346.31,394.99 343.90,396.92 341.36,398.74 338.70,400.48 335.89,402.14 332.92,403.71 329.79,405.21 326.48,406.63 322.99,407.97 319.31,409.25 315.45,410.46 311.39,411.60 307.16,412.68 302.75,413.69 -298.17,414.63 293.44,415.51 288.58,416.33 283.62,417.08 278.56,417.77 273.45,418.41 268.32,418.98 263.18,419.49 258.08,419.95 253.05,420.36 248.12,420.72 243.31,421.03 238.65,421.30 234.17,421.52 229.87,421.71 225.78,421.87 -221.89,422.00 218.21,422.10 214.72,422.18 211.40,422.24 208.24,422.29 205.20,422.32 202.24,422.35 199.31,422.37 196.36,422.38 193.32,422.39 190.12,422.39 186.68,422.40 182.91,422.40 178.70,422.40 173.92,422.40 168.45,422.40 -162.12,422.40 154.73,422.40 146.07,422.40 135.87,422.40 123.81,422.40 109.53,422.40 92.61,422.40 72.53,422.40 '/> - </g> - <path stroke='rgb( 50, 166, 140)' d='M72.53,422.40 L93.83,422.40 L110.97,422.40 L124.87,422.40 L136.24,422.40 L145.64,422.40 L153.48,422.40 L160.10,422.40 - L165.75,422.40 L170.65,422.40 L174.94,422.40 L178.75,422.40 L182.19,422.40 L185.33,422.40 L188.25,422.40 L191.00,422.40 - L193.63,422.39 L196.20,422.39 L198.73,422.38 L201.27,422.36 L203.84,422.34 L206.49,422.32 L209.24,422.28 L212.11,422.23 - L215.12,422.16 L218.30,422.07 L221.64,421.96 L225.18,421.82 L228.90,421.65 L232.81,421.44 L236.90,421.19 L241.16,420.89 - L245.59,420.55 L250.16,420.15 L254.85,419.69 L259.64,419.18 L264.51,418.60 L269.42,417.95 L274.35,417.23 L279.27,416.45 - L284.16,415.59 L288.98,414.65 L293.72,413.64 L298.36,412.56 L302.87,411.40 L307.24,410.16 L311.46,408.84 L315.52,407.44 - L319.41,405.96 L323.13,404.39 L326.68,402.74 L330.06,401.00 L333.28,399.17 L336.33,397.24 L339.24,395.21 L342.01,393.07 - L344.65,390.82 L347.17,388.45 L349.59,385.96 L351.91,383.34 L354.15,380.59 L356.31,377.69 L358.41,374.63 L360.46,371.42 - L362.46,368.04 L364.42,364.48 L366.35,360.73 L368.26,356.79 L370.15,352.65 L372.02,348.29 L373.88,343.71 L375.73,338.90 - L377.58,333.84 L379.41,328.54 L381.25,322.98 L383.08,317.15 L384.91,311.04 L386.74,304.65 L388.57,297.96 L390.39,290.99 - L392.22,283.72 L394.05,276.16 L395.87,268.30 L397.70,260.17 L399.53,251.77 L401.35,243.13 L403.18,234.26 L405.01,225.20 - L406.83,216.00 L408.66,206.70 L410.49,197.37 L412.31,188.07 L414.14,178.88 L415.96,169.90 L417.79,161.23 L419.62,153.01 - L421.44,145.36 L423.27,138.46 L425.10,132.49 L426.92,127.69 L426.92,132.37 L425.24,139.71 L423.56,147.54 L421.88,155.75 - L420.20,164.24 L418.52,172.94 L416.84,181.76 L415.16,190.65 L413.48,199.54 L411.80,208.40 L410.12,217.16 L408.44,225.81 - L406.76,234.30 L405.08,242.61 L403.40,250.71 L401.72,258.58 L400.04,266.22 L398.36,273.61 L396.68,280.75 L395.00,287.63 - L393.32,294.25 L391.64,300.62 L389.96,306.73 L388.27,312.59 L386.59,318.22 L384.91,323.60 L383.23,328.76 L381.54,333.71 - L379.86,338.43 L378.17,342.96 L376.48,347.29 L374.78,351.43 L373.08,355.38 L371.37,359.16 L369.64,362.78 L367.91,366.23 - L366.16,369.52 L364.38,372.66 L362.58,375.65 L360.74,378.50 L358.87,381.22 L356.95,383.81 L354.97,386.27 L352.93,388.62 - L350.81,390.85 L348.61,392.97 L346.31,394.99 L343.90,396.92 L341.36,398.74 L338.70,400.48 L335.89,402.14 L332.92,403.71 - L329.79,405.21 L326.48,406.63 L322.99,407.97 L319.31,409.25 L315.45,410.46 L311.39,411.60 L307.16,412.68 L302.75,413.69 - L298.17,414.63 L293.44,415.51 L288.58,416.33 L283.62,417.08 L278.56,417.77 L273.45,418.41 L268.32,418.98 L263.18,419.49 - L258.08,419.95 L253.05,420.36 L248.12,420.72 L243.31,421.03 L238.65,421.30 L234.17,421.52 L229.87,421.71 L225.78,421.87 - L221.89,422.00 L218.21,422.10 L214.72,422.18 L211.40,422.24 L208.24,422.29 L205.20,422.32 L202.24,422.35 L199.31,422.37 - L196.36,422.38 L193.32,422.39 L190.12,422.39 L186.68,422.40 L182.91,422.40 L178.70,422.40 L173.92,422.40 L168.45,422.40 - L162.12,422.40 L154.73,422.40 L146.07,422.40 L135.87,422.40 L123.81,422.40 L109.53,422.40 L92.61,422.40 L72.53,422.40 - '/></g> - </g> - <g id="gnuplot_plot_7" ><title>Consumed tasks</title> + <g id="gnuplot_plot_13" ><title>Consumed tasks</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(221.76,87.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <g transform="translate(504.88,45.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> <text><tspan font-family="Arial" >Consumed tasks</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb(252, 83, 92)' stroke-dasharray='1.0,2.0' d='M231.55,82.50 L279.71,82.50 M72.53,422.40 L109.56,421.64 L141.65,420.88 L169.44,420.10 L193.48,419.32 L214.28,418.52 + <path stroke='rgb(252, 83, 92)' stroke-dasharray='1.0,2.0' d='M514.67,40.50 L562.83,40.50 M72.53,422.40 L109.56,421.64 L141.65,420.88 L169.44,420.10 L193.48,419.32 L214.28,418.52 L232.27,417.70 L247.83,416.87 L261.29,416.03 L272.94,415.18 L283.03,414.32 L291.78,413.46 L299.39,412.60 L306.03,411.73 L311.82,410.87 L316.91,410.01 L321.40,409.15 L325.37,408.30 L328.92,407.46 L332.11,406.62 L334.99,405.78 L337.62,404.95 L340.04,404.11 L342.29,403.27 L344.39,402.42 L346.37,401.56 L348.26,400.68 L350.06,399.78 L351.80,398.84 L353.48,397.87 @@ -393,7 +588,7 @@ L426.19,184.88 L427.36,181.28 L428.53,177.95 L429.70,174.92 L430.87,172.19 L432.04,169.76 L433.21,167.64 L434.37,165.83 L435.54,164.32 L436.71,163.10 L437.88,162.13 L439.05,161.40 L440.22,160.85 L441.39,160.43 '/></g> </g> - <g id="gnuplot_plot_8" fill="none"><title>gnuplot_plot_8</title> + <g id="gnuplot_plot_14" fill="none"><title>gnuplot_plot_14</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> <polygon fill = 'rgb(255, 105, 65)' fill-opacity = '0.300000' points = '72.53,422.40 109.56,421.62 141.65,420.78 169.44,419.91 193.48,419.00 214.28,418.06 232.27,417.11 247.83,416.13 261.29,415.14 272.94,414.15 283.03,413.15 291.78,412.15 299.39,411.16 306.03,410.17 311.82,409.19 316.91,408.22 @@ -437,14 +632,79 @@ L241.50,418.61 L226.00,419.30 L208.24,419.95 L187.89,420.55 L164.59,421.09 L137.92,421.58 L107.41,422.02 L72.53,422.40 '/></g> </g> - <g id="gnuplot_plot_9" ><title>PSI consumed tasks</title> + <g id="gnuplot_plot_15" ><title>MASTA+ consumed tasks</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(221.76,108.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <g transform="translate(504.88,66.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >MASTA+ consumed tasks</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 50, 166, 140)' stroke-dasharray='1.0,2.0' d='M514.67,61.50 L562.83,61.50 M72.53,422.40 L93.83,422.40 L110.97,422.40 L124.87,422.40 L136.24,422.40 L145.64,422.40 + L153.48,422.40 L160.10,422.40 L165.75,422.40 L170.65,422.40 L174.94,422.40 L178.75,422.40 L182.19,422.40 L185.33,422.40 + L188.25,422.40 L191.00,422.40 L193.63,422.39 L196.20,422.39 L198.73,422.38 L201.27,422.37 L203.84,422.36 L206.49,422.34 + L209.24,422.30 L212.11,422.26 L215.12,422.21 L218.29,422.14 L221.64,422.05 L225.18,421.93 L228.90,421.79 L232.81,421.62 + L236.90,421.41 L241.16,421.16 L245.59,420.86 L250.16,420.52 L254.85,420.13 L259.64,419.68 L264.51,419.17 L269.42,418.60 + L274.35,417.96 L279.27,417.26 L284.16,416.49 L288.98,415.66 L293.72,414.75 L298.36,413.77 L302.87,412.71 L307.24,411.58 + L311.46,410.38 L315.52,409.10 L319.41,407.75 L323.13,406.31 L326.68,404.79 L330.06,403.19 L333.28,401.49 L336.33,399.70 + L339.24,397.82 L342.01,395.83 L344.65,393.73 L347.17,391.52 L349.59,389.19 L351.91,386.72 L354.15,384.12 L356.31,381.37 + L358.41,378.47 L360.46,375.41 L362.46,372.17 L364.42,368.76 L366.36,365.16 L368.26,361.37 L370.15,357.38 L372.02,353.17 + L373.88,348.75 L375.73,344.09 L377.58,339.20 L379.41,334.07 L381.25,328.69 L383.08,323.04 L384.91,317.13 L386.74,310.95 + L388.57,304.48 L390.39,297.73 L392.22,290.70 L394.05,283.38 L395.87,275.77 L397.70,267.89 L399.53,259.73 L401.35,251.32 + L403.18,242.66 L405.01,233.80 L406.83,224.74 L408.66,215.54 L410.48,206.23 L412.31,196.87 L414.14,187.52 L415.96,178.24 + L417.79,169.13 L419.62,160.26 L421.44,151.77 L423.27,143.78 L425.10,136.46 L426.92,130.03 '/></g> + </g> + <g id="gnuplot_plot_16" fill="none"><title>gnuplot_plot_16</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '72.53,422.40 93.83,422.40 110.97,422.40 124.87,422.40 136.24,422.40 145.64,422.40 153.48,422.40 160.10,422.40 165.75,422.40 170.65,422.40 174.94,422.40 178.75,422.40 182.19,422.40 185.33,422.40 188.25,422.40 191.00,422.40 +193.63,422.39 196.20,422.39 198.73,422.38 201.27,422.36 203.84,422.34 206.49,422.32 209.24,422.28 212.11,422.23 215.12,422.16 218.30,422.07 221.64,421.96 225.18,421.82 228.90,421.65 232.81,421.44 236.90,421.19 241.16,420.89 +245.59,420.55 250.16,420.15 254.85,419.69 259.64,419.18 264.51,418.60 269.42,417.95 274.35,417.23 279.27,416.45 284.16,415.59 288.98,414.65 293.72,413.64 298.36,412.56 302.87,411.40 307.24,410.16 311.46,408.84 315.52,407.44 +319.41,405.96 323.13,404.39 326.68,402.74 330.06,401.00 333.28,399.17 336.33,397.24 339.24,395.21 342.01,393.07 344.65,390.82 347.17,388.45 349.59,385.96 351.91,383.34 354.15,380.59 356.31,377.69 358.41,374.63 360.46,371.42 +362.46,368.04 364.42,364.48 366.35,360.73 368.26,356.79 370.15,352.65 372.02,348.29 373.88,343.71 375.73,338.90 377.58,333.84 379.41,328.54 381.25,322.98 383.08,317.15 384.91,311.04 386.74,304.65 388.57,297.96 390.39,290.99 +392.22,283.72 394.05,276.16 395.87,268.30 397.70,260.17 399.53,251.77 401.35,243.13 403.18,234.26 405.01,225.20 406.83,216.00 408.66,206.70 410.49,197.37 412.31,188.07 414.14,178.88 415.96,169.90 417.79,161.23 419.62,153.01 +421.44,145.36 423.27,138.46 425.10,132.49 426.92,127.69 426.92,132.37 425.24,139.71 423.56,147.54 421.88,155.75 420.20,164.24 418.52,172.94 416.84,181.76 415.16,190.65 413.48,199.54 411.80,208.40 410.12,217.16 408.44,225.81 +406.76,234.30 405.08,242.61 403.40,250.71 401.72,258.58 400.04,266.22 398.36,273.61 396.68,280.75 395.00,287.63 393.32,294.25 391.64,300.62 389.96,306.73 388.27,312.59 386.59,318.22 384.91,323.60 383.23,328.76 381.54,333.71 +379.86,338.43 378.17,342.96 376.48,347.29 374.78,351.43 373.08,355.38 371.37,359.16 369.64,362.78 367.91,366.23 366.16,369.52 364.38,372.66 362.58,375.65 360.74,378.50 358.87,381.22 356.95,383.81 354.97,386.27 352.93,388.62 +350.81,390.85 348.61,392.97 346.31,394.99 343.90,396.92 341.36,398.74 338.70,400.48 335.89,402.14 332.92,403.71 329.79,405.21 326.48,406.63 322.99,407.97 319.31,409.25 315.45,410.46 311.39,411.60 307.16,412.68 302.75,413.69 +298.17,414.63 293.44,415.51 288.58,416.33 283.62,417.08 278.56,417.77 273.45,418.41 268.32,418.98 263.18,419.49 258.08,419.95 253.05,420.36 248.12,420.72 243.31,421.03 238.65,421.30 234.17,421.52 229.87,421.71 225.78,421.87 +221.89,422.00 218.21,422.10 214.72,422.18 211.40,422.24 208.24,422.29 205.20,422.32 202.24,422.35 199.31,422.37 196.36,422.38 193.32,422.39 190.12,422.39 186.68,422.40 182.91,422.40 178.70,422.40 173.92,422.40 168.45,422.40 +162.12,422.40 154.73,422.40 146.07,422.40 135.87,422.40 123.81,422.40 109.53,422.40 92.61,422.40 72.53,422.40 '/> + </g> + <path stroke='rgb( 50, 166, 140)' d='M72.53,422.40 L93.83,422.40 L110.97,422.40 L124.87,422.40 L136.24,422.40 L145.64,422.40 L153.48,422.40 L160.10,422.40 + L165.75,422.40 L170.65,422.40 L174.94,422.40 L178.75,422.40 L182.19,422.40 L185.33,422.40 L188.25,422.40 L191.00,422.40 + L193.63,422.39 L196.20,422.39 L198.73,422.38 L201.27,422.36 L203.84,422.34 L206.49,422.32 L209.24,422.28 L212.11,422.23 + L215.12,422.16 L218.30,422.07 L221.64,421.96 L225.18,421.82 L228.90,421.65 L232.81,421.44 L236.90,421.19 L241.16,420.89 + L245.59,420.55 L250.16,420.15 L254.85,419.69 L259.64,419.18 L264.51,418.60 L269.42,417.95 L274.35,417.23 L279.27,416.45 + L284.16,415.59 L288.98,414.65 L293.72,413.64 L298.36,412.56 L302.87,411.40 L307.24,410.16 L311.46,408.84 L315.52,407.44 + L319.41,405.96 L323.13,404.39 L326.68,402.74 L330.06,401.00 L333.28,399.17 L336.33,397.24 L339.24,395.21 L342.01,393.07 + L344.65,390.82 L347.17,388.45 L349.59,385.96 L351.91,383.34 L354.15,380.59 L356.31,377.69 L358.41,374.63 L360.46,371.42 + L362.46,368.04 L364.42,364.48 L366.35,360.73 L368.26,356.79 L370.15,352.65 L372.02,348.29 L373.88,343.71 L375.73,338.90 + L377.58,333.84 L379.41,328.54 L381.25,322.98 L383.08,317.15 L384.91,311.04 L386.74,304.65 L388.57,297.96 L390.39,290.99 + L392.22,283.72 L394.05,276.16 L395.87,268.30 L397.70,260.17 L399.53,251.77 L401.35,243.13 L403.18,234.26 L405.01,225.20 + L406.83,216.00 L408.66,206.70 L410.49,197.37 L412.31,188.07 L414.14,178.88 L415.96,169.90 L417.79,161.23 L419.62,153.01 + L421.44,145.36 L423.27,138.46 L425.10,132.49 L426.92,127.69 L426.92,132.37 L425.24,139.71 L423.56,147.54 L421.88,155.75 + L420.20,164.24 L418.52,172.94 L416.84,181.76 L415.16,190.65 L413.48,199.54 L411.80,208.40 L410.12,217.16 L408.44,225.81 + L406.76,234.30 L405.08,242.61 L403.40,250.71 L401.72,258.58 L400.04,266.22 L398.36,273.61 L396.68,280.75 L395.00,287.63 + L393.32,294.25 L391.64,300.62 L389.96,306.73 L388.27,312.59 L386.59,318.22 L384.91,323.60 L383.23,328.76 L381.54,333.71 + L379.86,338.43 L378.17,342.96 L376.48,347.29 L374.78,351.43 L373.08,355.38 L371.37,359.16 L369.64,362.78 L367.91,366.23 + L366.16,369.52 L364.38,372.66 L362.58,375.65 L360.74,378.50 L358.87,381.22 L356.95,383.81 L354.97,386.27 L352.93,388.62 + L350.81,390.85 L348.61,392.97 L346.31,394.99 L343.90,396.92 L341.36,398.74 L338.70,400.48 L335.89,402.14 L332.92,403.71 + L329.79,405.21 L326.48,406.63 L322.99,407.97 L319.31,409.25 L315.45,410.46 L311.39,411.60 L307.16,412.68 L302.75,413.69 + L298.17,414.63 L293.44,415.51 L288.58,416.33 L283.62,417.08 L278.56,417.77 L273.45,418.41 L268.32,418.98 L263.18,419.49 + L258.08,419.95 L253.05,420.36 L248.12,420.72 L243.31,421.03 L238.65,421.30 L234.17,421.52 L229.87,421.71 L225.78,421.87 + L221.89,422.00 L218.21,422.10 L214.72,422.18 L211.40,422.24 L208.24,422.29 L205.20,422.32 L202.24,422.35 L199.31,422.37 + L196.36,422.38 L193.32,422.39 L190.12,422.39 L186.68,422.40 L182.91,422.40 L178.70,422.40 L173.92,422.40 L168.45,422.40 + L162.12,422.40 L154.73,422.40 L146.07,422.40 L135.87,422.40 L123.81,422.40 L109.53,422.40 L92.61,422.40 L72.53,422.40 + '/></g> + </g> + <g id="gnuplot_plot_17" ><title>PSI consumed tasks</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(504.88,87.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> <text><tspan font-family="Arial" >PSI consumed tasks</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 88, 98, 237)' stroke-dasharray='1.0,2.0' d='M231.55,103.50 L279.71,103.50 M72.53,422.40 L107.41,421.69 L137.92,420.97 L164.59,420.23 L187.90,419.47 L208.24,418.68 + <path stroke='rgb( 88, 98, 237)' stroke-dasharray='1.0,2.0' d='M514.67,82.50 L562.83,82.50 M72.53,422.40 L107.41,421.69 L137.92,420.97 L164.59,420.23 L187.90,419.47 L208.24,418.68 L226.00,417.87 L241.50,417.04 L255.03,416.19 L266.83,415.32 L277.14,414.45 L286.15,413.56 L294.03,412.68 L300.93,411.80 L306.99,410.92 L312.31,410.07 L317.01,409.23 L321.16,408.42 L324.85,407.63 L328.14,406.88 L331.09,406.15 L333.75,405.47 L336.16,404.82 L338.36,404.20 L340.37,403.62 L342.24,403.08 L343.98,402.56 L345.61,402.07 L347.15,401.61 L348.61,401.16 @@ -458,7 +718,7 @@ L412.68,233.82 L413.77,227.91 L414.87,221.99 L415.96,216.09 L417.06,210.22 L418.16,204.40 L419.25,198.65 L420.35,193.00 L421.44,187.47 L422.54,182.09 L423.63,176.89 L424.73,171.91 L425.83,167.19 L426.92,162.77 '/></g> </g> - <g id="gnuplot_plot_10" fill="none"><title>gnuplot_plot_10</title> + <g id="gnuplot_plot_18" fill="none"><title>gnuplot_plot_18</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> <polygon fill = 'rgb( 88, 98, 237)' fill-opacity = '0.300000' points = '72.53,422.40 107.41,421.67 137.92,420.89 164.59,420.08 187.89,419.23 208.24,418.35 226.00,417.45 241.50,416.53 255.03,415.59 266.83,414.64 277.14,413.69 286.15,412.74 294.03,411.78 300.93,410.84 306.99,409.92 312.31,409.01 @@ -502,14 +762,14 @@ L234.75,418.94 L219.37,419.57 L201.91,420.16 L182.09,420.70 L159.61,421.20 L134.12,421.65 L105.24,422.05 L72.53,422.40 '/></g> </g> - <g id="gnuplot_plot_11" ><title>SSI consumed tasks</title> + <g id="gnuplot_plot_19" ><title>SSI consumed tasks</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(504.88,24.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <g transform="translate(504.88,108.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> <text><tspan font-family="Arial" >SSI consumed tasks</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 0, 0, 0)' stroke-dasharray='1.0,2.0' d='M514.67,19.50 L562.83,19.50 M72.53,422.40 L95.86,419.74 L117.84,417.06 L138.53,414.34 L158.00,411.58 L176.31,408.77 + <path stroke='rgb( 0, 0, 0)' stroke-dasharray='1.0,2.0' d='M514.67,103.50 L562.83,103.50 M72.53,422.40 L95.86,419.74 L117.84,417.06 L138.53,414.34 L158.00,411.58 L176.31,408.77 L193.52,405.91 L209.68,403.00 L224.86,400.03 L239.10,396.99 L252.46,393.90 L264.98,390.74 L276.70,387.51 L287.68,384.22 L297.96,380.87 L307.57,377.46 L316.55,373.99 L324.94,370.45 L332.77,366.87 L340.08,363.24 L346.91,359.56 L353.26,355.84 L359.19,352.08 L364.71,348.29 L369.85,344.48 L374.64,340.65 L379.09,336.81 L383.23,332.97 L387.08,329.13 L390.66,325.29 @@ -523,7 +783,7 @@ L449.20,231.63 L449.72,229.07 L450.23,226.17 L450.74,222.90 L451.25,219.24 L451.76,215.17 L452.27,210.66 L452.78,205.69 L453.30,200.24 L453.81,194.29 L454.32,187.83 L454.83,180.82 L455.34,173.25 L455.85,165.11 '/></g> </g> - <g id="gnuplot_plot_12" fill="none"><title>gnuplot_plot_12</title> + <g id="gnuplot_plot_20" fill="none"><title>gnuplot_plot_20</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> <polygon fill = 'rgb( 45, 5, 5)' fill-opacity = '0.300000' points = '72.53,422.40 95.86,418.91 117.84,415.39 138.53,411.83 158.00,408.22 176.31,404.58 193.52,400.88 209.68,397.14 224.86,393.35 239.10,389.50 252.46,385.61 264.98,381.66 276.70,377.66 287.68,373.62 297.96,369.52 307.57,365.38 @@ -567,266 +827,6 @@ L209.68,407.61 L193.52,409.87 L176.31,412.07 L158.00,414.22 L138.53,416.32 L117.84,418.38 L95.86,420.40 L72.53,422.40 '/></g> </g> - <g id="gnuplot_plot_13" ><title>Consumption</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(504.88,45.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> - <text><tspan font-family="Arial" >Consumption</tspan></text> - </g> -</g> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb(252, 83, 92)' d='M514.67,40.50 L562.83,40.50 M72.53,340.21 L109.56,339.66 L141.65,339.26 L169.44,338.98 L193.48,338.81 L214.28,338.73 - L232.27,338.72 L247.83,338.77 L261.29,338.85 L272.94,338.96 L283.03,339.08 L291.78,339.20 L299.39,339.30 L306.03,339.37 - L311.82,339.41 L316.91,339.40 L321.40,339.33 L325.37,339.19 L328.92,338.99 L332.11,338.71 L334.99,338.36 L337.62,337.92 - L340.04,337.40 L342.29,336.81 L344.39,336.13 L346.37,335.37 L348.26,334.54 L350.06,333.64 L351.80,332.68 L353.48,331.65 - L355.12,330.58 L356.72,329.45 L358.28,328.29 L359.82,327.09 L361.34,325.86 L362.83,324.62 L364.31,323.36 L365.77,322.08 - L367.21,320.81 L368.64,319.53 L370.05,318.26 L371.45,317.00 L372.83,315.75 L374.20,314.51 L375.55,313.28 L376.89,312.07 - L378.22,310.87 L379.53,309.69 L380.83,308.53 L382.12,307.37 L383.40,306.23 L384.67,305.09 L385.92,303.97 L387.17,302.84 - L388.41,301.72 L389.64,300.59 L390.86,299.46 L392.07,298.32 L393.28,297.16 L394.48,295.99 L395.68,294.80 L396.87,293.59 - L398.06,292.36 L399.25,291.09 L400.43,289.79 L401.61,288.46 L402.78,287.10 L403.96,285.69 L405.14,284.25 L406.31,282.76 - L407.48,281.22 L408.65,279.64 L409.82,278.01 L410.99,276.33 L412.16,274.60 L413.33,272.81 L414.50,270.96 L415.67,269.05 - L416.84,267.08 L418.01,265.04 L419.18,262.93 L420.35,260.75 L421.52,258.48 L422.69,256.13 L423.85,253.68 L425.02,251.13 - L426.19,248.48 L427.36,245.70 L428.53,242.79 L429.70,239.74 L430.87,236.54 L432.04,233.17 L433.21,229.60 L434.37,225.84 - L435.54,221.86 L436.71,217.64 L437.88,213.15 L439.05,208.39 L440.22,203.33 L441.39,197.95 '/></g> - </g> - <g id="gnuplot_plot_14" fill="none"><title>gnuplot_plot_14</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb(255, 105, 65)' fill-opacity = '0.300000' points = '72.53,331.71 109.56,331.36 141.65,331.12 169.44,330.98 193.48,330.94 214.28,330.98 232.27,331.10 247.83,331.28 261.29,331.50 272.94,331.76 283.03,332.04 291.78,332.32 299.39,332.59 306.03,332.85 311.82,333.06 316.91,333.24 -321.40,333.36 325.37,333.41 328.92,333.40 332.11,333.30 334.99,333.13 337.62,332.87 340.04,332.52 342.29,332.09 344.39,331.57 346.37,330.97 348.26,330.28 350.06,329.52 351.80,328.68 353.48,327.77 355.12,326.80 356.72,325.78 -358.28,324.70 359.82,323.58 361.34,322.43 362.83,321.24 364.31,320.03 365.77,318.79 367.21,317.54 368.64,316.28 370.05,315.01 371.45,313.75 372.83,312.48 374.20,311.21 375.55,309.94 376.89,308.69 378.22,307.43 379.53,306.19 -380.83,304.94 382.12,303.71 383.40,302.47 384.67,301.24 385.92,300.01 387.17,298.77 388.41,297.53 389.64,296.29 390.86,295.03 392.07,293.76 393.28,292.48 394.48,291.18 395.68,289.86 396.87,288.52 398.06,287.15 399.25,285.76 -400.43,284.33 401.61,282.88 402.78,281.39 403.96,279.86 405.14,278.30 406.31,276.69 407.48,275.04 408.65,273.34 409.82,271.59 410.99,269.79 412.16,267.93 413.33,266.01 414.50,264.03 415.67,261.98 416.84,259.85 418.01,257.65 -419.18,255.36 420.35,252.98 421.52,250.50 422.68,247.92 423.85,245.24 425.02,242.44 426.19,239.52 427.36,236.47 428.53,233.30 429.70,230.00 430.87,226.58 432.04,223.04 433.21,219.38 434.37,215.64 435.54,211.82 436.71,207.96 -437.88,204.10 439.05,200.30 440.22,196.63 441.39,193.17 434.16,245.78 433.06,247.42 431.96,249.15 430.87,250.95 429.77,252.80 428.68,254.68 427.58,256.59 426.48,258.51 425.39,260.42 424.29,262.33 423.20,264.22 422.10,266.09 -421.00,267.93 419.91,269.73 418.81,271.50 417.72,273.23 416.62,274.92 415.53,276.56 414.43,278.16 413.33,279.72 412.24,281.23 411.14,282.69 410.04,284.11 408.95,285.49 407.85,286.83 406.75,288.12 405.65,289.38 404.56,290.60 -403.46,291.78 402.35,292.93 401.25,294.05 400.15,295.15 399.04,296.22 397.93,297.27 396.82,298.30 395.70,299.31 394.58,300.32 393.46,301.31 392.33,302.29 391.20,303.27 390.06,304.25 388.91,305.23 387.76,306.21 386.59,307.19 -385.42,308.19 384.24,309.19 383.06,310.21 381.86,311.24 380.65,312.28 379.42,313.34 378.19,314.42 376.95,315.51 375.69,316.61 374.42,317.73 373.14,318.87 371.84,320.02 370.54,321.17 369.22,322.34 367.89,323.51 366.54,324.68 -365.18,325.85 363.80,327.02 362.42,328.18 361.01,329.32 359.59,330.45 358.14,331.55 356.67,332.62 355.18,333.66 353.65,334.67 352.08,335.63 350.47,336.54 348.81,337.41 347.07,338.22 345.26,338.98 343.35,339.67 341.33,340.31 -339.17,340.88 336.84,341.39 334.31,341.84 331.55,342.22 328.51,342.55 325.14,342.81 321.39,343.02 317.18,343.17 312.44,343.28 307.08,343.34 300.99,343.37 294.07,343.36 286.18,343.32 277.16,343.26 266.84,343.19 255.03,343.12 -241.50,343.05 226.00,342.99 208.24,342.95 187.89,342.96 164.59,343.02 137.92,343.15 107.41,343.38 72.53,343.72 '/> - </g> - <path stroke='rgb(252, 83, 92)' d='M72.53,331.71 L109.56,331.36 L141.65,331.12 L169.44,330.98 L193.48,330.94 L214.28,330.98 L232.27,331.10 L247.83,331.28 - L261.29,331.50 L272.94,331.76 L283.03,332.04 L291.78,332.32 L299.39,332.59 L306.03,332.85 L311.82,333.06 L316.91,333.24 - L321.40,333.36 L325.37,333.41 L328.92,333.40 L332.11,333.30 L334.99,333.13 L337.62,332.87 L340.04,332.52 L342.29,332.09 - L344.39,331.57 L346.37,330.97 L348.26,330.28 L350.06,329.52 L351.80,328.68 L353.48,327.77 L355.12,326.80 L356.72,325.78 - L358.28,324.70 L359.82,323.58 L361.34,322.43 L362.83,321.24 L364.31,320.03 L365.77,318.79 L367.21,317.54 L368.64,316.28 - L370.05,315.01 L371.45,313.75 L372.83,312.48 L374.20,311.21 L375.55,309.94 L376.89,308.69 L378.22,307.43 L379.53,306.19 - L380.83,304.94 L382.12,303.71 L383.40,302.47 L384.67,301.24 L385.92,300.01 L387.17,298.77 L388.41,297.53 L389.64,296.29 - L390.86,295.03 L392.07,293.76 L393.28,292.48 L394.48,291.18 L395.68,289.86 L396.87,288.52 L398.06,287.15 L399.25,285.76 - L400.43,284.33 L401.61,282.88 L402.78,281.39 L403.96,279.86 L405.14,278.30 L406.31,276.69 L407.48,275.04 L408.65,273.34 - L409.82,271.59 L410.99,269.79 L412.16,267.93 L413.33,266.01 L414.50,264.03 L415.67,261.98 L416.84,259.85 L418.01,257.65 - L419.18,255.36 L420.35,252.98 L421.52,250.50 L422.68,247.92 L423.85,245.24 L425.02,242.44 L426.19,239.52 L427.36,236.47 - L428.53,233.30 L429.70,230.00 L430.87,226.58 L432.04,223.04 L433.21,219.38 L434.37,215.64 L435.54,211.82 L436.71,207.96 - L437.88,204.10 L439.05,200.30 L440.22,196.63 L441.39,193.17 L434.16,245.78 L433.06,247.42 L431.96,249.15 L430.87,250.95 - L429.77,252.80 L428.68,254.68 L427.58,256.59 L426.48,258.51 L425.39,260.42 L424.29,262.33 L423.20,264.22 L422.10,266.09 - L421.00,267.93 L419.91,269.73 L418.81,271.50 L417.72,273.23 L416.62,274.92 L415.53,276.56 L414.43,278.16 L413.33,279.72 - L412.24,281.23 L411.14,282.69 L410.04,284.11 L408.95,285.49 L407.85,286.83 L406.75,288.12 L405.65,289.38 L404.56,290.60 - L403.46,291.78 L402.35,292.93 L401.25,294.05 L400.15,295.15 L399.04,296.22 L397.93,297.27 L396.82,298.30 L395.70,299.31 - L394.58,300.32 L393.46,301.31 L392.33,302.29 L391.20,303.27 L390.06,304.25 L388.91,305.23 L387.76,306.21 L386.59,307.19 - L385.42,308.19 L384.24,309.19 L383.06,310.21 L381.86,311.24 L380.65,312.28 L379.42,313.34 L378.19,314.42 L376.95,315.51 - L375.69,316.61 L374.42,317.73 L373.14,318.87 L371.84,320.02 L370.54,321.17 L369.22,322.34 L367.89,323.51 L366.54,324.68 - L365.18,325.85 L363.80,327.02 L362.42,328.18 L361.01,329.32 L359.59,330.45 L358.14,331.55 L356.67,332.62 L355.18,333.66 - L353.65,334.67 L352.08,335.63 L350.47,336.54 L348.81,337.41 L347.07,338.22 L345.26,338.98 L343.35,339.67 L341.33,340.31 - L339.17,340.88 L336.84,341.39 L334.31,341.84 L331.55,342.22 L328.51,342.55 L325.14,342.81 L321.39,343.02 L317.18,343.17 - L312.44,343.28 L307.08,343.34 L300.99,343.37 L294.07,343.36 L286.18,343.32 L277.16,343.26 L266.84,343.19 L255.03,343.12 - L241.50,343.05 L226.00,342.99 L208.24,342.95 L187.89,342.96 L164.59,343.02 L137.92,343.15 L107.41,343.38 L72.53,343.72 - '/></g> - </g> - <g id="gnuplot_plot_15" ><title>MASTA+</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(504.88,66.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> - <text><tspan font-family="Arial" >MASTA+</tspan></text> - </g> -</g> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 50, 166, 140)' d='M514.67,61.50 L562.83,61.50 M72.53,340.21 L93.83,341.82 L110.97,343.11 L124.87,344.18 L136.24,345.09 L145.64,345.90 - L153.48,346.62 L160.10,347.28 L165.75,347.89 L170.65,348.46 L174.94,348.98 L178.75,349.47 L182.19,349.91 L185.33,350.32 - L188.25,350.69 L191.00,351.02 L193.63,351.32 L196.20,351.58 L198.73,351.81 L201.27,352.02 L203.84,352.19 L206.49,352.35 - L209.24,352.48 L212.11,352.60 L215.12,352.71 L218.29,352.81 L221.64,352.90 L225.18,352.98 L228.90,353.06 L232.81,353.14 - L236.90,353.21 L241.16,353.28 L245.59,353.34 L250.16,353.39 L254.85,353.44 L259.64,353.48 L264.51,353.51 L269.42,353.52 - L274.35,353.53 L279.27,353.51 L284.16,353.48 L288.98,353.43 L293.72,353.36 L298.36,353.27 L302.87,353.15 L307.24,353.00 - L311.46,352.83 L315.52,352.62 L319.41,352.38 L323.13,352.10 L326.68,351.79 L330.06,351.44 L333.28,351.05 L336.33,350.62 - L339.24,350.15 L342.01,349.64 L344.65,349.10 L347.17,348.52 L349.59,347.92 L351.91,347.29 L354.15,346.63 L356.31,345.97 - L358.41,345.29 L360.46,344.61 L362.46,343.93 L364.42,343.25 L366.36,342.60 L368.26,341.96 L370.15,341.35 L372.02,340.76 - L373.88,340.20 L375.73,339.68 L377.58,339.19 L379.41,338.74 L381.25,338.31 L383.08,337.93 L384.91,337.57 L386.74,337.24 - L388.57,336.93 L390.39,336.66 L392.22,336.40 L394.05,336.17 L395.87,335.96 L397.70,335.77 L399.53,335.60 L401.35,335.46 - L403.18,335.34 L405.01,335.25 L406.83,335.18 L408.66,335.15 L410.48,335.15 L412.31,335.17 L414.14,335.23 L415.96,335.31 - L417.79,335.41 L419.62,335.52 L421.44,335.64 L423.27,335.76 L425.10,335.87 L426.92,335.97 '/></g> - </g> - <g id="gnuplot_plot_16" fill="none"><title>gnuplot_plot_16</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '72.53,334.59 93.83,337.37 110.97,339.51 124.87,341.19 136.24,342.55 145.64,343.66 153.48,344.60 160.10,345.40 165.75,346.09 170.65,346.69 174.94,347.22 178.75,347.69 182.19,348.10 185.33,348.46 188.25,348.79 191.00,349.07 -193.63,349.33 196.20,349.56 198.73,349.77 201.27,349.95 203.84,350.12 206.49,350.28 209.24,350.42 212.11,350.55 215.12,350.67 218.30,350.78 221.64,350.89 225.18,350.99 228.90,351.08 232.81,351.16 236.90,351.24 241.16,351.31 -245.59,351.36 250.16,351.40 254.85,351.44 259.64,351.45 264.51,351.46 269.42,351.44 274.35,351.41 279.27,351.37 284.16,351.30 288.98,351.22 293.72,351.11 298.36,350.99 302.87,350.84 307.24,350.66 311.46,350.46 315.52,350.23 -319.41,349.97 323.13,349.68 326.68,349.36 330.06,349.00 333.28,348.61 336.33,348.18 339.24,347.72 342.01,347.22 344.65,346.68 347.17,346.12 349.59,345.52 351.91,344.90 354.15,344.26 356.31,343.61 358.41,342.94 360.46,342.28 -362.46,341.61 364.42,340.95 366.35,340.30 368.26,339.68 370.15,339.07 372.02,338.50 373.88,337.95 375.73,337.43 377.58,336.95 379.41,336.50 381.25,336.08 383.08,335.70 384.91,335.34 386.74,335.01 388.57,334.70 390.39,334.42 -392.22,334.16 394.05,333.91 395.87,333.69 397.70,333.48 399.53,333.28 401.35,333.11 403.18,332.95 405.01,332.81 406.83,332.69 408.66,332.60 410.49,332.52 412.31,332.47 414.14,332.43 415.96,332.41 417.79,332.40 419.62,332.38 -421.44,332.34 423.27,332.25 425.10,332.09 426.92,331.81 426.92,337.90 425.24,337.85 423.56,337.80 421.88,337.76 420.20,337.73 418.52,337.73 416.84,337.74 415.16,337.77 413.48,337.82 411.80,337.89 410.12,337.97 408.44,338.07 -406.76,338.18 405.08,338.30 403.40,338.44 401.72,338.59 400.04,338.75 398.36,338.92 396.68,339.10 395.00,339.29 393.32,339.49 391.64,339.70 389.96,339.92 388.27,340.16 386.59,340.42 384.91,340.70 383.23,341.00 381.54,341.32 -379.86,341.67 378.17,342.04 376.48,342.45 374.78,342.88 373.08,343.34 371.37,343.84 369.64,344.36 367.91,344.90 366.16,345.47 364.38,346.06 362.58,346.66 360.74,347.28 358.87,347.90 356.95,348.52 354.97,349.13 352.93,349.74 -350.81,350.33 348.61,350.90 346.31,351.45 343.90,351.96 341.36,352.45 338.70,352.91 335.89,353.33 332.92,353.71 329.79,354.05 326.48,354.36 322.99,354.64 319.31,354.88 315.45,355.09 311.39,355.26 307.16,355.41 302.75,355.54 -298.17,355.64 293.44,355.72 288.58,355.78 283.62,355.83 278.56,355.87 273.45,355.90 268.32,355.92 263.18,355.93 258.08,355.94 253.05,355.93 248.12,355.93 243.31,355.91 238.65,355.89 234.17,355.86 229.87,355.82 225.78,355.77 -221.89,355.70 218.21,355.61 214.72,355.51 211.40,355.38 208.24,355.22 205.20,355.05 202.24,354.84 199.31,354.60 196.36,354.33 193.32,354.02 190.12,353.68 186.68,353.31 182.91,352.91 178.70,352.46 173.92,351.98 168.45,351.46 -162.12,350.90 154.73,350.28 146.07,349.59 135.87,348.83 123.81,347.97 109.53,347.00 92.61,345.88 72.53,344.59 '/> - </g> - <path stroke='rgb( 50, 166, 140)' d='M72.53,334.59 L93.83,337.37 L110.97,339.51 L124.87,341.19 L136.24,342.55 L145.64,343.66 L153.48,344.60 L160.10,345.40 - L165.75,346.09 L170.65,346.69 L174.94,347.22 L178.75,347.69 L182.19,348.10 L185.33,348.46 L188.25,348.79 L191.00,349.07 - L193.63,349.33 L196.20,349.56 L198.73,349.77 L201.27,349.95 L203.84,350.12 L206.49,350.28 L209.24,350.42 L212.11,350.55 - L215.12,350.67 L218.30,350.78 L221.64,350.89 L225.18,350.99 L228.90,351.08 L232.81,351.16 L236.90,351.24 L241.16,351.31 - L245.59,351.36 L250.16,351.40 L254.85,351.44 L259.64,351.45 L264.51,351.46 L269.42,351.44 L274.35,351.41 L279.27,351.37 - L284.16,351.30 L288.98,351.22 L293.72,351.11 L298.36,350.99 L302.87,350.84 L307.24,350.66 L311.46,350.46 L315.52,350.23 - L319.41,349.97 L323.13,349.68 L326.68,349.36 L330.06,349.00 L333.28,348.61 L336.33,348.18 L339.24,347.72 L342.01,347.22 - L344.65,346.68 L347.17,346.12 L349.59,345.52 L351.91,344.90 L354.15,344.26 L356.31,343.61 L358.41,342.94 L360.46,342.28 - L362.46,341.61 L364.42,340.95 L366.35,340.30 L368.26,339.68 L370.15,339.07 L372.02,338.50 L373.88,337.95 L375.73,337.43 - L377.58,336.95 L379.41,336.50 L381.25,336.08 L383.08,335.70 L384.91,335.34 L386.74,335.01 L388.57,334.70 L390.39,334.42 - L392.22,334.16 L394.05,333.91 L395.87,333.69 L397.70,333.48 L399.53,333.28 L401.35,333.11 L403.18,332.95 L405.01,332.81 - L406.83,332.69 L408.66,332.60 L410.49,332.52 L412.31,332.47 L414.14,332.43 L415.96,332.41 L417.79,332.40 L419.62,332.38 - L421.44,332.34 L423.27,332.25 L425.10,332.09 L426.92,331.81 L426.92,337.90 L425.24,337.85 L423.56,337.80 L421.88,337.76 - L420.20,337.73 L418.52,337.73 L416.84,337.74 L415.16,337.77 L413.48,337.82 L411.80,337.89 L410.12,337.97 L408.44,338.07 - L406.76,338.18 L405.08,338.30 L403.40,338.44 L401.72,338.59 L400.04,338.75 L398.36,338.92 L396.68,339.10 L395.00,339.29 - L393.32,339.49 L391.64,339.70 L389.96,339.92 L388.27,340.16 L386.59,340.42 L384.91,340.70 L383.23,341.00 L381.54,341.32 - L379.86,341.67 L378.17,342.04 L376.48,342.45 L374.78,342.88 L373.08,343.34 L371.37,343.84 L369.64,344.36 L367.91,344.90 - L366.16,345.47 L364.38,346.06 L362.58,346.66 L360.74,347.28 L358.87,347.90 L356.95,348.52 L354.97,349.13 L352.93,349.74 - L350.81,350.33 L348.61,350.90 L346.31,351.45 L343.90,351.96 L341.36,352.45 L338.70,352.91 L335.89,353.33 L332.92,353.71 - L329.79,354.05 L326.48,354.36 L322.99,354.64 L319.31,354.88 L315.45,355.09 L311.39,355.26 L307.16,355.41 L302.75,355.54 - L298.17,355.64 L293.44,355.72 L288.58,355.78 L283.62,355.83 L278.56,355.87 L273.45,355.90 L268.32,355.92 L263.18,355.93 - L258.08,355.94 L253.05,355.93 L248.12,355.93 L243.31,355.91 L238.65,355.89 L234.17,355.86 L229.87,355.82 L225.78,355.77 - L221.89,355.70 L218.21,355.61 L214.72,355.51 L211.40,355.38 L208.24,355.22 L205.20,355.05 L202.24,354.84 L199.31,354.60 - L196.36,354.33 L193.32,354.02 L190.12,353.68 L186.68,353.31 L182.91,352.91 L178.70,352.46 L173.92,351.98 L168.45,351.46 - L162.12,350.90 L154.73,350.28 L146.07,349.59 L135.87,348.83 L123.81,347.97 L109.53,347.00 L92.61,345.88 L72.53,344.59 - '/></g> - </g> - <g id="gnuplot_plot_17" ><title>PSI</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(504.88,87.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> - <text><tspan font-family="Arial" >PSI</tspan></text> - </g> -</g> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 88, 98, 237)' d='M514.67,82.50 L562.83,82.50 M72.53,340.21 L107.41,339.95 L137.92,339.85 L164.59,339.87 L187.90,339.99 L208.24,340.18 - L226.00,340.41 L241.50,340.67 L255.03,340.94 L266.83,341.21 L277.14,341.46 L286.15,341.68 L294.03,341.87 L300.93,342.00 - L306.99,342.09 L312.31,342.11 L317.01,342.06 L321.16,341.94 L324.85,341.75 L328.14,341.48 L331.09,341.13 L333.75,340.70 - L336.16,340.19 L338.36,339.60 L340.37,338.94 L342.24,338.20 L343.98,337.39 L345.61,336.52 L347.15,335.59 L348.61,334.61 - L350.01,333.59 L351.35,332.52 L352.65,331.42 L353.91,330.30 L355.14,329.16 L356.35,328.01 L357.54,326.86 L358.70,325.72 - L359.86,324.58 L361.00,323.46 L362.13,322.36 L363.26,321.28 L364.38,320.24 L365.49,319.22 L366.60,318.24 L367.71,317.30 - L368.81,316.39 L369.92,315.52 L371.02,314.68 L372.12,313.88 L373.22,313.11 L374.32,312.38 L375.41,311.67 L376.51,310.99 - L377.61,310.33 L378.70,309.70 L379.80,309.07 L380.90,308.46 L381.99,307.86 L383.09,307.26 L384.18,306.66 L385.28,306.06 - L386.38,305.45 L387.47,304.83 L388.57,304.20 L389.66,303.55 L390.76,302.88 L391.86,302.19 L392.95,301.47 L394.05,300.73 - L395.14,299.96 L396.24,299.15 L397.33,298.31 L398.43,297.43 L399.53,296.52 L400.62,295.57 L401.72,294.58 L402.81,293.55 - L403.91,292.48 L405.01,291.36 L406.10,290.21 L407.20,289.01 L408.29,287.77 L409.39,286.49 L410.48,285.17 L411.58,283.80 - L412.68,282.39 L413.77,280.95 L414.87,279.47 L415.96,277.95 L417.06,276.40 L418.16,274.81 L419.25,273.20 L420.35,271.56 - L421.44,269.89 L422.54,268.20 L423.63,266.49 L424.73,264.76 L425.83,263.02 L426.92,261.27 '/></g> - </g> - <g id="gnuplot_plot_18" fill="none"><title>gnuplot_plot_18</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb( 88, 98, 237)' fill-opacity = '0.300000' points = '72.53,331.71 107.41,332.32 137.92,332.97 164.59,333.62 187.89,334.27 208.24,334.92 226.00,335.53 241.50,336.12 255.03,336.67 266.83,337.16 277.14,337.61 286.15,337.99 294.03,338.31 300.93,338.56 306.99,338.73 312.31,338.84 -317.01,338.86 321.16,338.80 324.85,338.65 328.14,338.43 331.09,338.12 333.75,337.73 336.16,337.25 338.36,336.70 340.37,336.06 342.24,335.36 343.98,334.59 345.61,333.75 347.15,332.85 348.61,331.90 350.01,330.91 351.35,329.87 -352.65,328.80 353.91,327.71 355.14,326.59 356.35,325.46 357.54,324.33 358.70,323.19 359.86,322.06 361.00,320.93 362.13,319.83 363.26,318.74 364.38,317.67 365.49,316.63 366.60,315.61 367.71,314.63 368.81,313.68 369.92,312.75 -371.02,311.86 372.12,310.99 373.22,310.16 374.32,309.35 375.41,308.57 376.51,307.81 377.61,307.07 378.70,306.35 379.80,305.64 380.90,304.94 381.99,304.25 383.09,303.57 384.18,302.88 385.28,302.20 386.38,301.51 387.47,300.81 -388.57,300.10 389.66,299.38 390.76,298.63 391.86,297.87 392.95,297.09 394.05,296.29 395.14,295.45 396.24,294.59 397.34,293.70 398.43,292.77 399.53,291.81 400.62,290.81 401.72,289.77 402.81,288.70 403.91,287.58 405.01,286.41 -406.10,285.20 407.20,283.95 408.29,282.65 409.39,281.30 410.49,279.90 411.58,278.45 412.68,276.96 413.77,275.42 414.87,273.82 415.96,272.19 417.06,270.50 418.16,268.78 419.25,267.01 420.35,265.21 421.44,263.37 422.54,261.50 -423.64,259.61 424.73,257.69 425.83,255.76 426.92,253.82 426.92,275.68 425.90,276.26 424.88,276.94 423.85,277.69 422.83,278.52 421.81,279.42 420.79,280.36 419.76,281.35 418.74,282.38 417.72,283.43 416.70,284.51 415.67,285.60 -414.65,286.71 413.63,287.83 412.60,288.94 411.58,290.06 410.56,291.17 409.53,292.28 408.51,293.37 407.49,294.45 406.46,295.51 405.44,296.55 404.41,297.58 403.39,298.58 402.36,299.56 401.34,300.52 400.31,301.46 399.28,302.37 -398.25,303.27 397.21,304.14 396.17,304.99 395.13,305.82 394.09,306.64 393.04,307.44 391.99,308.23 390.94,309.00 389.87,309.77 388.81,310.53 387.73,311.29 386.65,312.05 385.56,312.82 384.46,313.59 383.36,314.36 382.24,315.15 -381.12,315.95 379.98,316.77 378.84,317.61 377.68,318.46 376.51,319.34 375.33,320.24 374.14,321.15 372.94,322.10 371.73,323.06 370.51,324.04 369.28,325.04 368.03,326.06 366.77,327.09 365.50,328.14 364.22,329.19 362.93,330.25 -361.62,331.31 360.30,332.36 358.97,333.40 357.61,334.43 356.24,335.44 354.84,336.42 353.41,337.37 351.96,338.29 350.46,339.17 348.91,340.00 347.31,340.79 345.64,341.52 343.89,342.19 342.04,342.81 340.08,343.36 337.99,343.85 -335.73,344.28 333.29,344.64 330.62,344.94 327.69,345.18 324.47,345.35 320.88,345.46 316.89,345.52 312.42,345.52 307.40,345.48 301.75,345.39 295.38,345.26 288.16,345.10 280.00,344.91 270.73,344.70 260.23,344.48 248.30,344.25 -234.75,344.04 219.37,343.83 201.91,343.66 182.09,343.52 159.61,343.44 134.12,343.44 105.24,343.52 72.53,343.72 '/> - </g> - <path stroke='rgb( 88, 98, 237)' d='M72.53,331.71 L107.41,332.32 L137.92,332.97 L164.59,333.62 L187.89,334.27 L208.24,334.92 L226.00,335.53 L241.50,336.12 - L255.03,336.67 L266.83,337.16 L277.14,337.61 L286.15,337.99 L294.03,338.31 L300.93,338.56 L306.99,338.73 L312.31,338.84 - L317.01,338.86 L321.16,338.80 L324.85,338.65 L328.14,338.43 L331.09,338.12 L333.75,337.73 L336.16,337.25 L338.36,336.70 - L340.37,336.06 L342.24,335.36 L343.98,334.59 L345.61,333.75 L347.15,332.85 L348.61,331.90 L350.01,330.91 L351.35,329.87 - L352.65,328.80 L353.91,327.71 L355.14,326.59 L356.35,325.46 L357.54,324.33 L358.70,323.19 L359.86,322.06 L361.00,320.93 - L362.13,319.83 L363.26,318.74 L364.38,317.67 L365.49,316.63 L366.60,315.61 L367.71,314.63 L368.81,313.68 L369.92,312.75 - L371.02,311.86 L372.12,310.99 L373.22,310.16 L374.32,309.35 L375.41,308.57 L376.51,307.81 L377.61,307.07 L378.70,306.35 - L379.80,305.64 L380.90,304.94 L381.99,304.25 L383.09,303.57 L384.18,302.88 L385.28,302.20 L386.38,301.51 L387.47,300.81 - L388.57,300.10 L389.66,299.38 L390.76,298.63 L391.86,297.87 L392.95,297.09 L394.05,296.29 L395.14,295.45 L396.24,294.59 - L397.34,293.70 L398.43,292.77 L399.53,291.81 L400.62,290.81 L401.72,289.77 L402.81,288.70 L403.91,287.58 L405.01,286.41 - L406.10,285.20 L407.20,283.95 L408.29,282.65 L409.39,281.30 L410.49,279.90 L411.58,278.45 L412.68,276.96 L413.77,275.42 - L414.87,273.82 L415.96,272.19 L417.06,270.50 L418.16,268.78 L419.25,267.01 L420.35,265.21 L421.44,263.37 L422.54,261.50 - L423.64,259.61 L424.73,257.69 L425.83,255.76 L426.92,253.82 L426.92,275.68 L425.90,276.26 L424.88,276.94 L423.85,277.69 - L422.83,278.52 L421.81,279.42 L420.79,280.36 L419.76,281.35 L418.74,282.38 L417.72,283.43 L416.70,284.51 L415.67,285.60 - L414.65,286.71 L413.63,287.83 L412.60,288.94 L411.58,290.06 L410.56,291.17 L409.53,292.28 L408.51,293.37 L407.49,294.45 - L406.46,295.51 L405.44,296.55 L404.41,297.58 L403.39,298.58 L402.36,299.56 L401.34,300.52 L400.31,301.46 L399.28,302.37 - L398.25,303.27 L397.21,304.14 L396.17,304.99 L395.13,305.82 L394.09,306.64 L393.04,307.44 L391.99,308.23 L390.94,309.00 - L389.87,309.77 L388.81,310.53 L387.73,311.29 L386.65,312.05 L385.56,312.82 L384.46,313.59 L383.36,314.36 L382.24,315.15 - L381.12,315.95 L379.98,316.77 L378.84,317.61 L377.68,318.46 L376.51,319.34 L375.33,320.24 L374.14,321.15 L372.94,322.10 - L371.73,323.06 L370.51,324.04 L369.28,325.04 L368.03,326.06 L366.77,327.09 L365.50,328.14 L364.22,329.19 L362.93,330.25 - L361.62,331.31 L360.30,332.36 L358.97,333.40 L357.61,334.43 L356.24,335.44 L354.84,336.42 L353.41,337.37 L351.96,338.29 - L350.46,339.17 L348.91,340.00 L347.31,340.79 L345.64,341.52 L343.89,342.19 L342.04,342.81 L340.08,343.36 L337.99,343.85 - L335.73,344.28 L333.29,344.64 L330.62,344.94 L327.69,345.18 L324.47,345.35 L320.88,345.46 L316.89,345.52 L312.42,345.52 - L307.40,345.48 L301.75,345.39 L295.38,345.26 L288.16,345.10 L280.00,344.91 L270.73,344.70 L260.23,344.48 L248.30,344.25 - L234.75,344.04 L219.37,343.83 L201.91,343.66 L182.09,343.52 L159.61,343.44 L134.12,343.44 L105.24,343.52 L72.53,343.72 - '/></g> - </g> - <g id="gnuplot_plot_19" ><title>SSI</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(504.88,108.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> - <text><tspan font-family="Arial" >SSI</tspan></text> - </g> -</g> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 0, 0, 0)' d='M514.67,103.50 L562.83,103.50 M72.53,340.21 L95.86,336.60 L117.84,333.19 L138.53,329.96 L158.00,326.90 L176.31,324.02 - L193.52,321.29 L209.68,318.70 L224.86,316.26 L239.10,313.96 L252.46,311.78 L264.98,309.71 L276.70,307.76 L287.68,305.91 - L297.96,304.15 L307.57,302.49 L316.55,300.91 L324.94,299.40 L332.77,297.97 L340.08,296.60 L346.91,295.29 L353.26,294.03 - L359.19,292.82 L364.71,291.65 L369.85,290.51 L374.64,289.41 L379.09,288.34 L383.23,287.28 L387.08,286.24 L390.66,285.22 - L393.99,284.20 L397.08,283.18 L399.96,282.16 L402.63,281.14 L405.11,280.10 L407.43,279.05 L409.58,277.99 L411.58,276.90 - L413.44,275.79 L415.18,274.65 L416.80,273.48 L418.31,272.27 L419.73,271.03 L421.05,269.74 L422.29,268.42 L423.46,267.04 - L424.56,265.62 L425.59,264.15 L426.57,262.63 L427.49,261.06 L428.37,259.43 L429.21,257.74 L430.01,255.99 L430.77,254.19 - L431.51,252.32 L432.21,250.39 L432.89,248.41 L433.55,246.36 L434.19,244.25 L434.81,242.08 L435.42,239.84 L436.01,237.55 - L436.59,235.20 L437.16,232.79 L437.72,230.33 L438.28,227.81 L438.82,225.23 L439.37,222.61 L439.90,219.94 L440.43,217.23 - L440.96,214.47 L441.49,211.68 L442.01,208.85 L442.53,206.00 L443.05,203.11 L443.56,200.21 L444.08,197.29 L444.59,194.37 - L445.11,191.43 L445.62,188.51 L446.13,185.59 L446.65,182.68 L447.16,179.80 L447.67,176.95 L448.18,174.14 L448.69,171.37 - L449.20,168.66 L449.72,166.02 L450.23,163.45 L450.74,160.96 L451.25,158.57 L451.76,156.29 L452.27,154.12 L452.78,152.08 - L453.30,150.19 L453.81,148.44 L454.32,146.86 L454.83,145.45 L455.34,144.24 L455.85,143.24 '/></g> - </g> - <g id="gnuplot_plot_20" fill="none"><title>gnuplot_plot_20</title> -<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb( 45, 5, 5)' fill-opacity = '0.300000' points = '72.53,331.71 95.86,328.50 117.84,325.43 138.53,322.50 158.00,319.69 176.31,317.00 193.52,314.43 209.68,311.98 224.86,309.63 239.10,307.38 252.46,305.23 264.98,303.18 276.70,301.21 287.68,299.33 297.96,297.53 307.57,295.80 -316.55,294.13 324.94,292.54 332.77,290.99 340.08,289.51 346.91,288.07 353.27,286.67 359.19,285.32 364.71,283.99 369.85,282.69 374.64,281.42 379.09,280.16 383.23,278.92 387.08,277.69 390.66,276.45 393.99,275.22 397.08,273.98 -399.96,272.73 402.63,271.46 405.11,270.17 407.43,268.86 409.58,267.52 411.58,266.15 413.44,264.74 415.18,263.30 416.80,261.81 418.31,260.27 419.73,258.69 421.05,257.06 422.29,255.37 423.46,253.63 424.56,251.83 425.59,249.98 -426.57,248.06 427.49,246.09 428.37,244.05 429.21,241.96 430.01,239.80 430.77,237.58 431.51,235.31 432.21,232.98 432.89,230.59 433.55,228.14 434.19,225.65 434.81,223.10 435.42,220.51 436.01,217.88 436.59,215.21 437.16,212.50 -437.72,209.76 438.28,207.00 438.82,204.22 439.37,201.41 439.90,198.60 440.43,195.79 440.96,192.97 441.49,190.16 442.01,187.37 442.53,184.59 443.05,181.84 443.56,179.13 444.08,176.45 444.59,173.82 445.11,171.24 445.62,168.72 -446.13,166.27 446.65,163.89 447.16,161.58 447.67,159.36 448.18,157.22 448.69,155.18 449.20,153.24 449.72,151.39 450.23,149.65 450.74,148.02 451.25,146.49 451.76,145.07 452.27,143.76 452.78,142.55 453.30,141.46 453.81,140.46 -454.32,139.56 454.83,138.74 455.34,138.01 455.85,137.36 455.85,152.69 455.34,153.44 454.83,154.40 454.32,155.55 453.81,156.89 453.30,158.41 452.78,160.09 452.27,161.91 451.76,163.88 451.25,165.98 450.74,168.20 450.23,170.52 -449.72,172.94 449.20,175.44 448.69,178.03 448.18,180.68 447.67,183.39 447.16,186.15 446.65,188.95 446.13,191.78 445.62,194.64 445.11,197.52 444.59,200.40 444.08,203.29 443.56,206.17 443.05,209.04 442.53,211.90 442.01,214.74 -441.49,217.55 440.96,220.32 440.43,223.06 439.90,225.77 439.37,228.42 438.82,231.03 438.28,233.59 437.72,236.09 437.16,238.54 436.59,240.92 436.01,243.25 435.42,245.52 434.81,247.72 434.19,249.85 433.55,251.93 432.89,253.93 -432.21,255.87 431.51,257.75 430.77,259.56 430.01,261.31 429.21,262.99 428.37,264.61 427.49,266.17 426.57,267.67 425.59,269.12 424.56,270.51 423.46,271.84 422.29,273.13 421.05,274.37 419.73,275.56 418.31,276.71 416.80,277.82 -415.18,278.90 413.44,279.95 411.58,280.97 409.58,281.96 407.43,282.93 405.11,283.89 402.63,284.83 399.96,285.77 397.08,286.70 393.99,287.64 390.66,288.58 387.08,289.53 383.23,290.50 379.09,291.49 374.64,292.50 369.85,293.55 -364.71,294.63 359.19,295.75 353.27,296.92 346.91,298.14 340.08,299.42 332.77,300.77 324.94,302.19 316.55,303.68 307.57,305.25 297.96,306.92 287.68,308.68 276.70,310.55 264.98,312.52 252.46,314.62 239.10,316.83 224.86,319.18 -209.68,321.67 193.52,324.30 176.31,327.10 158.00,330.06 138.53,333.19 117.84,336.50 95.86,340.01 72.53,343.72 '/> - </g> - <path stroke='rgb( 0, 0, 0)' d='M72.53,331.71 L95.86,328.50 L117.84,325.43 L138.53,322.50 L158.00,319.69 L176.31,317.00 L193.52,314.43 L209.68,311.98 - L224.86,309.63 L239.10,307.38 L252.46,305.23 L264.98,303.18 L276.70,301.21 L287.68,299.33 L297.96,297.53 L307.57,295.80 - L316.55,294.13 L324.94,292.54 L332.77,290.99 L340.08,289.51 L346.91,288.07 L353.27,286.67 L359.19,285.32 L364.71,283.99 - L369.85,282.69 L374.64,281.42 L379.09,280.16 L383.23,278.92 L387.08,277.69 L390.66,276.45 L393.99,275.22 L397.08,273.98 - L399.96,272.73 L402.63,271.46 L405.11,270.17 L407.43,268.86 L409.58,267.52 L411.58,266.15 L413.44,264.74 L415.18,263.30 - L416.80,261.81 L418.31,260.27 L419.73,258.69 L421.05,257.06 L422.29,255.37 L423.46,253.63 L424.56,251.83 L425.59,249.98 - L426.57,248.06 L427.49,246.09 L428.37,244.05 L429.21,241.96 L430.01,239.80 L430.77,237.58 L431.51,235.31 L432.21,232.98 - L432.89,230.59 L433.55,228.14 L434.19,225.65 L434.81,223.10 L435.42,220.51 L436.01,217.88 L436.59,215.21 L437.16,212.50 - L437.72,209.76 L438.28,207.00 L438.82,204.22 L439.37,201.41 L439.90,198.60 L440.43,195.79 L440.96,192.97 L441.49,190.16 - L442.01,187.37 L442.53,184.59 L443.05,181.84 L443.56,179.13 L444.08,176.45 L444.59,173.82 L445.11,171.24 L445.62,168.72 - L446.13,166.27 L446.65,163.89 L447.16,161.58 L447.67,159.36 L448.18,157.22 L448.69,155.18 L449.20,153.24 L449.72,151.39 - L450.23,149.65 L450.74,148.02 L451.25,146.49 L451.76,145.07 L452.27,143.76 L452.78,142.55 L453.30,141.46 L453.81,140.46 - L454.32,139.56 L454.83,138.74 L455.34,138.01 L455.85,137.36 L455.85,152.69 L455.34,153.44 L454.83,154.40 L454.32,155.55 - L453.81,156.89 L453.30,158.41 L452.78,160.09 L452.27,161.91 L451.76,163.88 L451.25,165.98 L450.74,168.20 L450.23,170.52 - L449.72,172.94 L449.20,175.44 L448.69,178.03 L448.18,180.68 L447.67,183.39 L447.16,186.15 L446.65,188.95 L446.13,191.78 - L445.62,194.64 L445.11,197.52 L444.59,200.40 L444.08,203.29 L443.56,206.17 L443.05,209.04 L442.53,211.90 L442.01,214.74 - L441.49,217.55 L440.96,220.32 L440.43,223.06 L439.90,225.77 L439.37,228.42 L438.82,231.03 L438.28,233.59 L437.72,236.09 - L437.16,238.54 L436.59,240.92 L436.01,243.25 L435.42,245.52 L434.81,247.72 L434.19,249.85 L433.55,251.93 L432.89,253.93 - L432.21,255.87 L431.51,257.75 L430.77,259.56 L430.01,261.31 L429.21,262.99 L428.37,264.61 L427.49,266.17 L426.57,267.67 - L425.59,269.12 L424.56,270.51 L423.46,271.84 L422.29,273.13 L421.05,274.37 L419.73,275.56 L418.31,276.71 L416.80,277.82 - L415.18,278.90 L413.44,279.95 L411.58,280.97 L409.58,281.96 L407.43,282.93 L405.11,283.89 L402.63,284.83 L399.96,285.77 - L397.08,286.70 L393.99,287.64 L390.66,288.58 L387.08,289.53 L383.23,290.50 L379.09,291.49 L374.64,292.50 L369.85,293.55 - L364.71,294.63 L359.19,295.75 L353.27,296.92 L346.91,298.14 L340.08,299.42 L332.77,300.77 L324.94,302.19 L316.55,303.68 - L307.57,305.25 L297.96,306.92 L287.68,308.68 L276.70,310.55 L264.98,312.52 L252.46,314.62 L239.10,316.83 L224.86,319.18 - L209.68,321.67 L193.52,324.30 L176.31,327.10 L158.00,330.06 L138.53,333.19 L117.84,336.50 L95.86,340.01 L72.53,343.72 - '/></g> - </g> <g fill="none" color="white" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> diff --git a/experiments/jobRelease/monitor.plot b/experiments/jobRelease/monitor.plot index 19b48824e4cf4d5811fff7a3fe8aaaf320907449..bbd5002c4019d6e79c8339f029675609e651fbec 100644 --- a/experiments/jobRelease/monitor.plot +++ b/experiments/jobRelease/monitor.plot @@ -21,7 +21,7 @@ set yrange [0:4] set y2range [0:128] set ytics nomirror tc "black" set y2tics nomirror tc "black" -set ylabel "Mean flowtime (mn)" font ",16" tc "black" +set ylabel "Mean flowtime (mins)" font ",16" tc "black" set y2label "Number of tasks" font ",16" tc "black" set table 'data/q1NbDelegatedTasks.dat' @@ -107,26 +107,23 @@ unset table set format x "10^%.0f" set output 'figures/monitor.svg' -plot "data/quartilesNegotiationLog.csv" using ($1):($3) smooth bezier dt 7 lc "#32a68c" title 'MASTA+ delegated tasks' axes x1y2,\ +plot "data/quartilesNoNegotiationLog.csv" using ($1):($9) smooth bezier dt 1 lc "#fc535c" title 'Consumption' axes x1y1,\ + "< tail -r data/q1NoNegFlowtime.dat | cat data/q2NoNegFlowtime.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#ff6941" fs transparent solid 0.3 border lc "#fc535c" notitle axes x1y1,\ + "data/quartilesNegotiationLog.csv" using ($1):($9) smooth bezier axes x1y1 dt 1 lc "#32a68c" title 'MASTA+',\ + "< tail -r data/q1NegFlowtime.dat | cat data/q2NegFlowtime.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle axes x1y1,\ + "data/quartilesPsiLog.csv" using ($1):($9) smooth bezier axes x1y1 dt 1 lc "#5862ed" title 'PSI',\ + "< tail -r data/q1PsiFlowtime.dat | cat data/q2PsiFlowtime.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle axes x1y1,\ + "data/quartilesSsiLog.csv" using ($1):($9) smooth bezier axes x1y1 dt 1 lc "#000000" title 'SSI',\ + "< tail -r data/q1SsiFlowtime.dat | cat data/q2SsiFlowtime.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#2d0505" fs transparent solid 0.3 border lc "#000000" notitle axes x1y1,\ + "data/quartilesNegotiationLog.csv" using ($1):($3) smooth bezier dt 7 lc "#32a68c" title 'MASTA+ delegated tasks' axes x1y2,\ "< tail -r data/q1NbDelegatedTasks.dat | cat data/q2NbDelegatedTasks.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle axes x1y2,\ "data/quartilesPsiLog.csv" using ($1):($3) smooth bezier dt 7 lc "#5862ed" title 'PSI delegated tasks' axes x1y2,\ "< tail -r data/q1PsiNbDelegatedTasks.dat | cat data/q2PsiNbDelegatedTasks.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle axes x1y2,\ - "data/quartilesNegotiationLog.csv" using ($1):($6) smooth bezier dt 8 lc "#32a68c" title 'MASTA+ consumed tasks' axes x1y2,\ - "< tail -r data/q1NbConsumedTasks.dat | cat data/q2NbConsumedTasks.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle axes x1y2,\ "data/quartilesNoNegotiationLog.csv" using ($1):($6) smooth bezier dt 8 lc "#fc535c" title 'Consumed tasks' axes x1y2,\ "< tail -r data/q1NoNegNbConsumedTasks.dat | cat data/q2NoNegNbConsumedTasks.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#ff6941" fs transparent solid 0.3 border lc "#fc535c" notitle axes x1y2,\ + "data/quartilesNegotiationLog.csv" using ($1):($6) smooth bezier dt 8 lc "#32a68c" title 'MASTA+ consumed tasks' axes x1y2,\ + "< tail -r data/q1NbConsumedTasks.dat | cat data/q2NbConsumedTasks.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle axes x1y2,\ "data/quartilesPsiLog.csv" using ($1):($6) smooth bezier dt 8 lc "#5862ed" title 'PSI consumed tasks' axes x1y2,\ "< tail -r data/q1PsiNbConsumedTasks.dat | cat data/q2PsiNbConsumedTasks.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle axes x1y2,\ "data/quartilesSsiLog.csv" using ($1):($6) smooth bezier dt 8 lc "#000000" title 'SSI consumed tasks' axes x1y2,\ "< tail -r data/q1SsiNbConsumedTasks.dat | cat data/q2SsiNbConsumedTasks.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#2d0505" fs transparent solid 0.3 border lc "#000000" notitle axes x1y2,\ - "data/quartilesNoNegotiationLog.csv" using ($1):($9) smooth bezier dt 1 lc "#fc535c" title 'Consumption' axes x1y1,\ - "< tail -r data/q1NoNegFlowtime.dat | cat data/q2NoNegFlowtime.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#ff6941" fs transparent solid 0.3 border lc "#fc535c" notitle axes x1y1,\ - "data/quartilesNegotiationLog.csv" using ($1):($9) smooth bezier axes x1y1 dt 1 lc "#32a68c" title 'MASTA+',\ - "< tail -r data/q1NegFlowtime.dat | cat data/q2NegFlowtime.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle axes x1y1,\ - "data/quartilesPsiLog.csv" using ($1):($9) smooth bezier axes x1y1 dt 1 lc "#5862ed" title 'PSI',\ - "< tail -r data/q1PsiFlowtime.dat | cat data/q2PsiFlowtime.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle axes x1y1,\ - "data/quartilesSsiLog.csv" using ($1):($9) smooth bezier axes x1y1 dt 1 lc "#000000" title 'SSI',\ - "< tail -r data/q1SsiFlowtime.dat | cat data/q2SsiFlowtime.dat - | awk 'BEGIN{OFS=\",\"}{print $1,$2}' " using 1:2 with filledcurves fc "#2d0505" fs transparent solid 0.3 border lc "#000000" notitle axes x1y1 - - - diff --git a/src/main/scala/org/smastaplus/consumer/nodeal/SynchronousDecentralizedConsumer.scala b/src/main/scala/org/smastaplus/consumer/nodeal/SynchronousDecentralizedConsumer.scala index ab73847a0d6fb55138d2144e0a05b84d4faaafb0..668617245e4e769ee15ccbc0ebda36ccd722a093 100644 --- a/src/main/scala/org/smastaplus/consumer/nodeal/SynchronousDecentralizedConsumer.scala +++ b/src/main/scala/org/smastaplus/consumer/nodeal/SynchronousDecentralizedConsumer.scala @@ -49,6 +49,7 @@ class SynchronousDecentralizedConsumer(stap: STAP, val future = distributor ? Init(allocation) val result = Await.result(future, timeout.duration).asInstanceOf[Outcome] if (debug) println(s"DecentralizedConsumption ends") + nbDeals = result.metrics.sumOfDelegationConfirmations nbDelegations = result.metrics.sumOfDelegationConfirmations nbSwaps = result.metrics.sumOfSwapConfirmations nbFirstStages = result.nbFirstStages diff --git a/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionCampaign.scala b/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionCampaign.scala index 13a85d70ae3812c1c6497257bbc3be7e2d167a82..ab5b24e78a0bdda545ba7490a7e11c236ec91621 100644 --- a/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionCampaign.scala +++ b/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionCampaign.scala @@ -26,7 +26,7 @@ class ConsumptionCampaign(simulatedCost: SimulatedCost, fromStable: Boolean = fa val configurations : List[ConsumptionConfiguration] = { // The configurations val numbersOfJobs = List.range(4, 5, 1) // l in [4,5[ - val numbersOfTasks = List.range(280, 320, 40) + val numbersOfTasks = List.range(40, 320, 40) if (byNodes) List.tabulate(9)(nbNodes => new ConsumptionConfiguration(8+ nbNodes, 4, 120, Uncorrelated)) else { @@ -142,6 +142,11 @@ class ConsumptionCampaign(simulatedCost: SimulatedCost, fromStable: Boolean = fa var initialSimulatedFlowtime = 0.0 nbRuns += 1 consumers = List[SynchronousConsumer]() + val setting = new ConsumptionSetting(allocation, consumer) + initialLocalRatio = setting.localityRate + initialGlobalFlowtime = setting.globalFlowtime + initialSimulatedFlowtime = setting.simulatedFlowtime + detailedDataForOneRun += s"$initialLocalRatio,$initialGlobalFlowtime,$initialSimulatedFlowtime," consumerTypes.foreach{ ConsumerType => // foreach consumer type val consumer = ConsumerType match { case "DecentralizedConsumerMultiDelegationGlobalFlowtime" => @@ -187,13 +192,12 @@ class ConsumptionCampaign(simulatedCost: SimulatedCost, fromStable: Boolean = fa incomesLocalityRatios ::= setting.localityRate incomesGlobalFlowtimes ::= setting.globalFlowtime incomesSimulatedFlowtimes ::= setting.simulatedFlowtime - outcome = experiments.run().asInstanceOf[DealConsumptionOutcome] + outcome = experiments.run() if (debug) println(s"ConsumptionCampaign: configuration=$configuration consumer=${consumer.name} run $nbRuns ends") outcomes = outcomes.updatedWith(consumer.name)({ case Some(list) => Some(outcome :: list) case None => Some(List(outcome)) }) - detailedDataForOneRun += s"$initialLocalRatio,$initialGlobalFlowtime,$initialSimulatedFlowtime," detailedDataForOneRun += s"${outcome.metrics("00MeanRealFlowtime")},${outcome.metrics("01MeanGlobalFlowtime")},${outcome.metrics("02SolvingTime")}," + s"${outcome.metrics("03LocalRatio")},${outcome.metrics("04NbDeals")},${outcome.metrics("05NbDelegations")},${outcome.metrics("06NbSwaps")}," + s"${outcome.metrics("07NbTimeouts")},${outcome.metrics("08EndowmentSize")},${outcome.metrics("09NbDelegatedTasks")}," + @@ -213,13 +217,17 @@ class ConsumptionCampaign(simulatedCost: SimulatedCost, fromStable: Boolean = fa val consumptionExperiments = new ConsumptionExperiment(consumptionSetting) if (debug) println(s"ConsumptionCampaign: configuration=$configuration consumer=${consumer.name} run $nbRuns") - outcomeWithoutNegotiation = consumptionExperiments.run().asInstanceOf[DealConsumptionOutcome] + outcomeWithoutNegotiation = consumptionExperiments.run() if (debug) println(s"ConsumptionCampaign: configuration=$configuration consumer=${consumer.name} run $nbRuns ends") consumptionOutcomes = consumptionOutcomes.updatedWith(consumer.name)({ case Some(list) => Some(outcomeWithoutNegotiation :: list) case None => Some(List(outcomeWithoutNegotiation)) }) - detailedDataForOneRun += s"${outcomeWithoutNegotiation.metrics("00MeanRealFlowtime")}," + + detailedDataForOneRun += s"${outcomeWithoutNegotiation.metrics("00MeanRealFlowtime")},${outcomeWithoutNegotiation.metrics("01MeanGlobalFlowtime")},${outcomeWithoutNegotiation.metrics("02SolvingTime")}," + + s"${outcomeWithoutNegotiation.metrics("03LocalRatio")},${outcomeWithoutNegotiation.metrics("04NbDeals")},${outcomeWithoutNegotiation.metrics("05NbDelegations")},${outcomeWithoutNegotiation.metrics("06NbSwaps")}," + + s"${outcomeWithoutNegotiation.metrics("07NbTimeouts")},${outcomeWithoutNegotiation.metrics("08EndowmentSize")},${outcomeWithoutNegotiation.metrics("09NbDelegatedTasks")}," + + s"${outcomeWithoutNegotiation.metrics("10NbFirstStages")},${outcomeWithoutNegotiation.metrics("11NbSecondStages")},${outcomeWithoutNegotiation.metrics("12MeanSimulatedFlowtime")}," writerDetailed.write(s"$detailedDataForOneRun\n") writerDetailed.flush() diff --git a/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionExperiment.scala b/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionExperiment.scala index 3911a6883a78f061115ae5c5de0d494439233fcc..9629e3c96a0e6b3174ad0464c0179796a7711d20 100644 --- a/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionExperiment.scala +++ b/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionExperiment.scala @@ -58,9 +58,9 @@ class ConsumptionExperiment(setting: ConsumptionSetting) extends Experiment[Cons /** * Runs the experiment */ - def run(): ConsumptionOutcome = { + def run(): DealConsumptionOutcome = { var result: ExecutedAllocation = setting.allocation - var outcome = new ConsumptionOutcome() + var outcome = new DealConsumptionOutcome() val startingTime = System.nanoTime() result = setting.consumer.consume(setting.allocation) val solvingTime = System.nanoTime() - startingTime