From 1f9748f5ec923191ad3a46bd3ca7f43a0c031546 Mon Sep 17 00:00:00 2001 From: Erik Date: Thu, 26 Oct 2023 22:16:33 +0200 Subject: [PATCH 1/7] path => requiredEvents, string[] => Item[] --- src/Class/Groups.ts | 6 ++--- src/alg/TimeDistribution.ts | 2 +- .../TimeDistribution/AllocateGroupsToItems.ts | 4 ++-- src/alg/TimeDistribution/DistributeGroups.ts | 10 ++++---- src/alg/TimeDistribution/FindPaths.ts | 24 +++++++++++-------- src/types/Group.ts | 4 +++- src/types/Path_config.ts | 4 +++- test/Groups.test.ts | 16 +++++++++---- 8 files changed, 43 insertions(+), 27 deletions(-) diff --git a/src/Class/Groups.ts b/src/Class/Groups.ts index 36dde07..19f652f 100644 --- a/src/Class/Groups.ts +++ b/src/Class/Groups.ts @@ -8,14 +8,14 @@ class Groups { add(path: string[], studentId: string): void { const existingGroup = this.groups.find((group) => - arraysHaveSameValues(group.path, path) + arraysHaveSameValues(group.requiredEvents, path) ); if (existingGroup) { existingGroup.studentIds.push(studentId); } else { this.groups.push({ - path, + requiredEvents: path, studentIds: [studentId], _id: this.groups.length + 1, }); @@ -28,7 +28,7 @@ class Groups { get(path: string[]): Group { return this.groups.find((group) => - arraysHaveSameValues(group.path, path) + arraysHaveSameValues(group.requiredEvents, path) ); } } diff --git a/src/alg/TimeDistribution.ts b/src/alg/TimeDistribution.ts index 0e1d92b..1374b45 100644 --- a/src/alg/TimeDistribution.ts +++ b/src/alg/TimeDistribution.ts @@ -25,7 +25,7 @@ function buildGroupsByPaths( function createPQ(groups: Group[]): PriorityQueue { const pq = new PriorityQueue(); groups.forEach((group) => { - pq.enqueue(group, group.path.length); + pq.enqueue(group, group.requiredEvents.length); }); return pq; } diff --git a/src/alg/TimeDistribution/AllocateGroupsToItems.ts b/src/alg/TimeDistribution/AllocateGroupsToItems.ts index fd223cc..f7df41f 100644 --- a/src/alg/TimeDistribution/AllocateGroupsToItems.ts +++ b/src/alg/TimeDistribution/AllocateGroupsToItems.ts @@ -22,8 +22,8 @@ function allocateGroupsToItems( ); path_config.path.forEach((eventId) => { - if (items.some((item) => item._id === eventId)) { - const item = items.find((item) => item._id === eventId); + if (items.some((item) => item === eventId)) { + const item = items.find((item) => item === eventId); if (item) { item.studentIds.push(...ids); } diff --git a/src/alg/TimeDistribution/DistributeGroups.ts b/src/alg/TimeDistribution/DistributeGroups.ts index 7d0d2ab..1101a13 100644 --- a/src/alg/TimeDistribution/DistributeGroups.ts +++ b/src/alg/TimeDistribution/DistributeGroups.ts @@ -14,8 +14,8 @@ function createRecordOfCurrentUsedCapacity( const record: Record = {}; paths.forEach((path) => { path.path.forEach((pathItem) => { - record[pathItem] = - (record[pathItem] || 0) + + record[pathItem._id] = + (record[pathItem._id] || 0) + path.valueForTestingStudentDistribution; }); }); @@ -34,7 +34,7 @@ function distributeStudentsToPaths( paths.forEach((path) => { if (path.groupId === group._id && amountStudentsRemaining > 0) { const min = Math.min( - getMaxAvailableCapacity(path.path, items) - + getMaxAvailableCapacity(path.path) - path.valueForTestingStudentDistribution, amountStudentsRemaining ); @@ -68,7 +68,7 @@ function checkForExceedingGroupCapacities( items.forEach((item) => { if (record[item._id] > item.groupCapazity) { redistribute( - item._id, + item, record[item._id] - item.groupCapazity, items, paths @@ -77,7 +77,7 @@ function checkForExceedingGroupCapacities( }); } function redistribute( - failedId: string, + failedId: Item, excessStudents: number, items: Item[], paths: Path_config[] diff --git a/src/alg/TimeDistribution/FindPaths.ts b/src/alg/TimeDistribution/FindPaths.ts index 3c7c5c3..70331f5 100644 --- a/src/alg/TimeDistribution/FindPaths.ts +++ b/src/alg/TimeDistribution/FindPaths.ts @@ -15,9 +15,17 @@ function findPathsForTheGroups( const requiredIds = new Set(getDefaultIds(project)); const entries = g.getNodesWithoutIngoingEdges(); groups.forEach((group) => { - const ids = new Set([...requiredIds, ...group.path]); + const ids = new Set([...requiredIds, ...group.requiredEvents]); entries.forEach((entry: GraphNode) => { - dfs(entry, ids, [], group.path, group._id, items, path_configs); + dfs( + entry, + ids, + [], + group.requiredEvents, + group._id, + items, + path_configs + ); }); }); @@ -26,7 +34,7 @@ function findPathsForTheGroups( function dfs( node: GraphNode, remainingIds: Set, - path: string[], + path: Item[], extraIds: string[], groupId: number, items: Item[], @@ -38,7 +46,7 @@ function dfs( return; } - const newPath = [...path, node.value._id]; + const newPath = [...path, node.value]; remainingIds.delete(node.value.eventId); if (remainingIds.size === 0) { @@ -63,11 +71,7 @@ function dfs( remainingIds.add(node.value.eventId); } -function getMaxAvailableCapacity(path: string[], items: Item[]): number { - return Math.min( - ...items - .filter((item) => path.includes(item._id)) - .map((item) => item.groupCapazity) - ); +function getMaxAvailableCapacity(path: Item[]): number { + return Math.min(...path.map((item) => item.groupCapazity)); } export { findPathsForTheGroups, getMaxAvailableCapacity }; diff --git a/src/types/Group.ts b/src/types/Group.ts index a01c07b..5b5f65a 100644 --- a/src/types/Group.ts +++ b/src/types/Group.ts @@ -1,5 +1,7 @@ +import Item from './Item'; + export interface Group { _id: number; - path: string[]; + requiredEvents: string[]; studentIds: string[]; } diff --git a/src/types/Path_config.ts b/src/types/Path_config.ts index 77848ad..d039aa5 100644 --- a/src/types/Path_config.ts +++ b/src/types/Path_config.ts @@ -1,5 +1,7 @@ +import Item from './Item'; + export interface Path_config { groupId: number; - path: string[]; + path: Item[]; valueForTestingStudentDistribution: number; } diff --git a/test/Groups.test.ts b/test/Groups.test.ts index 4e6660e..544c6ac 100644 --- a/test/Groups.test.ts +++ b/test/Groups.test.ts @@ -13,7 +13,11 @@ describe('Groups class', () => { groups.add(path, studentId); - const expectedGroup: Group = { path, studentIds: [studentId], _id: 1 }; + const expectedGroup: Group = { + requiredEvents: path, + studentIds: [studentId], + _id: 1, + }; expect(groups.getAll()).toEqual([expectedGroup]); }); @@ -28,8 +32,8 @@ describe('Groups class', () => { groups.add(path2, studentId2); const expectedGroups: Group[] = [ - { path: path1, studentIds: [studentId1], _id: 1 }, - { path: path2, studentIds: [studentId2], _id: 2 }, + { requiredEvents: path1, studentIds: [studentId1], _id: 1 }, + { requiredEvents: path2, studentIds: [studentId2], _id: 2 }, ]; expect(groups.getAll()).toEqual(expectedGroups); }); @@ -42,7 +46,11 @@ describe('Groups class', () => { const retrievedGroup = groups.get(path); - const expectedGroup: Group = { path, studentIds: [studentId], _id: 1 }; + const expectedGroup: Group = { + requiredEvents: path, + studentIds: [studentId], + _id: 1, + }; expect(retrievedGroup).toEqual(expectedGroup); }); From d52becc439a8f3e6a69d71019cfcc93802ddd6cc Mon Sep 17 00:00:00 2001 From: Erik Date: Thu, 26 Oct 2023 22:40:04 +0200 Subject: [PATCH 2/7] Added benchmark script and command. --- benchmark/timeDistribution.ts | 42 +++++++++++++++++++++++++++++++++++ package.json | 3 ++- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 benchmark/timeDistribution.ts diff --git a/benchmark/timeDistribution.ts b/benchmark/timeDistribution.ts new file mode 100644 index 0000000..e905c23 --- /dev/null +++ b/benchmark/timeDistribution.ts @@ -0,0 +1,42 @@ +import { main } from '../src/alg/TimeDistribution'; +import { getItems } from '../src/data/Items'; +import { getPolls } from '../src/data/Polls'; +import { getProject } from '../src/data/Projects'; +import { getStudents } from '../src/data/Students'; +const project = getProject(); +const projectId = project._id; +const items = getItems(projectId); +const students = getStudents(projectId); +const polls = getPolls(projectId); +// Benchmark settings +const numIterations = 1000; +const executionTimes: number[] = []; + +// Run the function 1000 times and record execution times +for (let i = 0; i < numIterations; i++) { + const startTime = performance.now(); + main(items, students, project, polls); + const endTime = performance.now(); + const executionTime = endTime - startTime; + executionTimes.push(executionTime); +} + +// Sort the execution times in ascending order +executionTimes.sort((a, b) => a - b); + +// Calculate the middle value (median) +let middleValue: number; + +if (numIterations % 2 === 0) { + // If the number of iterations is even, take the average of the two middle values + const middleIndex1 = numIterations / 2 - 1; + const middleIndex2 = numIterations / 2; + middleValue = + (executionTimes[middleIndex1] + executionTimes[middleIndex2]) / 2; +} else { + // If the number of iterations is odd, take the middle value directly + const middleIndex = Math.floor(numIterations / 2); + middleValue = executionTimes[middleIndex]; +} + +console.log(`Middle Execution Time: ${middleValue} milliseconds`); diff --git a/package.json b/package.json index 12ec6a7..9bc3b63 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,8 @@ "build": "tsc --build", "clean": "tsc --build --clean", "test": "jest", - "start": "ts-node src/index.ts" + "start": "ts-node src/index.ts", + "benchmark": "ts-node benchmark/timeDistribution" }, "devDependencies": { "@types/jest": "^29.5.5", From 139bcc10f06a8ea96fd7c8e0b5eb73dd735567c9 Mon Sep 17 00:00:00 2001 From: Erik Date: Thu, 26 Oct 2023 23:34:33 +0200 Subject: [PATCH 3/7] Updated benchmark. --- benchmark/timeDistribution.ts | 41 + results.json | 2020 +++++++++++++++++++++++++++++++++ 2 files changed, 2061 insertions(+) create mode 100644 results.json diff --git a/benchmark/timeDistribution.ts b/benchmark/timeDistribution.ts index e905c23..401ec89 100644 --- a/benchmark/timeDistribution.ts +++ b/benchmark/timeDistribution.ts @@ -3,11 +3,14 @@ import { getItems } from '../src/data/Items'; import { getPolls } from '../src/data/Polls'; import { getProject } from '../src/data/Projects'; import { getStudents } from '../src/data/Students'; +import * as fs from 'fs'; + const project = getProject(); const projectId = project._id; const items = getItems(projectId); const students = getStudents(projectId); const polls = getPolls(projectId); + // Benchmark settings const numIterations = 1000; const executionTimes: number[] = []; @@ -40,3 +43,41 @@ if (numIterations % 2 === 0) { } console.log(`Middle Execution Time: ${middleValue} milliseconds`); + +// Save results to JSON file +const benchmarkResults = { + algorithm: 'TimeDistribution', // Change this to your algorithm name + version: 'v1', // Change this to your algorithm version + numIterations, + executionTimes, + middleValue, + timestamp: new Date().toISOString(), +}; + +const resultsJson = JSON.stringify(benchmarkResults, null, 2); + +// Append results to the existing file or create a new file if it doesn't exist +const resultsFilePath = 'results.json'; // Replace with your desired file name +let existingResultsArray: any[] = []; + +if (fs.existsSync(resultsFilePath)) { + try { + const existingResults = fs.readFileSync(resultsFilePath, 'utf-8'); + existingResultsArray = JSON.parse(existingResults); + if (!Array.isArray(existingResultsArray)) { + existingResultsArray = []; + } + } catch (error) { + console.error('Error parsing existing results:', error); + existingResultsArray = []; + } +} + +existingResultsArray.push(benchmarkResults); + +fs.writeFileSync( + resultsFilePath, + JSON.stringify(existingResultsArray, null, 2) +); + +console.log('Results saved to', resultsFilePath); diff --git a/results.json b/results.json new file mode 100644 index 0000000..4280dbe --- /dev/null +++ b/results.json @@ -0,0 +1,2020 @@ +[ + { + "algorithm": "TimeDistribution", + "version": "v1", + "numIterations": 1000, + "executionTimes": [ + 0.1704999804496765, + 0.17100000381469727, + 0.1710999608039856, + 0.17110002040863037, + 0.17110002040863037, + 0.1711999773979187, + 0.17120003700256348, + 0.1712999939918518, + 0.1712999939918518, + 0.1712999939918518, + 0.1714000105857849, + 0.1714000105857849, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17159998416900635, + 0.17159998416900635, + 0.17160004377365112, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17179995775222778, + 0.17179995775222778, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.1718999743461609, + 0.1718999743461609, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.171999990940094, + 0.17200005054473877, + 0.17209994792938232, + 0.1721000075340271, + 0.1721000075340271, + 0.1721000075340271, + 0.1721000075340271, + 0.17219996452331543, + 0.1722000241279602, + 0.1722000241279602, + 0.17229998111724854, + 0.17229998111724854, + 0.1723000407218933, + 0.1723000407218933, + 0.1723000407218933, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17240005731582642, + 0.17249995470046997, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.1727999448776245, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.1730000376701355, + 0.1730000376701355, + 0.1730000376701355, + 0.1730000376701355, + 0.1730000376701355, + 0.1730000376701355, + 0.1730000376701355, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.1731000542640686, + 0.17319995164871216, + 0.17319995164871216, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17329996824264526, + 0.17329996824264526, + 0.17329996824264526, + 0.17329996824264526, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.17370003461837769, + 0.17370003461837769, + 0.17370003461837769, + 0.17370003461837769, + 0.17370003461837769, + 0.17370003461837769, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17389994859695435, + 0.17389994859695435, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17399996519088745, + 0.17399996519088745, + 0.17399996519088745, + 0.17399996519088745, + 0.17399996519088745, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.17440003156661987, + 0.17440003156661987, + 0.17440003156661987, + 0.17440003156661987, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.17469996213912964, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17479997873306274, + 0.17479997873306274, + 0.17479997873306274, + 0.17479997873306274, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17499995231628418, + 0.17499995231628418, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17510002851486206, + 0.17510002851486206, + 0.17510002851486206, + 0.17510002851486206, + 0.17510002851486206, + 0.17510002851486206, + 0.17510002851486206, + 0.17510002851486206, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.17520004510879517, + 0.17520004510879517, + 0.17520004510879517, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.17539995908737183, + 0.17539995908737183, + 0.17539995908737183, + 0.17539995908737183, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.17549997568130493, + 0.17549997568130493, + 0.17549997568130493, + 0.17549997568130493, + 0.17549997568130493, + 0.17549997568130493, + 0.17549997568130493, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.1756000518798828, + 0.17570000886917114, + 0.17570000886917114, + 0.17570000886917114, + 0.17570000886917114, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17580002546310425, + 0.17580002546310425, + 0.17580002546310425, + 0.17580002546310425, + 0.17580002546310425, + 0.17580002546310425, + 0.17580002546310425, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17590004205703735, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.176099956035614, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.17619997262954712, + 0.17619997262954712, + 0.17619997262954712, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.17629998922348022, + 0.17629998922348022, + 0.176300048828125, + 0.176300048828125, + 0.17640000581741333, + 0.17640000581741333, + 0.17640000581741333, + 0.17640000581741333, + 0.17640000581741333, + 0.17640000581741333, + 0.17649996280670166, + 0.17649996280670166, + 0.17650002241134644, + 0.17650002241134644, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17660003900527954, + 0.17660003900527954, + 0.17660003900527954, + 0.17660003900527954, + 0.17660003900527954, + 0.17660003900527954, + 0.17660003900527954, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.1767999529838562, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.1768999695777893, + 0.1768999695777893, + 0.1768999695777893, + 0.1768999695777893, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.1769999861717224, + 0.1769999861717224, + 0.1770000457763672, + 0.17710000276565552, + 0.17710000276565552, + 0.17710000276565552, + 0.17710000276565552, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17720001935958862, + 0.17720001935958862, + 0.17720001935958862, + 0.17720001935958862, + 0.17730003595352173, + 0.17730003595352173, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.1774999499320984, + 0.1774999499320984, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.1775999665260315, + 0.1775999665260315, + 0.1775999665260315, + 0.17760002613067627, + 0.1776999831199646, + 0.1776999831199646, + 0.1776999831199646, + 0.17770004272460938, + 0.1777999997138977, + 0.1777999997138977, + 0.1777999997138977, + 0.1777999997138977, + 0.1777999997138977, + 0.1777999997138977, + 0.17789995670318604, + 0.1779000163078308, + 0.1779000163078308, + 0.1779000163078308, + 0.1779000163078308, + 0.1779000163078308, + 0.17800003290176392, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17810004949569702, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17830002307891846, + 0.17830002307891846, + 0.1783999800682068, + 0.1783999800682068, + 0.1783999800682068, + 0.17840003967285156, + 0.17840003967285156, + 0.17840003967285156, + 0.1784999966621399, + 0.1784999966621399, + 0.17850005626678467, + 0.17859995365142822, + 0.17859995365142822, + 0.17859995365142822, + 0.178600013256073, + 0.178600013256073, + 0.178600013256073, + 0.17869997024536133, + 0.17869997024536133, + 0.1787000298500061, + 0.1787000298500061, + 0.1787000298500061, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17899996042251587, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.17909997701644897, + 0.17909997701644897, + 0.17910003662109375, + 0.17919999361038208, + 0.17919999361038208, + 0.17919999361038208, + 0.17919999361038208, + 0.17919999361038208, + 0.17919999361038208, + 0.17919999361038208, + 0.17919999361038208, + 0.17919999361038208, + 0.17919999361038208, + 0.17919999361038208, + 0.1792999505996704, + 0.1792999505996704, + 0.17930001020431519, + 0.17930001020431519, + 0.17930001020431519, + 0.17939996719360352, + 0.17939996719360352, + 0.1794000267982483, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.1795000433921814, + 0.1795000433921814, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17969995737075806, + 0.17970001697540283, + 0.17979997396469116, + 0.17979997396469116, + 0.17979997396469116, + 0.17980003356933594, + 0.17980003356933594, + 0.17989999055862427, + 0.17989999055862427, + 0.17989999055862427, + 0.17989999055862427, + 0.1800999641418457, + 0.1800999641418457, + 0.18010002374649048, + 0.18010002374649048, + 0.18010002374649048, + 0.18010002374649048, + 0.1801999807357788, + 0.1801999807357788, + 0.1801999807357788, + 0.18020004034042358, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18039995431900024, + 0.18040001392364502, + 0.18040001392364502, + 0.18040001392364502, + 0.18040001392364502, + 0.18049997091293335, + 0.18059998750686646, + 0.18059998750686646, + 0.18059998750686646, + 0.18059998750686646, + 0.18059998750686646, + 0.18059998750686646, + 0.18070000410079956, + 0.18070000410079956, + 0.18070000410079956, + 0.18070000410079956, + 0.18070000410079956, + 0.1807999610900879, + 0.18080002069473267, + 0.18080002069473267, + 0.18090003728866577, + 0.1809999942779541, + 0.1809999942779541, + 0.1811000108718872, + 0.1811000108718872, + 0.18119996786117554, + 0.18119996786117554, + 0.1812000274658203, + 0.18129998445510864, + 0.18129998445510864, + 0.18129998445510864, + 0.18129998445510864, + 0.18160003423690796, + 0.1816999912261963, + 0.18179994821548462, + 0.1818000078201294, + 0.1819000244140625, + 0.18199998140335083, + 0.18209999799728394, + 0.18220001459121704, + 0.18220001459121704, + 0.18239998817443848, + 0.18239998817443848, + 0.18250000476837158, + 0.18250000476837158, + 0.18250000476837158, + 0.1825999617576599, + 0.1826000213623047, + 0.18269997835159302, + 0.18269997835159302, + 0.1828000545501709, + 0.18289995193481445, + 0.18290001153945923, + 0.18290001153945923, + 0.18290001153945923, + 0.18309998512268066, + 0.18309998512268066, + 0.18309998512268066, + 0.18330001831054688, + 0.1834999918937683, + 0.18360000848770142, + 0.18379998207092285, + 0.18400001525878906, + 0.1840999722480774, + 0.18410003185272217, + 0.1841999888420105, + 0.18439996242523193, + 0.18459999561309814, + 0.18480002880096436, + 0.18490004539489746, + 0.1850000023841858, + 0.18519997596740723, + 0.18569999933242798, + 0.18569999933242798, + 0.18620002269744873, + 0.18629997968673706, + 0.18630003929138184, + 0.18700003623962402, + 0.1883000135421753, + 0.18839997053146362, + 0.18859994411468506, + 0.18860000371932983, + 0.18919998407363892, + 0.18930000066757202, + 0.18950003385543823, + 0.18959999084472656, + 0.18959999084472656, + 0.1896999478340149, + 0.18980002403259277, + 0.1899999976158142, + 0.19019997119903564, + 0.19030004739761353, + 0.19040000438690186, + 0.19049996137619019, + 0.1905999779701233, + 0.1905999779701233, + 0.1908000111579895, + 0.19110000133514404, + 0.1915000081062317, + 0.1915000081062317, + 0.1916000247001648, + 0.19189995527267456, + 0.19200003147125244, + 0.19279998540878296, + 0.19310003519058228, + 0.19310003519058228, + 0.19349998235702515, + 0.19359999895095825, + 0.19370001554489136, + 0.19409996271133423, + 0.19419997930526733, + 0.19450002908706665, + 0.19470000267028809, + 0.19479995965957642, + 0.1948000192642212, + 0.19489997625350952, + 0.1949000358581543, + 0.1949000358581543, + 0.1949000358581543, + 0.1949000358581543, + 0.19519996643066406, + 0.19520002603530884, + 0.19520002603530884, + 0.19539999961853027, + 0.19550001621246338, + 0.19550001621246338, + 0.19550001621246338, + 0.19550001621246338, + 0.1955999732017517, + 0.19569998979568481, + 0.1957000494003296, + 0.19580000638961792, + 0.19609999656677246, + 0.19609999656677246, + 0.19609999656677246, + 0.19620001316070557, + 0.19620001316070557, + 0.1965000033378601, + 0.1965000033378601, + 0.19700002670288086, + 0.1972000002861023, + 0.1972000002861023, + 0.1972000002861023, + 0.1972000002861023, + 0.1972000002861023, + 0.1973000168800354, + 0.19739997386932373, + 0.1980000138282776, + 0.19809997081756592, + 0.1981000304222107, + 0.1981000304222107, + 0.19819998741149902, + 0.1987999677658081, + 0.19900000095367432, + 0.19989997148513794, + 0.19990003108978271, + 0.19990003108978271, + 0.19990003108978271, + 0.200700044631958, + 0.20080000162124634, + 0.20080000162124634, + 0.20090001821517944, + 0.20100003480911255, + 0.2014000415802002, + 0.20149999856948853, + 0.20169997215270996, + 0.20179998874664307, + 0.20200002193450928, + 0.20210003852844238, + 0.2021999955177307, + 0.20239996910095215, + 0.2028999924659729, + 0.203000009059906, + 0.20319998264312744, + 0.20329999923706055, + 0.20339995622634888, + 0.2035999894142151, + 0.20429998636245728, + 0.20490002632141113, + 0.20509999990463257, + 0.2053999900817871, + 0.20560002326965332, + 0.20560002326965332, + 0.20589995384216309, + 0.20590001344680786, + 0.20660001039505005, + 0.20669996738433838, + 0.20739996433258057, + 0.20740002393722534, + 0.20810002088546753, + 0.20829999446868896, + 0.20840001106262207, + 0.20840001106262207, + 0.20860004425048828, + 0.20890003442764282, + 0.2093999981880188, + 0.20949995517730713, + 0.20990002155303955, + 0.21039998531341553, + 0.21119999885559082, + 0.21170002222061157, + 0.21250003576278687, + 0.21310001611709595, + 0.21460002660751343, + 0.21539998054504395, + 0.21689999103546143, + 0.21709996461868286, + 0.21710002422332764, + 0.21779996156692505, + 0.21789997816085815, + 0.21890002489089966, + 0.2190999984741211, + 0.21960002183914185, + 0.21979999542236328, + 0.2199000120162964, + 0.2217000126838684, + 0.22179996967315674, + 0.22200000286102295, + 0.22439998388290405, + 0.2279999852180481, + 0.2281000018119812, + 0.22909998893737793, + 0.22949999570846558, + 0.2298000454902649, + 0.23000001907348633, + 0.2314000129699707, + 0.23180001974105835, + 0.23259997367858887, + 0.2376999855041504, + 0.23840004205703735, + 0.24480003118515015, + 0.24529999494552612, + 0.24540001153945923, + 0.2531999945640564, + 0.25349998474121094, + 0.25450003147125244, + 0.254800021648407, + 0.25519996881484985, + 0.25700002908706665, + 0.25849997997283936, + 0.2652999758720398, + 0.26879996061325073, + 0.26969999074935913, + 0.2753000259399414, + 0.27649998664855957, + 0.2831000089645386, + 0.2849999666213989, + 0.30059999227523804, + 0.3199999928474426, + 0.3205999732017517, + 0.32100003957748413, + 0.32169997692108154, + 0.32270002365112305, + 0.3228999972343445, + 0.32510000467300415, + 0.32520002126693726, + 0.3262999653816223, + 0.3283999562263489, + 0.33469998836517334, + 0.33969998359680176, + 0.34780001640319824, + 0.34999996423721313, + 0.3500000238418579, + 0.36079996824264526, + 0.36319994926452637, + 0.36729997396469116, + 0.37540000677108765, + 0.3889000415802002, + 0.40630000829696655, + 0.41360002756118774, + 0.42809998989105225, + 0.428600013256073, + 0.4292999505996704, + 0.430400013923645, + 0.4343000054359436, + 0.4384000301361084, + 0.44009995460510254, + 0.4430999755859375, + 0.45920002460479736, + 0.45980000495910645, + 0.48570001125335693, + 0.5063000321388245, + 0.5081999897956848, + 0.5228000283241272, + 0.5286999940872192, + 0.5376999974250793, + 0.5392000079154968, + 0.5414999723434448, + 0.554099977016449, + 0.5548000335693359, + 0.5562999844551086, + 0.5568999648094177, + 0.5648000240325928, + 0.5707000494003296, + 0.5766000151634216, + 0.5776000022888184, + 0.5792999863624573, + 0.5807999968528748, + 0.6024999618530273, + 0.6050999760627747, + 0.6101000308990479, + 0.6139000058174133, + 0.6419999599456787, + 0.6428999900817871, + 0.6594000458717346, + 0.6690999865531921, + 0.6843000054359436, + 0.7426999807357788, + 1.84170001745224, + 2.2132999897003174, + 2.2338000535964966 + ], + "middleValue": 0.176300048828125, + "timestamp": "2023-10-26T20:47:21.934Z" + }, + { + "algorithm": "TimeDistribution", + "version": "v1", + "numIterations": 1000, + "executionTimes": [ + 0.16930001974105835, + 0.17000001668930054, + 0.17009997367858887, + 0.17009997367858887, + 0.17030000686645508, + 0.17070001363754272, + 0.17079997062683105, + 0.17100000381469727, + 0.1714000105857849, + 0.17149996757507324, + 0.17159998416900635, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17179995775222778, + 0.17190003395080566, + 0.171999990940094, + 0.171999990940094, + 0.17200005054473877, + 0.1721000075340271, + 0.1721000075340271, + 0.1721000075340271, + 0.1721000075340271, + 0.1721000075340271, + 0.1721000075340271, + 0.1721000075340271, + 0.1721000075340271, + 0.1721000075340271, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.1722000241279602, + 0.1722000241279602, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.1723000407218933, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17259997129440308, + 0.17260003089904785, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17269998788833618, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.1728000044822693, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.1729000210762024, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.1730000376701355, + 0.1730000376701355, + 0.1730000376701355, + 0.1730000376701355, + 0.1730000376701355, + 0.1730000376701355, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.1731000542640686, + 0.17319995164871216, + 0.17319995164871216, + 0.17319995164871216, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17329996824264526, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17339998483657837, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.17350000143051147, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.17360001802444458, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.17370003461837769, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.1738000512123108, + 0.1738000512123108, + 0.1738000512123108, + 0.1738000512123108, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17399996519088745, + 0.17399996519088745, + 0.17399996519088745, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17409998178482056, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.17419999837875366, + 0.174299955368042, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.17430001497268677, + 0.1743999719619751, + 0.1743999719619751, + 0.17440003156661987, + 0.17440003156661987, + 0.17440003156661987, + 0.17440003156661987, + 0.17440003156661987, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.17450004816055298, + 0.17450004816055298, + 0.17450004816055298, + 0.17450004816055298, + 0.17459994554519653, + 0.17459994554519653, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.17469996213912964, + 0.17469996213912964, + 0.17470002174377441, + 0.17470002174377441, + 0.17479997873306274, + 0.17479997873306274, + 0.17479997873306274, + 0.17479997873306274, + 0.17479997873306274, + 0.17480003833770752, + 0.17480003833770752, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17489999532699585, + 0.17490005493164062, + 0.17499995231628418, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17500001192092896, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17510002851486206, + 0.17510002851486206, + 0.17510002851486206, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.17520004510879517, + 0.17520004510879517, + 0.17520004510879517, + 0.17529994249343872, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.17539995908737183, + 0.17539995908737183, + 0.17539995908737183, + 0.17539995908737183, + 0.17539995908737183, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.17549997568130493, + 0.17549997568130493, + 0.17549997568130493, + 0.17549997568130493, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.17559999227523804, + 0.1756000518798828, + 0.17569994926452637, + 0.17570000886917114, + 0.17570000886917114, + 0.17570000886917114, + 0.17570000886917114, + 0.17570000886917114, + 0.17570000886917114, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17580002546310425, + 0.17580002546310425, + 0.17580002546310425, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17590004205703735, + 0.17590004205703735, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.176099956035614, + 0.176099956035614, + 0.176099956035614, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.17619997262954712, + 0.17619997262954712, + 0.17619997262954712, + 0.17619997262954712, + 0.17619997262954712, + 0.1762000322341919, + 0.17629998922348022, + 0.17629998922348022, + 0.17629998922348022, + 0.17629998922348022, + 0.17629998922348022, + 0.176300048828125, + 0.176300048828125, + 0.17639994621276855, + 0.17640000581741333, + 0.17640000581741333, + 0.17640000581741333, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17650002241134644, + 0.17650002241134644, + 0.17650002241134644, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17660003900527954, + 0.17660003900527954, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17670005559921265, + 0.1767999529838562, + 0.1767999529838562, + 0.1767999529838562, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.1768999695777893, + 0.1768999695777893, + 0.1768999695777893, + 0.1768999695777893, + 0.17690002918243408, + 0.17690002918243408, + 0.1769999861717224, + 0.1769999861717224, + 0.1769999861717224, + 0.1769999861717224, + 0.1770000457763672, + 0.17710000276565552, + 0.17710000276565552, + 0.17710000276565552, + 0.17710000276565552, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17720001935958862, + 0.17720001935958862, + 0.17720001935958862, + 0.17720001935958862, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17730003595352173, + 0.17730003595352173, + 0.17730003595352173, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17740005254745483, + 0.1774999499320984, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.1775999665260315, + 0.17760002613067627, + 0.17760002613067627, + 0.1776999831199646, + 0.1776999831199646, + 0.1776999831199646, + 0.17770004272460938, + 0.1777999997138977, + 0.1777999997138977, + 0.1777999997138977, + 0.1777999997138977, + 0.17789995670318604, + 0.17789995670318604, + 0.1779000163078308, + 0.17799997329711914, + 0.17799997329711914, + 0.17799997329711914, + 0.17799997329711914, + 0.17799997329711914, + 0.17800003290176392, + 0.17809998989105225, + 0.17809998989105225, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.1783999800682068, + 0.1783999800682068, + 0.17840003967285156, + 0.1784999966621399, + 0.1784999966621399, + 0.1784999966621399, + 0.1784999966621399, + 0.1784999966621399, + 0.1784999966621399, + 0.1784999966621399, + 0.1784999966621399, + 0.17859995365142822, + 0.178600013256073, + 0.178600013256073, + 0.178600013256073, + 0.178600013256073, + 0.178600013256073, + 0.17869997024536133, + 0.1787000298500061, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17899996042251587, + 0.17900002002716064, + 0.17909997701644897, + 0.17909997701644897, + 0.17910003662109375, + 0.17910003662109375, + 0.17910003662109375, + 0.17910003662109375, + 0.17919999361038208, + 0.17919999361038208, + 0.17920005321502686, + 0.17920005321502686, + 0.1792999505996704, + 0.17930001020431519, + 0.17930001020431519, + 0.17930001020431519, + 0.17930001020431519, + 0.17939996719360352, + 0.17939996719360352, + 0.17939996719360352, + 0.1794000267982483, + 0.1794000267982483, + 0.1795000433921814, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17969995737075806, + 0.17970001697540283, + 0.17970001697540283, + 0.17970001697540283, + 0.17970001697540283, + 0.17979997396469116, + 0.17980003356933594, + 0.17989999055862427, + 0.17989999055862427, + 0.17989999055862427, + 0.17989999055862427, + 0.18000000715255737, + 0.18000000715255737, + 0.1800999641418457, + 0.1800999641418457, + 0.18010002374649048, + 0.1801999807357788, + 0.1801999807357788, + 0.1801999807357788, + 0.18029999732971191, + 0.18029999732971191, + 0.18039995431900024, + 0.18040001392364502, + 0.18040001392364502, + 0.18049997091293335, + 0.18049997091293335, + 0.18050003051757812, + 0.18059998750686646, + 0.18060004711151123, + 0.18069994449615479, + 0.18070000410079956, + 0.18070000410079956, + 0.18070000410079956, + 0.18070000410079956, + 0.1807999610900879, + 0.1807999610900879, + 0.18080002069473267, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.18109995126724243, + 0.1811000108718872, + 0.1811000108718872, + 0.18119996786117554, + 0.18129998445510864, + 0.18129998445510864, + 0.18129998445510864, + 0.18130004405975342, + 0.18139994144439697, + 0.18150001764297485, + 0.18150001764297485, + 0.18159997463226318, + 0.18160003423690796, + 0.18160003423690796, + 0.1816999912261963, + 0.1816999912261963, + 0.18179994821548462, + 0.1818000078201294, + 0.1818000078201294, + 0.1818000078201294, + 0.1818000078201294, + 0.1819000244140625, + 0.18199998140335083, + 0.18209999799728394, + 0.18209999799728394, + 0.18229997158050537, + 0.18230003118515015, + 0.18239998817443848, + 0.18240004777908325, + 0.18250000476837158, + 0.18250000476837158, + 0.18250000476837158, + 0.18250000476837158, + 0.18250000476837158, + 0.1825999617576599, + 0.1826000213623047, + 0.1827000379562378, + 0.18279999494552612, + 0.18279999494552612, + 0.18290001153945923, + 0.18290001153945923, + 0.18290001153945923, + 0.18309998512268066, + 0.18320000171661377, + 0.18320000171661377, + 0.18330001831054688, + 0.1833999752998352, + 0.18340003490447998, + 0.1834999918937683, + 0.1834999918937683, + 0.18360000848770142, + 0.18360000848770142, + 0.18369996547698975, + 0.18379998207092285, + 0.18380004167556763, + 0.18389999866485596, + 0.1839999556541443, + 0.18400001525878906, + 0.1840999722480774, + 0.1840999722480774, + 0.1840999722480774, + 0.1841999888420105, + 0.18429994583129883, + 0.18449997901916504, + 0.18449997901916504, + 0.18449997901916504, + 0.18470001220703125, + 0.18470001220703125, + 0.18489998579025269, + 0.18489998579025269, + 0.1850000023841858, + 0.18509995937347412, + 0.1851000189781189, + 0.1851000189781189, + 0.18519997596740723, + 0.18519997596740723, + 0.18540000915527344, + 0.18540000915527344, + 0.18550002574920654, + 0.18560004234313965, + 0.18569999933242798, + 0.18569999933242798, + 0.1857999563217163, + 0.18580001592636108, + 0.18609994649887085, + 0.18610000610351562, + 0.18610000610351562, + 0.18620002269744873, + 0.18629997968673706, + 0.18639999628067017, + 0.18639999628067017, + 0.18660002946853638, + 0.1868000030517578, + 0.18690001964569092, + 0.18690001964569092, + 0.1872999668121338, + 0.1873999834060669, + 0.1875, + 0.1877000331878662, + 0.18790000677108765, + 0.18790000677108765, + 0.18790000677108765, + 0.18799996376037598, + 0.18800002336502075, + 0.18810003995895386, + 0.18820005655288696, + 0.18839997053146362, + 0.18849998712539673, + 0.18869996070861816, + 0.18869996070861816, + 0.18900001049041748, + 0.1892000436782837, + 0.18930000066757202, + 0.18949997425079346, + 0.18949997425079346, + 0.18950003385543823, + 0.18970000743865967, + 0.189799964427948, + 0.18980002403259277, + 0.1899999976158142, + 0.19040000438690186, + 0.19040000438690186, + 0.19050002098083496, + 0.19050002098083496, + 0.19050002098083496, + 0.1905999779701233, + 0.1906999945640564, + 0.1906999945640564, + 0.1908000111579895, + 0.1909000277519226, + 0.19139999151229858, + 0.19139999151229858, + 0.19139999151229858, + 0.1915000081062317, + 0.1915000081062317, + 0.1917000412940979, + 0.19179999828338623, + 0.19199997186660767, + 0.19220000505447388, + 0.19220000505447388, + 0.1923999786376953, + 0.1923999786376953, + 0.19259995222091675, + 0.19269996881484985, + 0.19269996881484985, + 0.1931999921798706, + 0.1931999921798706, + 0.19340002536773682, + 0.1938999891281128, + 0.1938999891281128, + 0.1938999891281128, + 0.19429999589920044, + 0.19430005550384521, + 0.19440001249313354, + 0.19450002908706665, + 0.19450002908706665, + 0.19470000267028809, + 0.1948000192642212, + 0.19489997625350952, + 0.19489997625350952, + 0.19489997625350952, + 0.19489997625350952, + 0.19499999284744263, + 0.19509994983673096, + 0.19520002603530884, + 0.19520002603530884, + 0.19529998302459717, + 0.19529998302459717, + 0.19529998302459717, + 0.19550001621246338, + 0.19569998979568481, + 0.19569998979568481, + 0.19569998979568481, + 0.19580000638961792, + 0.19580000638961792, + 0.19599997997283936, + 0.19600003957748413, + 0.19620001316070557, + 0.19620001316070557, + 0.19630002975463867, + 0.196399986743927, + 0.1965000033378601, + 0.1965000033378601, + 0.19669997692108154, + 0.19679999351501465, + 0.19679999351501465, + 0.19690001010894775, + 0.1970999836921692, + 0.19710004329681396, + 0.1972000002861023, + 0.19760000705718994, + 0.19779998064041138, + 0.19780004024505615, + 0.19789999723434448, + 0.1981000304222107, + 0.19830000400543213, + 0.19840002059936523, + 0.19840002059936523, + 0.1988999843597412, + 0.19930005073547363, + 0.1998000144958496, + 0.19999998807907104, + 0.19999998807907104, + 0.20010000467300415, + 0.2003999948501587, + 0.2003999948501587, + 0.20080000162124634, + 0.20080000162124634, + 0.20080000162124634, + 0.20109999179840088, + 0.2013000249862671, + 0.20160001516342163, + 0.20160001516342163, + 0.20160001516342163, + 0.20169997215270996, + 0.2019999623298645, + 0.20200002193450928, + 0.2021999955177307, + 0.20229995250701904, + 0.20230001211166382, + 0.20249998569488525, + 0.20270001888275146, + 0.2028999924659729, + 0.203000009059906, + 0.20319998264312744, + 0.20340001583099365, + 0.2035999894142151, + 0.20379996299743652, + 0.2038000226020813, + 0.20389997959136963, + 0.20389997959136963, + 0.20389997959136963, + 0.20399999618530273, + 0.20410001277923584, + 0.20459997653961182, + 0.2046000361442566, + 0.20499998331069946, + 0.205299973487854, + 0.20560002326965332, + 0.20600003004074097, + 0.2060999870300293, + 0.2062000036239624, + 0.2062000036239624, + 0.20639997720718384, + 0.20660001039505005, + 0.2077999711036682, + 0.20789998769760132, + 0.20800000429153442, + 0.2085999846458435, + 0.21070003509521484, + 0.211899995803833, + 0.21230000257492065, + 0.2125999927520752, + 0.21299999952316284, + 0.21369999647140503, + 0.21820002794265747, + 0.21919995546340942, + 0.21960002183914185, + 0.22130000591278076, + 0.22179996967315674, + 0.22220003604888916, + 0.22259998321533203, + 0.22269999980926514, + 0.2258000373840332, + 0.22669994831085205, + 0.22680002450942993, + 0.2271999716758728, + 0.23079997301101685, + 0.23190003633499146, + 0.23259997367858887, + 0.23309999704360962, + 0.23339998722076416, + 0.23650002479553223, + 0.236799955368042, + 0.23849999904632568, + 0.23899996280670166, + 0.23979997634887695, + 0.24069994688034058, + 0.24180001020431519, + 0.24330002069473267, + 0.24379998445510864, + 0.24420005083084106, + 0.24459999799728394, + 0.24870002269744873, + 0.2507999539375305, + 0.25110000371932983, + 0.2528000473976135, + 0.25950002670288086, + 0.2630000114440918, + 0.26420003175735474, + 0.2677000164985657, + 0.2680000066757202, + 0.26910001039505005, + 0.2702000141143799, + 0.27060002088546753, + 0.27240002155303955, + 0.2727000117301941, + 0.2745000123977661, + 0.2757999897003174, + 0.27719998359680176, + 0.27799999713897705, + 0.2784000039100647, + 0.278499960899353, + 0.2791999578475952, + 0.2877999544143677, + 0.292199969291687, + 0.294700026512146, + 0.2975999712944031, + 0.3019999861717224, + 0.3051000237464905, + 0.30619996786117554, + 0.31129997968673706, + 0.3128000497817993, + 0.31640005111694336, + 0.32019996643066406, + 0.32089996337890625, + 0.3223000168800354, + 0.32249999046325684, + 0.32330000400543213, + 0.3238000273704529, + 0.3246999979019165, + 0.3263999819755554, + 0.33069998025894165, + 0.3352000117301941, + 0.3442000150680542, + 0.3461000323295593, + 0.35179996490478516, + 0.352899968624115, + 0.36319994926452637, + 0.36400002241134644, + 0.3748999834060669, + 0.37699997425079346, + 0.381600022315979, + 0.39319998025894165, + 0.39889997243881226, + 0.4025000333786011, + 0.4036000370979309, + 0.40560001134872437, + 0.43860000371932983, + 0.45719999074935913, + 0.4602000117301941, + 0.4631999731063843, + 0.4672999978065491, + 0.4675999879837036, + 0.48570001125335693, + 0.49340003728866577, + 0.4939999580383301, + 0.5123000144958496, + 0.5449999570846558, + 0.5493000149726868, + 0.5521999597549438, + 0.5601000189781189, + 0.5623000264167786, + 0.5718000531196594, + 0.5742999911308289, + 0.5813999772071838, + 0.5870000123977661, + 0.588699996471405, + 0.5922999978065491, + 0.593500018119812, + 0.5994000434875488, + 0.6008999943733215, + 0.6069999933242798, + 0.6155000329017639, + 0.6272000074386597, + 0.6327000260353088, + 0.651199996471405, + 0.6702000498771667, + 0.6931999921798706, + 0.6984999775886536, + 0.7107000350952148, + 0.7182999849319458, + 0.7239000201225281, + 0.7254999876022339, + 0.7646000385284424, + 2.0512999892234802, + 2.0943000316619873, + 2.284500002861023 + ], + "middleValue": 0.17775002121925354, + "timestamp": "2023-10-26T20:47:47.984Z" + } +] \ No newline at end of file From b757a13d1c06673cfe001496ac1ffcde5904640e Mon Sep 17 00:00:00 2001 From: Erik Date: Fri, 27 Oct 2023 15:29:59 +0200 Subject: [PATCH 4/7] Updated benchmark. --- benchmark/timeDistribution.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/benchmark/timeDistribution.ts b/benchmark/timeDistribution.ts index 401ec89..e2dc370 100644 --- a/benchmark/timeDistribution.ts +++ b/benchmark/timeDistribution.ts @@ -5,6 +5,15 @@ import { getProject } from '../src/data/Projects'; import { getStudents } from '../src/data/Students'; import * as fs from 'fs'; +interface BenchmarkResults { + algorithm: string; + version: string; + numIterations: number; + executionTimes: number[]; + middleValue: number; + timestamp: string; +} + const project = getProject(); const projectId = project._id; const items = getItems(projectId); @@ -42,23 +51,16 @@ if (numIterations % 2 === 0) { middleValue = executionTimes[middleIndex]; } -console.log(`Middle Execution Time: ${middleValue} milliseconds`); - -// Save results to JSON file -const benchmarkResults = { - algorithm: 'TimeDistribution', // Change this to your algorithm name - version: 'v1', // Change this to your algorithm version +const benchmarkResults: BenchmarkResults = { + algorithm: 'TimeDistribution', + version: 'v1', numIterations, executionTimes, middleValue, timestamp: new Date().toISOString(), }; - -const resultsJson = JSON.stringify(benchmarkResults, null, 2); - -// Append results to the existing file or create a new file if it doesn't exist -const resultsFilePath = 'results.json'; // Replace with your desired file name -let existingResultsArray: any[] = []; +const resultsFilePath: string = 'results.json'; +let existingResultsArray: BenchmarkResults[] = []; if (fs.existsSync(resultsFilePath)) { try { @@ -79,5 +81,3 @@ fs.writeFileSync( resultsFilePath, JSON.stringify(existingResultsArray, null, 2) ); - -console.log('Results saved to', resultsFilePath); From 2d9ae1014b1ba5b1b7f06d8a48bc2eaef1d5f0c3 Mon Sep 17 00:00:00 2001 From: Erik Date: Sat, 28 Oct 2023 22:44:23 +0200 Subject: [PATCH 5/7] Updated paths =>group.paths & removed path.groupId --- benchmark/timeDistribution.ts | 4 +- results.json | 3031 ++++++++++++++++- src/Class/Groups.ts | 3 +- src/alg/TimeDistribution.ts | 16 +- .../TimeDistribution/AllocateGroupsToItems.ts | 22 +- ...tributeGroups.ts => DistributeStudents.ts} | 79 +- src/alg/TimeDistribution/FindPaths.ts | 34 +- src/types/Group.ts | 6 +- src/types/Path_config.ts | 2 +- test/Groups.test.ts | 16 +- 10 files changed, 3101 insertions(+), 112 deletions(-) rename src/alg/TimeDistribution/{DistributeGroups.ts => DistributeStudents.ts} (53%) diff --git a/benchmark/timeDistribution.ts b/benchmark/timeDistribution.ts index e2dc370..302b883 100644 --- a/benchmark/timeDistribution.ts +++ b/benchmark/timeDistribution.ts @@ -52,8 +52,8 @@ if (numIterations % 2 === 0) { } const benchmarkResults: BenchmarkResults = { - algorithm: 'TimeDistribution', - version: 'v1', + algorithm: 'TimeDistribution updated paths into group', + version: 'v2', numIterations, executionTimes, middleValue, diff --git a/results.json b/results.json index 4280dbe..a9d275c 100644 --- a/results.json +++ b/results.json @@ -1,7 +1,7 @@ [ { "algorithm": "TimeDistribution", - "version": "v1", + "version": "v2", "numIterations": 1000, "executionTimes": [ 0.1704999804496765, @@ -1010,7 +1010,7 @@ }, { "algorithm": "TimeDistribution", - "version": "v1", + "version": "v2", "numIterations": 1000, "executionTimes": [ 0.16930001974105835, @@ -2016,5 +2016,3032 @@ ], "middleValue": 0.17775002121925354, "timestamp": "2023-10-26T20:47:47.984Z" + }, + { + "algorithm": "TimeDistribution before", + "version": "v2", + "numIterations": 1000, + "executionTimes": [ + 0.1801999807357788, + 0.18049997091293335, + 0.18070000410079956, + 0.18070000410079956, + 0.18140000104904175, + 0.1819000244140625, + 0.18209999799728394, + 0.18209999799728394, + 0.18220001459121704, + 0.18220001459121704, + 0.18239998817443848, + 0.18250000476837158, + 0.18250000476837158, + 0.1825999617576599, + 0.1826000213623047, + 0.18269997835159302, + 0.18279999494552612, + 0.18279999494552612, + 0.18290001153945923, + 0.18309998512268066, + 0.18309998512268066, + 0.18309998512268066, + 0.18320000171661377, + 0.18320000171661377, + 0.18330001831054688, + 0.18330001831054688, + 0.18330001831054688, + 0.1833999752998352, + 0.1833999752998352, + 0.1834999918937683, + 0.1834999918937683, + 0.1834999918937683, + 0.1834999918937683, + 0.18350005149841309, + 0.18360000848770142, + 0.18360000848770142, + 0.18360000848770142, + 0.18369996547698975, + 0.18369996547698975, + 0.18370002508163452, + 0.18379998207092285, + 0.18379998207092285, + 0.18380004167556763, + 0.18389999866485596, + 0.18389999866485596, + 0.18389999866485596, + 0.1839999556541443, + 0.1839999556541443, + 0.18400001525878906, + 0.18400001525878906, + 0.1840999722480774, + 0.18410003185272217, + 0.18410003185272217, + 0.18410003185272217, + 0.18410003185272217, + 0.1841999888420105, + 0.1841999888420105, + 0.1841999888420105, + 0.1841999888420105, + 0.18420004844665527, + 0.1843000054359436, + 0.1843000054359436, + 0.1843000054359436, + 0.1843000054359436, + 0.1843000054359436, + 0.1843000054359436, + 0.1844000220298767, + 0.18449997901916504, + 0.18449997901916504, + 0.18449997901916504, + 0.18459999561309814, + 0.18459999561309814, + 0.18459999561309814, + 0.18459999561309814, + 0.18459999561309814, + 0.18459999561309814, + 0.18459999561309814, + 0.18469995260238647, + 0.18469995260238647, + 0.18470001220703125, + 0.18470001220703125, + 0.18470001220703125, + 0.18470001220703125, + 0.18479996919631958, + 0.18479996919631958, + 0.18479996919631958, + 0.18489998579025269, + 0.18489998579025269, + 0.18489998579025269, + 0.18490004539489746, + 0.18490004539489746, + 0.18499994277954102, + 0.1850000023841858, + 0.1850000023841858, + 0.1851000189781189, + 0.1851000189781189, + 0.18519997596740723, + 0.18519997596740723, + 0.18519997596740723, + 0.185200035572052, + 0.185200035572052, + 0.185200035572052, + 0.18529999256134033, + 0.18529999256134033, + 0.18529999256134033, + 0.18529999256134033, + 0.18529999256134033, + 0.1853000521659851, + 0.18539994955062866, + 0.18540000915527344, + 0.18540000915527344, + 0.18540000915527344, + 0.18540000915527344, + 0.18540000915527344, + 0.18549996614456177, + 0.18549996614456177, + 0.18549996614456177, + 0.18549996614456177, + 0.18550002574920654, + 0.18550002574920654, + 0.18559998273849487, + 0.18559998273849487, + 0.18569999933242798, + 0.18569999933242798, + 0.18569999933242798, + 0.18569999933242798, + 0.18569999933242798, + 0.18569999933242798, + 0.1857999563217163, + 0.1857999563217163, + 0.1857999563217163, + 0.1857999563217163, + 0.18580001592636108, + 0.18580001592636108, + 0.18589997291564941, + 0.18589997291564941, + 0.18589997291564941, + 0.18589997291564941, + 0.18589997291564941, + 0.1859000325202942, + 0.1859000325202942, + 0.1859000325202942, + 0.1859000325202942, + 0.18599998950958252, + 0.18599998950958252, + 0.1860000491142273, + 0.18610000610351562, + 0.18610000610351562, + 0.18610000610351562, + 0.18619996309280396, + 0.18619996309280396, + 0.18620002269744873, + 0.18620002269744873, + 0.18620002269744873, + 0.18629997968673706, + 0.18629997968673706, + 0.18629997968673706, + 0.18629997968673706, + 0.18629997968673706, + 0.18629997968673706, + 0.18630003929138184, + 0.18639999628067017, + 0.18639999628067017, + 0.18639999628067017, + 0.18639999628067017, + 0.1864999532699585, + 0.1864999532699585, + 0.18650001287460327, + 0.18650001287460327, + 0.18650001287460327, + 0.18650001287460327, + 0.18650001287460327, + 0.1866999864578247, + 0.1866999864578247, + 0.1866999864578247, + 0.1866999864578247, + 0.1866999864578247, + 0.1866999864578247, + 0.1866999864578247, + 0.18670004606246948, + 0.18670004606246948, + 0.18670004606246948, + 0.18679994344711304, + 0.1868000030517578, + 0.18689996004104614, + 0.18689996004104614, + 0.18690001964569092, + 0.18690001964569092, + 0.18690001964569092, + 0.18699997663497925, + 0.18699997663497925, + 0.18699997663497925, + 0.18700003623962402, + 0.18700003623962402, + 0.18700003623962402, + 0.18709999322891235, + 0.18709999322891235, + 0.18709999322891235, + 0.18719995021820068, + 0.18720000982284546, + 0.18720000982284546, + 0.18720000982284546, + 0.18720000982284546, + 0.18720000982284546, + 0.1872999668121338, + 0.18730002641677856, + 0.18730002641677856, + 0.18730002641677856, + 0.1873999834060669, + 0.1873999834060669, + 0.1873999834060669, + 0.18740004301071167, + 0.1875, + 0.1875, + 0.1875, + 0.1875, + 0.1876000165939331, + 0.1876000165939331, + 0.1876000165939331, + 0.1877000331878662, + 0.1877000331878662, + 0.18779999017715454, + 0.18779999017715454, + 0.18779999017715454, + 0.18779999017715454, + 0.18779999017715454, + 0.18779999017715454, + 0.18779999017715454, + 0.18780004978179932, + 0.18780004978179932, + 0.18780004978179932, + 0.18780004978179932, + 0.18789994716644287, + 0.18790000677108765, + 0.18800002336502075, + 0.18800002336502075, + 0.18800002336502075, + 0.18800002336502075, + 0.18809998035430908, + 0.1881999969482422, + 0.18829995393753052, + 0.1883000135421753, + 0.1883000135421753, + 0.1883000135421753, + 0.18839997053146362, + 0.18839997053146362, + 0.1884000301361084, + 0.1884000301361084, + 0.1884000301361084, + 0.18849998712539673, + 0.1885000467300415, + 0.18860000371932983, + 0.18860000371932983, + 0.18870002031326294, + 0.18870002031326294, + 0.18870002031326294, + 0.18879997730255127, + 0.18880003690719604, + 0.18880003690719604, + 0.18889999389648438, + 0.1889999508857727, + 0.18900001049041748, + 0.18900001049041748, + 0.18900001049041748, + 0.18900001049041748, + 0.18900001049041748, + 0.18900001049041748, + 0.1890999674797058, + 0.18910002708435059, + 0.18919998407363892, + 0.18919998407363892, + 0.1892000436782837, + 0.18930000066757202, + 0.18930000066757202, + 0.18930000066757202, + 0.18940001726150513, + 0.18940001726150513, + 0.18949997425079346, + 0.18949997425079346, + 0.18949997425079346, + 0.18949997425079346, + 0.18949997425079346, + 0.18949997425079346, + 0.18959999084472656, + 0.18959999084472656, + 0.18959999084472656, + 0.18959999084472656, + 0.18960005044937134, + 0.1896999478340149, + 0.1896999478340149, + 0.1896999478340149, + 0.1896999478340149, + 0.18970000743865967, + 0.18970000743865967, + 0.189799964427948, + 0.189799964427948, + 0.189799964427948, + 0.189799964427948, + 0.18980002403259277, + 0.1898999810218811, + 0.1898999810218811, + 0.1898999810218811, + 0.1898999810218811, + 0.18990004062652588, + 0.1899999976158142, + 0.1899999976158142, + 0.1899999976158142, + 0.1899999976158142, + 0.1899999976158142, + 0.1899999976158142, + 0.19000005722045898, + 0.19009995460510254, + 0.19010001420974731, + 0.19010001420974731, + 0.19010001420974731, + 0.19010001420974731, + 0.19010001420974731, + 0.19010001420974731, + 0.19019997119903564, + 0.19020003080368042, + 0.19029998779296875, + 0.19029998779296875, + 0.19030004739761353, + 0.19030004739761353, + 0.19040000438690186, + 0.19040000438690186, + 0.19040000438690186, + 0.19049996137619019, + 0.19050002098083496, + 0.1905999779701233, + 0.19060003757476807, + 0.1906999945640564, + 0.1906999945640564, + 0.19079995155334473, + 0.19079995155334473, + 0.1908000111579895, + 0.1908000111579895, + 0.1908000111579895, + 0.1908000111579895, + 0.1908000111579895, + 0.19089996814727783, + 0.19089996814727783, + 0.1909000277519226, + 0.1909000277519226, + 0.1909000277519226, + 0.19099998474121094, + 0.1910000443458557, + 0.19110000133514404, + 0.19110000133514404, + 0.19110000133514404, + 0.19120001792907715, + 0.19129997491836548, + 0.19129997491836548, + 0.19129997491836548, + 0.19129997491836548, + 0.19130003452301025, + 0.19139999151229858, + 0.19139999151229858, + 0.19139999151229858, + 0.19139999151229858, + 0.19140005111694336, + 0.19149994850158691, + 0.19159996509552002, + 0.19159996509552002, + 0.1916000247001648, + 0.19169998168945312, + 0.19169998168945312, + 0.19169998168945312, + 0.19169998168945312, + 0.19179999828338623, + 0.19179999828338623, + 0.19179999828338623, + 0.19179999828338623, + 0.19190001487731934, + 0.19190001487731934, + 0.19190001487731934, + 0.19190001487731934, + 0.19190001487731934, + 0.19199997186660767, + 0.19200003147125244, + 0.19209998846054077, + 0.19220000505447388, + 0.1922999620437622, + 0.19230002164840698, + 0.19230002164840698, + 0.19230002164840698, + 0.1923999786376953, + 0.1923999786376953, + 0.1923999786376953, + 0.19249999523162842, + 0.19249999523162842, + 0.19260001182556152, + 0.19269996881484985, + 0.19269996881484985, + 0.19270002841949463, + 0.19270002841949463, + 0.19290000200271606, + 0.19300001859664917, + 0.1930999755859375, + 0.19310003519058228, + 0.19310003519058228, + 0.19310003519058228, + 0.1931999921798706, + 0.1931999921798706, + 0.1931999921798706, + 0.1931999921798706, + 0.1933000087738037, + 0.1933000087738037, + 0.1933000087738037, + 0.1933000087738037, + 0.1933000087738037, + 0.1933000087738037, + 0.19340002536773682, + 0.19340002536773682, + 0.19359999895095825, + 0.19359999895095825, + 0.19369995594024658, + 0.19369995594024658, + 0.19380003213882446, + 0.19380003213882446, + 0.19390004873275757, + 0.1940000057220459, + 0.19419997930526733, + 0.19419997930526733, + 0.19419997930526733, + 0.19419997930526733, + 0.1942000389099121, + 0.19440001249313354, + 0.19449996948242188, + 0.19450002908706665, + 0.19450002908706665, + 0.19459998607635498, + 0.19470000267028809, + 0.19479995965957642, + 0.19489997625350952, + 0.19510000944137573, + 0.19520002603530884, + 0.19520002603530884, + 0.19520002603530884, + 0.19520002603530884, + 0.19530004262924194, + 0.19539999961853027, + 0.19550001621246338, + 0.1955999732017517, + 0.1955999732017517, + 0.1955999732017517, + 0.19569998979568481, + 0.19569998979568481, + 0.1957000494003296, + 0.19590002298355103, + 0.19590002298355103, + 0.19599997997283936, + 0.19599997997283936, + 0.1961999535560608, + 0.19620001316070557, + 0.19630002975463867, + 0.196399986743927, + 0.1965000033378601, + 0.1966000199317932, + 0.1966000199317932, + 0.1970999836921692, + 0.1973000168800354, + 0.19739997386932373, + 0.19760000705718994, + 0.19770002365112305, + 0.19809997081756592, + 0.19830000400543213, + 0.19830000400543213, + 0.19849997758865356, + 0.19849997758865356, + 0.19870001077651978, + 0.19870001077651978, + 0.19880002737045288, + 0.1988999843597412, + 0.19900000095367432, + 0.19900000095367432, + 0.19900000095367432, + 0.19920003414154053, + 0.19940000772476196, + 0.1995999813079834, + 0.19960004091262817, + 0.1996999979019165, + 0.1996999979019165, + 0.19990003108978271, + 0.19999998807907104, + 0.20000004768371582, + 0.20010000467300415, + 0.20040005445480347, + 0.2006000280380249, + 0.20069998502731323, + 0.20080000162124634, + 0.20080000162124634, + 0.20080000162124634, + 0.20099997520446777, + 0.20099997520446777, + 0.20099997520446777, + 0.20109999179840088, + 0.20120000839233398, + 0.20129996538162231, + 0.20129996538162231, + 0.20139998197555542, + 0.20169997215270996, + 0.20179998874664307, + 0.20179998874664307, + 0.20190000534057617, + 0.2020999789237976, + 0.2020999789237976, + 0.20210003852844238, + 0.2021999955177307, + 0.2021999955177307, + 0.2021999955177307, + 0.2022000551223755, + 0.20229995250701904, + 0.20230001211166382, + 0.20239996910095215, + 0.20249998569488525, + 0.20260000228881836, + 0.20270001888275146, + 0.20270001888275146, + 0.20290005207061768, + 0.20319998264312744, + 0.20350003242492676, + 0.2037000060081482, + 0.2038000226020813, + 0.2038000226020813, + 0.20389997959136963, + 0.20419996976852417, + 0.20429998636245728, + 0.20429998636245728, + 0.20440000295639038, + 0.20440000295639038, + 0.2045000195503235, + 0.20459997653961182, + 0.20469999313354492, + 0.20479995012283325, + 0.20490002632141113, + 0.20490002632141113, + 0.20499998331069946, + 0.20509999990463257, + 0.205299973487854, + 0.20570003986358643, + 0.20579999685287476, + 0.2059999704360962, + 0.2059999704360962, + 0.20600003004074097, + 0.20600003004074097, + 0.2060999870300293, + 0.2062000036239624, + 0.20649999380111694, + 0.20669996738433838, + 0.20679998397827148, + 0.20679998397827148, + 0.2069000005722046, + 0.20709997415542603, + 0.20709997415542603, + 0.2071000337600708, + 0.20719999074935913, + 0.20719999074935913, + 0.2072000503540039, + 0.20730000734329224, + 0.20740002393722534, + 0.20749998092651367, + 0.20749998092651367, + 0.2076999545097351, + 0.20770001411437988, + 0.20770001411437988, + 0.20789998769760132, + 0.20819997787475586, + 0.20819997787475586, + 0.20860004425048828, + 0.20869994163513184, + 0.20880001783370972, + 0.20890003442764282, + 0.20910000801086426, + 0.2091999650001526, + 0.2091999650001526, + 0.20920002460479736, + 0.2092999815940857, + 0.2092999815940857, + 0.2093999981880188, + 0.2093999981880188, + 0.2095000147819519, + 0.20969998836517334, + 0.20989996194839478, + 0.20999997854232788, + 0.210099995136261, + 0.2102000117301941, + 0.2102000117301941, + 0.2103000283241272, + 0.21039998531341553, + 0.2104000449180603, + 0.21050000190734863, + 0.21079999208450317, + 0.21090000867843628, + 0.21119999885559082, + 0.21149998903274536, + 0.2115999460220337, + 0.21170002222061157, + 0.2117999792098999, + 0.21190005540847778, + 0.2120000123977661, + 0.2120000123977661, + 0.21219998598098755, + 0.21239995956420898, + 0.2124999761581421, + 0.2125999927520752, + 0.2125999927520752, + 0.2128000259399414, + 0.21289998292922974, + 0.21299999952316284, + 0.21310001611709595, + 0.21320003271102905, + 0.21330004930496216, + 0.21349996328353882, + 0.2135000228881836, + 0.21390002965927124, + 0.21400004625320435, + 0.21439999341964722, + 0.21450001001358032, + 0.21480000019073486, + 0.21500003337860107, + 0.2150999903678894, + 0.2150999903678894, + 0.21549999713897705, + 0.2157999873161316, + 0.2160000205039978, + 0.21609997749328613, + 0.2161000370979309, + 0.21639996767044067, + 0.21649998426437378, + 0.21679997444152832, + 0.21700000762939453, + 0.21709996461868286, + 0.21719998121261597, + 0.21719998121261597, + 0.21719998121261597, + 0.21779996156692505, + 0.21810001134872437, + 0.218500018119812, + 0.21879994869232178, + 0.21889996528625488, + 0.2190999984741211, + 0.2190999984741211, + 0.2192000150680542, + 0.2192000150680542, + 0.21969997882843018, + 0.2199000120162964, + 0.2200000286102295, + 0.22009998559951782, + 0.22020000219345093, + 0.22049999237060547, + 0.22079998254776, + 0.22079998254776, + 0.22100001573562622, + 0.22140002250671387, + 0.2217000126838684, + 0.2217000126838684, + 0.2222999930381775, + 0.2222999930381775, + 0.2222999930381775, + 0.2224000096321106, + 0.2224000096321106, + 0.22249996662139893, + 0.2225000262260437, + 0.2225000262260437, + 0.22280001640319824, + 0.22290003299713135, + 0.22299998998641968, + 0.22310000658035278, + 0.2232000231742859, + 0.223300039768219, + 0.22339999675750732, + 0.22339999675750732, + 0.22349995374679565, + 0.22380000352859497, + 0.2246999740600586, + 0.22489994764328003, + 0.22519999742507935, + 0.22539997100830078, + 0.225600004196167, + 0.22579997777938843, + 0.22600001096725464, + 0.22600001096725464, + 0.22640001773834229, + 0.2265000343322754, + 0.22670000791549683, + 0.22670000791549683, + 0.22680002450942993, + 0.22710001468658447, + 0.2271999716758728, + 0.22769999504089355, + 0.2279999852180481, + 0.22800004482269287, + 0.2281000018119812, + 0.2283000349998474, + 0.22869998216629028, + 0.2287999987602234, + 0.2289000153541565, + 0.2289000153541565, + 0.22899997234344482, + 0.22899997234344482, + 0.2290000319480896, + 0.22920000553131104, + 0.22920000553131104, + 0.22920000553131104, + 0.22930002212524414, + 0.22949999570846558, + 0.22950005531311035, + 0.22979998588562012, + 0.22979998588562012, + 0.23010003566741943, + 0.23030000925064087, + 0.2305999994277954, + 0.23120003938674927, + 0.23139995336532593, + 0.2314000129699707, + 0.2315000295639038, + 0.23159998655319214, + 0.23189997673034668, + 0.23200005292892456, + 0.232200026512146, + 0.23259997367858887, + 0.23280000686645508, + 0.2328999638557434, + 0.23339998722076416, + 0.23339998722076416, + 0.23350000381469727, + 0.2339000105857849, + 0.23440003395080566, + 0.23440003395080566, + 0.2346000075340271, + 0.23500001430511475, + 0.23640000820159912, + 0.23659998178482056, + 0.23680001497268677, + 0.23720002174377441, + 0.23739999532699585, + 0.2376999855041504, + 0.2380000352859497, + 0.23809999227523804, + 0.23809999227523804, + 0.23819994926452637, + 0.23829996585845947, + 0.23839998245239258, + 0.23839998245239258, + 0.23849999904632568, + 0.23869997262954712, + 0.2387000322341919, + 0.23889994621276855, + 0.2393999695777893, + 0.23989999294281006, + 0.2400999665260315, + 0.2402999997138977, + 0.2402999997138977, + 0.24049997329711914, + 0.24059998989105225, + 0.24079996347427368, + 0.2408999800682068, + 0.24090003967285156, + 0.24109995365142822, + 0.24270004034042358, + 0.24289995431900024, + 0.24290001392364502, + 0.24399995803833008, + 0.24439996480941772, + 0.24459999799728394, + 0.24459999799728394, + 0.24480003118515015, + 0.24489998817443848, + 0.2450999617576599, + 0.24559998512268066, + 0.24590003490447998, + 0.2459999918937683, + 0.24639999866485596, + 0.24699997901916504, + 0.24730002880096436, + 0.24879997968673706, + 0.2491999864578247, + 0.2498999834060669, + 0.2508000135421753, + 0.2508999705314636, + 0.2508999705314636, + 0.2508999705314636, + 0.2509000301361084, + 0.25109994411468506, + 0.25189995765686035, + 0.25200003385543823, + 0.252299964427948, + 0.2523999810218811, + 0.25269997119903564, + 0.25279998779296875, + 0.2531999945640564, + 0.25349998474121094, + 0.25360000133514404, + 0.25370001792907715, + 0.2541000247001648, + 0.25440001487731934, + 0.254800021648407, + 0.2558000087738037, + 0.25669997930526733, + 0.2572000026702881, + 0.2578999996185303, + 0.2580000162124634, + 0.2602999806404114, + 0.26080000400543213, + 0.2621999979019165, + 0.2623000144958496, + 0.26270002126693726, + 0.26339995861053467, + 0.26340001821517944, + 0.26340001821517944, + 0.2645999789237976, + 0.26840001344680786, + 0.26840001344680786, + 0.2684999704360962, + 0.2685999870300293, + 0.2686000466346741, + 0.2688000202178955, + 0.2690999507904053, + 0.2695000171661377, + 0.2696000337600708, + 0.26979994773864746, + 0.26999998092651367, + 0.27069997787475586, + 0.27069997787475586, + 0.27079999446868896, + 0.27090001106262207, + 0.2717999815940857, + 0.27230000495910645, + 0.27230000495910645, + 0.2728999853134155, + 0.2735000252723694, + 0.2738000154495239, + 0.27390003204345703, + 0.274399995803833, + 0.2745000123977661, + 0.27469998598098755, + 0.27490001916885376, + 0.2754000425338745, + 0.27560001611709595, + 0.27649998664855957, + 0.27719998359680176, + 0.2775000333786011, + 0.2778000235557556, + 0.27799999713897705, + 0.2784000039100647, + 0.27859997749328613, + 0.2786000370979309, + 0.2803000211715698, + 0.2806999683380127, + 0.2806999683380127, + 0.2827000021934509, + 0.28329998254776, + 0.28600001335144043, + 0.28630000352859497, + 0.28630000352859497, + 0.28630000352859497, + 0.28769999742507935, + 0.28769999742507935, + 0.28780001401901245, + 0.2879999876022339, + 0.2888000011444092, + 0.29009997844696045, + 0.29100000858306885, + 0.2922000288963318, + 0.2946000099182129, + 0.29659998416900635, + 0.3033999800682068, + 0.30390000343322754, + 0.30470001697540283, + 0.30479997396469116, + 0.30559998750686646, + 0.30640000104904175, + 0.3068000078201294, + 0.3083000183105469, + 0.30949997901916504, + 0.310699999332428, + 0.3107999563217163, + 0.31290000677108765, + 0.31550002098083496, + 0.31589996814727783, + 0.31689995527267456, + 0.3186999559402466, + 0.31870001554489136, + 0.31870001554489136, + 0.3238999843597412, + 0.32419997453689575, + 0.32440000772476196, + 0.32440000772476196, + 0.32660001516342163, + 0.3271999955177307, + 0.3295999765396118, + 0.3303999900817871, + 0.3330000042915344, + 0.3337000012397766, + 0.33550000190734863, + 0.33569997549057007, + 0.336899995803833, + 0.33969998359680176, + 0.3414999842643738, + 0.34449994564056396, + 0.34869998693466187, + 0.3507000207901001, + 0.35089999437332153, + 0.3521000146865845, + 0.3522999882698059, + 0.3522999882698059, + 0.352899968624115, + 0.3533000349998474, + 0.35339999198913574, + 0.35530000925064087, + 0.3554999828338623, + 0.36149996519088745, + 0.36169999837875366, + 0.36309999227523804, + 0.3646000027656555, + 0.36549997329711914, + 0.37449997663497925, + 0.375, + 0.38089996576309204, + 0.383899986743927, + 0.3865000009536743, + 0.38690000772476196, + 0.38770002126693726, + 0.3881000280380249, + 0.39879995584487915, + 0.4004000425338745, + 0.4017000198364258, + 0.40720003843307495, + 0.40929996967315674, + 0.4151000380516052, + 0.42020004987716675, + 0.42080003023147583, + 0.426800012588501, + 0.4279000163078308, + 0.4294000267982483, + 0.4390999674797058, + 0.44279998540878296, + 0.4447999596595764, + 0.44929999113082886, + 0.45010000467300415, + 0.4553999900817871, + 0.4603999853134155, + 0.4650999903678894, + 0.47769999504089355, + 0.48180001974105835, + 0.4860000014305115, + 0.4893999695777893, + 0.4938000440597534, + 0.4990999698638916, + 0.5038999915122986, + 0.5105000138282776, + 0.5120999813079834, + 0.5318999886512756, + 0.5368000268936157, + 0.5372000336647034, + 0.5488999485969543, + 0.5608000159263611, + 0.5645999908447266, + 0.5672999620437622, + 0.5687000155448914, + 0.5819999575614929, + 0.583899974822998, + 0.5848999619483948, + 0.5850000381469727, + 0.6003000140190125, + 0.606499969959259, + 0.6442999839782715, + 0.6458999514579773, + 0.6491000056266785, + 0.6520000100135803, + 0.6536999940872192, + 0.6557000279426575, + 0.6728999614715576, + 0.6748000383377075, + 0.6894999742507935, + 0.6933000087738037, + 0.6955999732017517, + 0.7027999758720398, + 0.7096999883651733, + 0.7182999849319458, + 0.7196000218391418, + 0.719700038433075, + 0.7317000031471252, + 0.737500011920929, + 0.7427000403404236, + 0.744700014591217, + 0.7545999884605408, + 0.7680000066757202, + 0.7982999682426453, + 0.8180999755859375, + 0.9074999690055847, + 0.9203000068664551, + 0.9461999535560608, + 0.947700023651123, + 0.9648000001907349, + 0.9894999861717224, + 2.2380000352859497, + 2.2585999965667725, + 2.497500002384186 + ], + "middleValue": 0.20134997367858887, + "timestamp": "2023-10-27T13:31:22.623Z" + }, + { + "algorithm": "TimeDistribution updated paths into group", + "version": "v2", + "numIterations": 1000, + "executionTimes": [ + 0.167199969291687, + 0.16740000247955322, + 0.16740000247955322, + 0.16750001907348633, + 0.16750001907348633, + 0.1677999496459961, + 0.1677999496459961, + 0.1678999662399292, + 0.16790008544921875, + 0.1679999828338623, + 0.1680999994277954, + 0.16820001602172852, + 0.16820001602172852, + 0.16830003261566162, + 0.16830003261566162, + 0.16840004920959473, + 0.16849994659423828, + 0.16849994659423828, + 0.16850006580352783, + 0.1685999631881714, + 0.1685999631881714, + 0.1685999631881714, + 0.16860008239746094, + 0.1686999797821045, + 0.1686999797821045, + 0.1686999797821045, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.1689000129699707, + 0.16899991035461426, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.16910004615783691, + 0.16910004615783691, + 0.16919994354248047, + 0.16919994354248047, + 0.16919994354248047, + 0.16919994354248047, + 0.16919994354248047, + 0.16919994354248047, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16940009593963623, + 0.16940009593963623, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.16969990730285645, + 0.16969990730285645, + 0.16969990730285645, + 0.16969990730285645, + 0.16969990730285645, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.16979992389678955, + 0.16979992389678955, + 0.16979992389678955, + 0.16979992389678955, + 0.16979992389678955, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.16989994049072266, + 0.16989994049072266, + 0.16989994049072266, + 0.1699000597000122, + 0.1699000597000122, + 0.16999995708465576, + 0.1700000762939453, + 0.1700000762939453, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17010009288787842, + 0.17010009288787842, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17020010948181152, + 0.17020010948181152, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17039990425109863, + 0.17039990425109863, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17049992084503174, + 0.17049992084503174, + 0.17049992084503174, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.1707000732421875, + 0.1707000732421875, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.1708000898361206, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.1709001064300537, + 0.1709001064300537, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17109990119934082, + 0.17109990119934082, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17119991779327393, + 0.17119991779327393, + 0.17119991779327393, + 0.17119991779327393, + 0.17119991779327393, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.1715000867843628, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.1716001033782959, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.171799898147583, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.1718999147415161, + 0.1718999147415161, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17199993133544922, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17210006713867188, + 0.17210006713867188, + 0.17210006713867188, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17220008373260498, + 0.17220008373260498, + 0.17220008373260498, + 0.17229998111724854, + 0.17229998111724854, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.1725999116897583, + 0.1725999116897583, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.1726999282836914, + 0.1726999282836914, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.17280006408691406, + 0.17280006408691406, + 0.17280006408691406, + 0.17280006408691406, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17290008068084717, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17300009727478027, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17319989204406738, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.1732999086380005, + 0.1732999086380005, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.1733999252319336, + 0.1733999252319336, + 0.1733999252319336, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.1734999418258667, + 0.1734999418258667, + 0.17350006103515625, + 0.17350006103515625, + 0.17350006103515625, + 0.17350006103515625, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.17360007762908936, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17399990558624268, + 0.17399990558624268, + 0.17399990558624268, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17409992218017578, + 0.17410004138946533, + 0.17410004138946533, + 0.1741999387741089, + 0.1741999387741089, + 0.1741999387741089, + 0.17420005798339844, + 0.17420005798339844, + 0.174299955368042, + 0.174299955368042, + 0.17430007457733154, + 0.17430007457733154, + 0.17430007457733154, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.17440009117126465, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.17459988594055176, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17479991912841797, + 0.17479991912841797, + 0.17479991912841797, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17489993572235107, + 0.17489993572235107, + 0.17489993572235107, + 0.17489993572235107, + 0.17489993572235107, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17500007152557373, + 0.17500007152557373, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17510008811950684, + 0.17510008811950684, + 0.17510008811950684, + 0.17510008811950684, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.17549991607666016, + 0.17549991607666016, + 0.17549991607666016, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.17559993267059326, + 0.17559993267059326, + 0.17559993267059326, + 0.1756000518798828, + 0.1756000518798828, + 0.17569994926452637, + 0.17569994926452637, + 0.17570006847381592, + 0.17570006847381592, + 0.17570006847381592, + 0.17570006847381592, + 0.17570006847381592, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17609989643096924, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1762000322341919, + 0.1762000322341919, + 0.17629992961883545, + 0.17629992961883545, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.17639994621276855, + 0.17639994621276855, + 0.1764000654220581, + 0.1764000654220581, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17660009860992432, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17679989337921143, + 0.17679989337921143, + 0.17679989337921143, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17689990997314453, + 0.17690002918243408, + 0.17690002918243408, + 0.17699992656707764, + 0.17699992656707764, + 0.17699992656707764, + 0.17699992656707764, + 0.17699992656707764, + 0.17699992656707764, + 0.1770000457763672, + 0.1770000457763672, + 0.1770000457763672, + 0.17709994316101074, + 0.17709994316101074, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.1772000789642334, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.1773000955581665, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17759990692138672, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17769992351531982, + 0.17770004272460938, + 0.17779994010925293, + 0.17779994010925293, + 0.17789995670318604, + 0.17790007591247559, + 0.17799997329711914, + 0.17799997329711914, + 0.17799997329711914, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.1781001091003418, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17849993705749512, + 0.17849993705749512, + 0.17849993705749512, + 0.17849993705749512, + 0.17850005626678467, + 0.17859995365142822, + 0.17860007286071777, + 0.17869997024536133, + 0.17869997024536133, + 0.17869997024536133, + 0.17869997024536133, + 0.17870008945465088, + 0.17879998683929443, + 0.17890000343322754, + 0.1789999008178711, + 0.17900002002716064, + 0.17910003662109375, + 0.17910003662109375, + 0.17910003662109375, + 0.1791999340057373, + 0.1791999340057373, + 0.17920005321502686, + 0.17920005321502686, + 0.17939996719360352, + 0.17940008640289307, + 0.17950010299682617, + 0.17950010299682617, + 0.17950010299682617, + 0.17960000038146973, + 0.17960000038146973, + 0.17969989776611328, + 0.17970001697540283, + 0.1799999475479126, + 0.18000006675720215, + 0.1801999807357788, + 0.1801999807357788, + 0.18029999732971191, + 0.18029999732971191, + 0.18039989471435547, + 0.18040001392364502, + 0.18050003051757812, + 0.18069994449615479, + 0.18070006370544434, + 0.18080008029937744, + 0.180899977684021, + 0.180899977684021, + 0.18090009689331055, + 0.18090009689331055, + 0.1809999942779541, + 0.1812000274658203, + 0.1812000274658203, + 0.18129992485046387, + 0.18140006065368652, + 0.18140006065368652, + 0.18140006065368652, + 0.18149995803833008, + 0.18150007724761963, + 0.18159997463226318, + 0.18159997463226318, + 0.18160009384155273, + 0.1816999912261963, + 0.18189990520477295, + 0.1819000244140625, + 0.1819000244140625, + 0.1819000244140625, + 0.18219995498657227, + 0.18219995498657227, + 0.18220007419586182, + 0.18220007419586182, + 0.18229997158050537, + 0.18229997158050537, + 0.18229997158050537, + 0.18229997158050537, + 0.18230009078979492, + 0.18239998817443848, + 0.18250000476837158, + 0.18250000476837158, + 0.1827000379562378, + 0.1827000379562378, + 0.18279993534088135, + 0.1828000545501709, + 0.1828000545501709, + 0.1828000545501709, + 0.18299996852874756, + 0.18299996852874756, + 0.18309998512268066, + 0.18320000171661377, + 0.18330001831054688, + 0.18340003490447998, + 0.18369996547698975, + 0.1837000846862793, + 0.18379998207092285, + 0.18389999866485596, + 0.18389999866485596, + 0.18410003185272217, + 0.18420004844665527, + 0.18439996242523193, + 0.18439996242523193, + 0.18440008163452148, + 0.18440008163452148, + 0.18459999561309814, + 0.18470001220703125, + 0.18470001220703125, + 0.18470001220703125, + 0.18470001220703125, + 0.18490004539489746, + 0.18499994277954102, + 0.18529999256134033, + 0.18529999256134033, + 0.18560004234313965, + 0.18610000610351562, + 0.18630003929138184, + 0.18630003929138184, + 0.1863999366760254, + 0.18640005588531494, + 0.1864999532699585, + 0.18710005283355713, + 0.1872999668121338, + 0.18759989738464355, + 0.1876000165939331, + 0.1876000165939331, + 0.18779993057250977, + 0.18780004978179932, + 0.18809998035430908, + 0.18810009956359863, + 0.1881999969482422, + 0.1881999969482422, + 0.1881999969482422, + 0.18829989433288574, + 0.18829989433288574, + 0.18849992752075195, + 0.18849992752075195, + 0.1885000467300415, + 0.18859994411468506, + 0.18879997730255127, + 0.18879997730255127, + 0.18900001049041748, + 0.18900001049041748, + 0.18910002708435059, + 0.18910002708435059, + 0.18910002708435059, + 0.18919992446899414, + 0.18919992446899414, + 0.1892000436782837, + 0.1892000436782837, + 0.18929994106292725, + 0.18939995765686035, + 0.18949997425079346, + 0.18949997425079346, + 0.18949997425079346, + 0.18959999084472656, + 0.18959999084472656, + 0.18979990482330322, + 0.18980002403259277, + 0.18980002403259277, + 0.18990004062652588, + 0.18990004062652588, + 0.19009995460510254, + 0.19029998779296875, + 0.1903001070022583, + 0.19060003757476807, + 0.19070005416870117, + 0.19089996814727783, + 0.19099998474121094, + 0.19110000133514404, + 0.19120001792907715, + 0.1913999319076538, + 0.19149994850158691, + 0.19179999828338623, + 0.19190001487731934, + 0.19249999523162842, + 0.19260001182556152, + 0.19280004501342773, + 0.1933000087738037, + 0.19369995594024658, + 0.1937999725341797, + 0.19429993629455566, + 0.19439995288848877, + 0.19459998607635498, + 0.19460010528564453, + 0.19469988346099854, + 0.1949000358581543, + 0.19529998302459717, + 0.19550001621246338, + 0.19560003280639648, + 0.19589996337890625, + 0.1960000991821289, + 0.19669997692108154, + 0.19679999351501465, + 0.19690001010894775, + 0.19690001010894775, + 0.19690001010894775, + 0.19760000705718994, + 0.19770002365112305, + 0.19780004024505615, + 0.1978999376296997, + 0.19790005683898926, + 0.19810009002685547, + 0.19830000400543213, + 0.19830000400543213, + 0.19850003719329834, + 0.19880008697509766, + 0.1988999843597412, + 0.19929993152618408, + 0.19930005073547363, + 0.1993999481201172, + 0.19940006732940674, + 0.1994999647140503, + 0.19950008392333984, + 0.19950008392333984, + 0.19979989528656006, + 0.1998000144958496, + 0.19990003108978271, + 0.20029997825622559, + 0.2003999948501587, + 0.20059990882873535, + 0.20059990882873535, + 0.20079994201660156, + 0.20079994201660156, + 0.2008000612258911, + 0.2008000612258911, + 0.20089995861053467, + 0.2014000415802002, + 0.2016000747680664, + 0.20179998874664307, + 0.20210003852844238, + 0.2022000551223755, + 0.20260000228881836, + 0.20290005207061768, + 0.2031000852584839, + 0.20329999923706055, + 0.20350003242492676, + 0.20350003242492676, + 0.20390009880065918, + 0.20430004596710205, + 0.20589995384216309, + 0.2060999870300293, + 0.20659995079040527, + 0.2069000005722046, + 0.20740008354187012, + 0.20750010013580322, + 0.20799994468688965, + 0.20839989185333252, + 0.2091999053955078, + 0.20950007438659668, + 0.20969998836517334, + 0.2099999189376831, + 0.2117999792098999, + 0.2120000123977661, + 0.2124999761581421, + 0.21279990673065186, + 0.2134000062942505, + 0.21429991722106934, + 0.21499991416931152, + 0.2165999412536621, + 0.21709990501403809, + 0.2181999683380127, + 0.21870005130767822, + 0.21889996528625488, + 0.2190999984741211, + 0.2190999984741211, + 0.2192000150680542, + 0.21989989280700684, + 0.21999990940093994, + 0.22009992599487305, + 0.2203000783920288, + 0.22039997577667236, + 0.22049999237060547, + 0.22159993648529053, + 0.22169995307922363, + 0.22170007228851318, + 0.22179996967315674, + 0.22300004959106445, + 0.22329998016357422, + 0.2237999439239502, + 0.22440004348754883, + 0.2245999574661255, + 0.22470009326934814, + 0.22630000114440918, + 0.22699999809265137, + 0.2274000644683838, + 0.2275000810623169, + 0.22799992561340332, + 0.23020005226135254, + 0.23100006580352783, + 0.2315000295639038, + 0.23169994354248047, + 0.23199999332427979, + 0.23199999332427979, + 0.23379993438720703, + 0.23449993133544922, + 0.23629999160766602, + 0.2395000457763672, + 0.24140000343322754, + 0.24199998378753662, + 0.24210000038146973, + 0.2422999143600464, + 0.24330008029937744, + 0.2446000576019287, + 0.24549996852874756, + 0.24629998207092285, + 0.24749994277954102, + 0.2493000030517578, + 0.2504000663757324, + 0.25249993801116943, + 0.25829994678497314, + 0.2589000463485718, + 0.26120007038116455, + 0.2623000144958496, + 0.2627999782562256, + 0.26440000534057617, + 0.2669999599456787, + 0.27079999446868896, + 0.2709999084472656, + 0.27170002460479736, + 0.2759000062942505, + 0.27990007400512695, + 0.2805999517440796, + 0.3014000654220581, + 0.3131999969482422, + 0.3136000633239746, + 0.31620001792907715, + 0.3178999423980713, + 0.31880009174346924, + 0.32019996643066406, + 0.3228999376296997, + 0.32310009002685547, + 0.32340002059936523, + 0.3242000341415405, + 0.3258000612258911, + 0.32739996910095215, + 0.3301999568939209, + 0.3309999704360962, + 0.33459997177124023, + 0.3358999490737915, + 0.3379000425338745, + 0.33929991722106934, + 0.3452000617980957, + 0.3458000421524048, + 0.3473999500274658, + 0.3632000684738159, + 0.37240004539489746, + 0.37790000438690186, + 0.39020001888275146, + 0.3935999870300293, + 0.40380001068115234, + 0.41009998321533203, + 0.42100000381469727, + 0.42869997024536133, + 0.4451000690460205, + 0.44659996032714844, + 0.448199987411499, + 0.452799916267395, + 0.45350003242492676, + 0.47360002994537354, + 0.49049997329711914, + 0.493399977684021, + 0.49970006942749023, + 0.5511000156402588, + 0.5597000122070312, + 0.5626000165939331, + 0.5663999319076538, + 0.5767999887466431, + 0.5800000429153442, + 0.5835000276565552, + 0.5883001089096069, + 0.5892000198364258, + 0.5913000106811523, + 0.5929000377655029, + 0.5995999574661255, + 0.6105000972747803, + 0.6144000291824341, + 0.6146000623703003, + 0.6216000318527222, + 0.6360000371932983, + 0.638200044631958, + 0.6441999673843384, + 0.6857999563217163, + 0.6887000799179077, + 0.7080999612808228, + 0.722100019454956, + 0.7236000299453735, + 0.7709000110626221, + 0.7738999128341675, + 0.7810999155044556, + 1.89329993724823, + 2.1543999910354614, + 2.3207000494003296 + ], + "middleValue": 0.17589998245239258, + "timestamp": "2023-10-28T20:01:24.806Z" + }, + { + "algorithm": "TimeDistribution updated paths into group", + "version": "v2", + "numIterations": 1000, + "executionTimes": [ + 0.16480004787445068, + 0.16499996185302734, + 0.16509997844696045, + 0.16519999504089355, + 0.16530001163482666, + 0.16530001163482666, + 0.16540002822875977, + 0.16540002822875977, + 0.16540002822875977, + 0.16550004482269287, + 0.16559994220733643, + 0.16560006141662598, + 0.16579997539520264, + 0.16579997539520264, + 0.16589999198913574, + 0.16589999198913574, + 0.16589999198913574, + 0.16600000858306885, + 0.16610002517700195, + 0.16610002517700195, + 0.16610002517700195, + 0.16630005836486816, + 0.16630005836486816, + 0.16640007495880127, + 0.16640007495880127, + 0.16649997234344482, + 0.16659998893737793, + 0.16659998893737793, + 0.16660010814666748, + 0.16670000553131104, + 0.16670000553131104, + 0.16670000553131104, + 0.1667999029159546, + 0.16680002212524414, + 0.16680002212524414, + 0.16680002212524414, + 0.16690003871917725, + 0.16690003871917725, + 0.16690003871917725, + 0.1670999526977539, + 0.167199969291687, + 0.167199969291687, + 0.16720008850097656, + 0.16740000247955322, + 0.16740000247955322, + 0.1677999496459961, + 0.16780006885528564, + 0.16780006885528564, + 0.1678999662399292, + 0.16790008544921875, + 0.16790008544921875, + 0.1679999828338623, + 0.1679999828338623, + 0.1679999828338623, + 0.1679999828338623, + 0.1679999828338623, + 0.1679999828338623, + 0.1680999994277954, + 0.1680999994277954, + 0.1680999994277954, + 0.16820001602172852, + 0.16820001602172852, + 0.16820001602172852, + 0.16820001602172852, + 0.16829991340637207, + 0.16830003261566162, + 0.16830003261566162, + 0.16839993000030518, + 0.16839993000030518, + 0.16849994659423828, + 0.16849994659423828, + 0.16849994659423828, + 0.16850006580352783, + 0.1685999631881714, + 0.1685999631881714, + 0.1685999631881714, + 0.1685999631881714, + 0.16860008239746094, + 0.16860008239746094, + 0.16860008239746094, + 0.1686999797821045, + 0.1686999797821045, + 0.1686999797821045, + 0.16870009899139404, + 0.16870009899139404, + 0.16870009899139404, + 0.16889989376068115, + 0.1689000129699707, + 0.16899991035461426, + 0.16899991035461426, + 0.1690000295639038, + 0.1690000295639038, + 0.16919994354248047, + 0.16919994354248047, + 0.16920006275177002, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16930007934570312, + 0.16930007934570312, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.1696000099182129, + 0.1696000099182129, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.16979992389678955, + 0.16979992389678955, + 0.16979992389678955, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.16989994049072266, + 0.16989994049072266, + 0.16989994049072266, + 0.1699000597000122, + 0.16999995708465576, + 0.1700000762939453, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17039990425109863, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17049992084503174, + 0.17049992084503174, + 0.17049992084503174, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.1707000732421875, + 0.1707000732421875, + 0.1707000732421875, + 0.1707000732421875, + 0.1707000732421875, + 0.1707000732421875, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.1709001064300537, + 0.17099988460540771, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17109990119934082, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17119991779327393, + 0.17119991779327393, + 0.17119991779327393, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17129993438720703, + 0.17129993438720703, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.1715000867843628, + 0.1715000867843628, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.1716001033782959, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.17190003395080566, + 0.17199993133544922, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17210006713867188, + 0.17210006713867188, + 0.17210006713867188, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17220008373260498, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17230010032653809, + 0.17230010032653809, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.1724998950958252, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.1726999282836914, + 0.1726999282836914, + 0.1726999282836914, + 0.1726999282836914, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17290008068084717, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.1732999086380005, + 0.1732999086380005, + 0.1732999086380005, + 0.17330002784729004, + 0.1733999252319336, + 0.1733999252319336, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.1734999418258667, + 0.1734999418258667, + 0.1734999418258667, + 0.17350006103515625, + 0.17350006103515625, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.17370009422302246, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17399990558624268, + 0.17409992218017578, + 0.17410004138946533, + 0.17410004138946533, + 0.1741999387741089, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.174299955368042, + 0.174299955368042, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.17440009117126465, + 0.17440009117126465, + 0.17440009117126465, + 0.1744999885559082, + 0.1744999885559082, + 0.17450010776519775, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.17469990253448486, + 0.17469990253448486, + 0.17469990253448486, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17479991912841797, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17489993572235107, + 0.17490005493164062, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17500007152557373, + 0.17500007152557373, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17510008811950684, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.17539989948272705, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.17549991607666016, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.17559993267059326, + 0.1756000518798828, + 0.1756000518798828, + 0.1756000518798828, + 0.1756000518798828, + 0.1756000518798828, + 0.1756000518798828, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17570006847381592, + 0.17570006847381592, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17580008506774902, + 0.17580008506774902, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.17619991302490234, + 0.17619991302490234, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.17629992961883545, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.1764000654220581, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.1765000820159912, + 0.1765000820159912, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17679989337921143, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17689990997314453, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17699992656707764, + 0.17699992656707764, + 0.1770000457763672, + 0.1770000457763672, + 0.1770000457763672, + 0.17709994316101074, + 0.1771000623703003, + 0.17719995975494385, + 0.17719995975494385, + 0.1772000789642334, + 0.1772000789642334, + 0.1772000789642334, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17750000953674316, + 0.17759990692138672, + 0.17759990692138672, + 0.17759990692138672, + 0.17759990692138672, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17769992351531982, + 0.17769992351531982, + 0.17769992351531982, + 0.17770004272460938, + 0.17770004272460938, + 0.17770004272460938, + 0.17779994010925293, + 0.17779994010925293, + 0.17780005931854248, + 0.17780005931854248, + 0.17780005931854248, + 0.17780005931854248, + 0.17789995670318604, + 0.17789995670318604, + 0.17790007591247559, + 0.17799997329711914, + 0.17799997329711914, + 0.17799997329711914, + 0.1780000925064087, + 0.1780000925064087, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.1781998872756958, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17830002307891846, + 0.17849993705749512, + 0.17849993705749512, + 0.17850005626678467, + 0.17850005626678467, + 0.17869997024536133, + 0.17869997024536133, + 0.17869997024536133, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.1791999340057373, + 0.17920005321502686, + 0.17920005321502686, + 0.17930006980895996, + 0.17930006980895996, + 0.17939996719360352, + 0.17939996719360352, + 0.17939996719360352, + 0.17940008640289307, + 0.17949998378753662, + 0.17949998378753662, + 0.17960000038146973, + 0.17970001697540283, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.17990005016326904, + 0.17990005016326904, + 0.18000006675720215, + 0.18000006675720215, + 0.1800999641418457, + 0.1800999641418457, + 0.1801999807357788, + 0.18039989471435547, + 0.18040001392364502, + 0.18050003051757812, + 0.18050003051757812, + 0.18059992790222168, + 0.18060004711151123, + 0.18060004711151123, + 0.18060004711151123, + 0.18060004711151123, + 0.18069994449615479, + 0.18069994449615479, + 0.1807999610900879, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.18090009689331055, + 0.1809999942779541, + 0.1811000108718872, + 0.1811000108718872, + 0.1811000108718872, + 0.1811000108718872, + 0.1812000274658203, + 0.1812000274658203, + 0.1812000274658203, + 0.18130004405975342, + 0.18130004405975342, + 0.18140006065368652, + 0.18150007724761963, + 0.18159997463226318, + 0.18159997463226318, + 0.1816999912261963, + 0.1816999912261963, + 0.1816999912261963, + 0.1816999912261963, + 0.1816999912261963, + 0.1816999912261963, + 0.18170011043548584, + 0.1819000244140625, + 0.1819000244140625, + 0.18209993839263916, + 0.1821000576019287, + 0.1821000576019287, + 0.1821000576019287, + 0.18219995498657227, + 0.18219995498657227, + 0.18230009078979492, + 0.18239998817443848, + 0.18250000476837158, + 0.18250000476837158, + 0.18259990215301514, + 0.1826000213623047, + 0.1826000213623047, + 0.1827000379562378, + 0.1828000545501709, + 0.1830000877380371, + 0.18309998512268066, + 0.18309998512268066, + 0.18329989910125732, + 0.18329989910125732, + 0.18330001831054688, + 0.18379998207092285, + 0.18389999866485596, + 0.18410003185272217, + 0.18410003185272217, + 0.18419992923736572, + 0.18420004844665527, + 0.18429994583129883, + 0.18429994583129883, + 0.18440008163452148, + 0.18449997901916504, + 0.18449997901916504, + 0.18470001220703125, + 0.18470001220703125, + 0.18470001220703125, + 0.1847999095916748, + 0.18490004539489746, + 0.18519997596740723, + 0.1853998899459839, + 0.18550002574920654, + 0.18550002574920654, + 0.18550002574920654, + 0.18550002574920654, + 0.1855999231338501, + 0.1855999231338501, + 0.1857999563217163, + 0.18580007553100586, + 0.18610000610351562, + 0.1865999698638916, + 0.1865999698638916, + 0.1866999864578247, + 0.1868000030517578, + 0.18710005283355713, + 0.18710005283355713, + 0.1872999668121338, + 0.1873999834060669, + 0.18769991397857666, + 0.18780004978179932, + 0.18809998035430908, + 0.18809998035430908, + 0.1881999969482422, + 0.1881999969482422, + 0.1885000467300415, + 0.18869996070861816, + 0.18879997730255127, + 0.18889999389648438, + 0.1892000436782837, + 0.18929994106292725, + 0.18929994106292725, + 0.1893000602722168, + 0.1893000602722168, + 0.18949997425079346, + 0.18959999084472656, + 0.18959999084472656, + 0.1896001100540161, + 0.18980002403259277, + 0.18990004062652588, + 0.19009995460510254, + 0.19050002098083496, + 0.19060003757476807, + 0.19079995155334473, + 0.19089996814727783, + 0.19110000133514404, + 0.19110000133514404, + 0.19110000133514404, + 0.19120001792907715, + 0.1913999319076538, + 0.19159996509552002, + 0.19160008430480957, + 0.19160008430480957, + 0.19179999828338623, + 0.19200003147125244, + 0.19200003147125244, + 0.19210004806518555, + 0.19240009784698486, + 0.1929999589920044, + 0.1931999921798706, + 0.19340002536773682, + 0.19340002536773682, + 0.19359993934631348, + 0.1938999891281128, + 0.19470000267028809, + 0.19489991664886475, + 0.1950000524520874, + 0.1952000856399536, + 0.19550001621246338, + 0.1957000494003296, + 0.19630002975463867, + 0.19679999351501465, + 0.19679999351501465, + 0.19700002670288086, + 0.1979999542236328, + 0.19809997081756592, + 0.19840002059936523, + 0.1988999843597412, + 0.19910001754760742, + 0.19920003414154053, + 0.1994999647140503, + 0.19989991188049316, + 0.19990003108978271, + 0.19990003108978271, + 0.19999992847442627, + 0.20000004768371582, + 0.20010006427764893, + 0.20019996166229248, + 0.20019996166229248, + 0.20019996166229248, + 0.20029997825622559, + 0.20030009746551514, + 0.2003999948501587, + 0.20049989223480225, + 0.20049989223480225, + 0.2005000114440918, + 0.2006000280380249, + 0.20079994201660156, + 0.2008000612258911, + 0.20089995861053467, + 0.2023000717163086, + 0.20260000228881836, + 0.20280003547668457, + 0.20299994945526123, + 0.20319998264312744, + 0.20379996299743652, + 0.2042999267578125, + 0.20459997653961182, + 0.20489990711212158, + 0.20540010929107666, + 0.20540010929107666, + 0.20580005645751953, + 0.20589995384216309, + 0.2060999870300293, + 0.2071000337600708, + 0.2072000503540039, + 0.20759999752044678, + 0.20889997482299805, + 0.20959997177124023, + 0.21020007133483887, + 0.21149992942810059, + 0.2116999626159668, + 0.21309995651245117, + 0.2134000062942505, + 0.21399998664855957, + 0.21489989757537842, + 0.21609997749328613, + 0.21890008449554443, + 0.21939992904663086, + 0.21939992904663086, + 0.21979999542236328, + 0.22099995613098145, + 0.22119998931884766, + 0.22310006618499756, + 0.22520005702972412, + 0.2315000295639038, + 0.2321000099182129, + 0.23239994049072266, + 0.23409998416900635, + 0.23450005054473877, + 0.23480010032653809, + 0.2361999750137329, + 0.23829996585845947, + 0.24080002307891846, + 0.24210000038146973, + 0.24369990825653076, + 0.24590003490447998, + 0.24670004844665527, + 0.24870002269744873, + 0.25209999084472656, + 0.25370001792907715, + 0.2580000162124634, + 0.26010000705718994, + 0.2612999677658081, + 0.2621999979019165, + 0.26740002632141113, + 0.269800066947937, + 0.27079999446868896, + 0.27390003204345703, + 0.274399995803833, + 0.274399995803833, + 0.27459990978240967, + 0.2797999382019043, + 0.2798999547958374, + 0.2804999351501465, + 0.28249990940093994, + 0.2832000255584717, + 0.28359997272491455, + 0.28490006923675537, + 0.28690004348754883, + 0.29180002212524414, + 0.2930999994277954, + 0.30369997024536133, + 0.3109999895095825, + 0.3115999698638916, + 0.3120999336242676, + 0.3125, + 0.3138999938964844, + 0.3171999454498291, + 0.32120001316070557, + 0.3242000341415405, + 0.3256000280380249, + 0.3290001153945923, + 0.33229994773864746, + 0.3434000015258789, + 0.34569990634918213, + 0.35199999809265137, + 0.3524000644683838, + 0.3532000780105591, + 0.36110007762908936, + 0.3686000108718872, + 0.3774000406265259, + 0.3878999948501587, + 0.38940000534057617, + 0.39139997959136963, + 0.39489996433258057, + 0.39549994468688965, + 0.3961000442504883, + 0.39660000801086426, + 0.39850008487701416, + 0.4004000425338745, + 0.40149998664855957, + 0.40390002727508545, + 0.4047999382019043, + 0.40799999237060547, + 0.41100001335144043, + 0.413100004196167, + 0.4203000068664551, + 0.43550002574920654, + 0.45420002937316895, + 0.46700000762939453, + 0.4678000211715698, + 0.524399995803833, + 0.5399000644683838, + 0.5415999889373779, + 0.5435999631881714, + 0.5450000762939453, + 0.5472999811172485, + 0.5616999864578247, + 0.5625, + 0.5751999616622925, + 0.5764999389648438, + 0.5831999778747559, + 0.5863999128341675, + 0.5930999517440796, + 0.5992000102996826, + 0.6050999164581299, + 0.6129999160766602, + 0.6331000328063965, + 0.6437000036239624, + 0.6574000120162964, + 0.6642999649047852, + 0.6693999767303467, + 0.7058999538421631, + 0.7124999761581421, + 0.7631000280380249, + 0.8105999231338501, + 1.1055999994277954, + 2.198799967765808, + 2.557099938392639, + 2.763300061225891 + ], + "middleValue": 0.17569994926452637, + "timestamp": "2023-10-28T20:23:44.524Z" } ] \ No newline at end of file diff --git a/src/Class/Groups.ts b/src/Class/Groups.ts index 19f652f..56ff486 100644 --- a/src/Class/Groups.ts +++ b/src/Class/Groups.ts @@ -1,5 +1,5 @@ -import { Group } from '../types/Group'; import { arraysHaveSameValues } from '../utils/array'; +import Group from './../types/Group'; class Groups { private groups: Group[] = []; @@ -18,6 +18,7 @@ class Groups { requiredEvents: path, studentIds: [studentId], _id: this.groups.length + 1, + paths: [], }); } } diff --git a/src/alg/TimeDistribution.ts b/src/alg/TimeDistribution.ts index 1374b45..902556e 100644 --- a/src/alg/TimeDistribution.ts +++ b/src/alg/TimeDistribution.ts @@ -3,13 +3,12 @@ import { PriorityQueue } from '../Class/PriorityQueue'; import PollQuestion from '../types/Polls'; import Student from '../types/Student'; import createGraph from './TimeDistribution/CreateGraph'; -import { distributeStudentsToPaths } from './TimeDistribution/DistributeGroups'; +import { distributeStudentsToPaths } from './TimeDistribution/DistributeStudents'; import { findPathsForTheGroups } from './TimeDistribution/FindPaths'; import { getVotingIds } from './TimeDistribution/Utils'; import { allocateGroupsToItems } from './TimeDistribution/AllocateGroupsToItems'; import Item from '../types/Item'; import Project from '../types/Project'; -import { Path_config } from '../types/Path_config'; function buildGroupsByPaths( polls: PollQuestion[], @@ -36,18 +35,13 @@ function main( project: Project, polls: PollQuestion[] ): Item[] { - const groups = buildGroupsByPaths(polls, students); + let groups = buildGroupsByPaths(polls, students); const g = createGraph(items); - const path_configs: Path_config[] = findPathsForTheGroups( - groups, - items, - g, - project - ); + groups = findPathsForTheGroups(groups, items, g, project); const pq: PriorityQueue = createPQ(groups); - distributeStudentsToPaths(pq, items, path_configs); + distributeStudentsToPaths(pq, items, groups); - allocateGroupsToItems(path_configs, items, groups); + allocateGroupsToItems(items, groups); return items; } diff --git a/src/alg/TimeDistribution/AllocateGroupsToItems.ts b/src/alg/TimeDistribution/AllocateGroupsToItems.ts index f7df41f..8478a3b 100644 --- a/src/alg/TimeDistribution/AllocateGroupsToItems.ts +++ b/src/alg/TimeDistribution/AllocateGroupsToItems.ts @@ -1,22 +1,14 @@ import type Item from '../../types/Item'; -import { type Path_config } from '../../types/Path_config'; import { Group } from '../../Class/Groups'; -function allocateGroupsToItems( - path_configs: Path_config[], - items: Item[], - groups: Group[] -): void { +function allocateGroupsToItems(items: Item[], groups: Group[]): void { items.forEach((item) => (item.studentIds = [])); - path_configs.forEach((path_config) => { - if (path_config.valueForTestingStudentDistribution !== 0) { - const groupId = path_config.groupId; - const studentsCount = - path_config.valueForTestingStudentDistribution; + groups.forEach((group) => { + group.paths.forEach((path_config) => { + if (path_config.valueForTestingStudentDistribution !== 0) { + const studentsCount = + path_config.valueForTestingStudentDistribution; - const group = groups.find((group) => groupId === group._id); - - if (group) { const ids = Array.from({ length: studentsCount }, () => group.studentIds.shift() ); @@ -30,7 +22,7 @@ function allocateGroupsToItems( } }); } - } + }); }); } diff --git a/src/alg/TimeDistribution/DistributeGroups.ts b/src/alg/TimeDistribution/DistributeStudents.ts similarity index 53% rename from src/alg/TimeDistribution/DistributeGroups.ts rename to src/alg/TimeDistribution/DistributeStudents.ts index 1101a13..53ef76f 100644 --- a/src/alg/TimeDistribution/DistributeGroups.ts +++ b/src/alg/TimeDistribution/DistributeStudents.ts @@ -1,7 +1,6 @@ -import { Group } from '../../Class/Groups'; import { PriorityQueue } from '../../Class/PriorityQueue'; +import Group from '../../types/Group'; import Item from '../../types/Item'; -import { Path_config } from '../../types/Path_config'; import { getMaxAvailableCapacity } from './FindPaths'; const MAX_ITERATIONS = 2000; @@ -9,14 +8,16 @@ let currentIterationCount = 0; let failed = false; function createRecordOfCurrentUsedCapacity( - paths: Path_config[] + groups: Group[] ): Record { const record: Record = {}; - paths.forEach((path) => { - path.path.forEach((pathItem) => { - record[pathItem._id] = - (record[pathItem._id] || 0) + - path.valueForTestingStudentDistribution; + groups.forEach((group) => { + group.paths.forEach((path) => { + path.path.forEach((pathItem) => { + record[pathItem._id] = + (record[pathItem._id] || 0) + + path.valueForTestingStudentDistribution; + }); }); }); return record; @@ -25,53 +26,40 @@ function createRecordOfCurrentUsedCapacity( function distributeStudentsToPaths( pq: PriorityQueue, items: Item[], - paths: Path_config[] + groups: Group[] ): void { while (!pq.isEmpty()) { const group = pq.dequeue(); let amountStudentsRemaining = group.studentIds.length; - paths.forEach((path) => { - if (path.groupId === group._id && amountStudentsRemaining > 0) { - const min = Math.min( - getMaxAvailableCapacity(path.path) - - path.valueForTestingStudentDistribution, - amountStudentsRemaining - ); - amountStudentsRemaining -= min; - path.valueForTestingStudentDistribution - ? (path.valueForTestingStudentDistribution = min) - : (path.valueForTestingStudentDistribution += min); - } + group.paths.forEach((path) => { + const min = Math.min( + getMaxAvailableCapacity(path.path) - + path.valueForTestingStudentDistribution, + amountStudentsRemaining + ); + amountStudentsRemaining -= min; + path.valueForTestingStudentDistribution + ? (path.valueForTestingStudentDistribution = min) + : (path.valueForTestingStudentDistribution += min); }); } - checkForExceedingGroupCapacities(paths, items); + checkForExceedingGroupCapacities(groups, items); } -// function getCurrentMaxAvailableCapacity( -// path: string[], -// items: Item[], -// record: Record -// ): number { -// return Math.min( -// ...items -// .filter((item) => path.includes(item._id)) -// .map((item) => item.groupCapazity - record[item._id]) -// ); -// } function checkForExceedingGroupCapacities( - paths: Path_config[], + groups: Group[], items: Item[] ): void { - const record = createRecordOfCurrentUsedCapacity(paths); + const record = createRecordOfCurrentUsedCapacity(groups); items.forEach((item) => { if (record[item._id] > item.groupCapazity) { redistribute( item, record[item._id] - item.groupCapazity, items, - paths + groups ); } }); @@ -80,19 +68,15 @@ function redistribute( failedId: Item, excessStudents: number, items: Item[], - paths: Path_config[] + groups: Group[] ): boolean { - paths.forEach((path) => { - const alternativePaths = paths.filter( - (pathItem) => - pathItem.groupId === path.groupId && - !pathItem.path.includes(failedId) + groups.forEach((group) => { + const alternativePaths = group.paths.filter( + (pathItem) => !pathItem.path.includes(failedId) ); - const failedGroupPaths = paths.filter( - (pathItem) => - pathItem.groupId === path.groupId && - pathItem.path.includes(failedId) + const failedGroupPaths = group.paths.filter((pathItem) => + pathItem.path.includes(failedId) ); if (failedGroupPaths.length !== 0 && excessStudents !== 0) { @@ -120,12 +104,11 @@ function redistribute( }); } }); - currentIterationCount++; if (currentIterationCount > MAX_ITERATIONS) { failed = true; } else { - checkForExceedingGroupCapacities(paths, items); + checkForExceedingGroupCapacities(groups, items); } return failed; } diff --git a/src/alg/TimeDistribution/FindPaths.ts b/src/alg/TimeDistribution/FindPaths.ts index 70331f5..c84e467 100644 --- a/src/alg/TimeDistribution/FindPaths.ts +++ b/src/alg/TimeDistribution/FindPaths.ts @@ -1,7 +1,6 @@ import { DirectedGraph, GraphNode } from '../../Class/Graph'; import { Group } from '../../Class/Groups'; import Item from '../../types/Item'; -import { Path_config } from '../../types/Path_config'; import Project from '../../types/Project'; import { getDefaultIds } from './Utils'; @@ -10,35 +9,25 @@ function findPathsForTheGroups( items: Item[], g: DirectedGraph, project: Project -): Path_config[] { - const path_configs: Path_config[] = []; +): Group[] { const requiredIds = new Set(getDefaultIds(project)); const entries = g.getNodesWithoutIngoingEdges(); groups.forEach((group) => { const ids = new Set([...requiredIds, ...group.requiredEvents]); entries.forEach((entry: GraphNode) => { - dfs( - entry, - ids, - [], - group.requiredEvents, - group._id, - items, - path_configs - ); + dfs(entry, ids, [], group.requiredEvents, group, items); }); }); - return path_configs; + return groups; } function dfs( node: GraphNode, remainingIds: Set, path: Item[], extraIds: string[], - groupId: number, - items: Item[], - path_configs: Path_config[] + group: Group, + items: Item[] ): void { const requiredIdsCopy = new Set(remainingIds); @@ -50,22 +39,13 @@ function dfs( remainingIds.delete(node.value.eventId); if (remainingIds.size === 0) { - path_configs.push({ - groupId, + group.paths.push({ path: newPath, valueForTestingStudentDistribution: 0, }); } else if (node.edges !== null) { node.edges.forEach((edge) => - dfs( - edge, - remainingIds, - newPath, - extraIds, - groupId, - items, - path_configs - ) + dfs(edge, remainingIds, newPath, extraIds, group, items) ); } diff --git a/src/types/Group.ts b/src/types/Group.ts index 5b5f65a..4c29183 100644 --- a/src/types/Group.ts +++ b/src/types/Group.ts @@ -1,7 +1,7 @@ -import Item from './Item'; - -export interface Group { +import { Path_config } from './Path_config'; +export default interface Group { _id: number; requiredEvents: string[]; studentIds: string[]; + paths: Path_config[]; } diff --git a/src/types/Path_config.ts b/src/types/Path_config.ts index d039aa5..ac1e05e 100644 --- a/src/types/Path_config.ts +++ b/src/types/Path_config.ts @@ -1,7 +1,7 @@ +import Group from './Group'; import Item from './Item'; export interface Path_config { - groupId: number; path: Item[]; valueForTestingStudentDistribution: number; } diff --git a/test/Groups.test.ts b/test/Groups.test.ts index 544c6ac..607949a 100644 --- a/test/Groups.test.ts +++ b/test/Groups.test.ts @@ -17,6 +17,7 @@ describe('Groups class', () => { requiredEvents: path, studentIds: [studentId], _id: 1, + paths: [], }; expect(groups.getAll()).toEqual([expectedGroup]); }); @@ -32,8 +33,18 @@ describe('Groups class', () => { groups.add(path2, studentId2); const expectedGroups: Group[] = [ - { requiredEvents: path1, studentIds: [studentId1], _id: 1 }, - { requiredEvents: path2, studentIds: [studentId2], _id: 2 }, + { + requiredEvents: path1, + studentIds: [studentId1], + _id: 1, + paths: [], + }, + { + requiredEvents: path2, + studentIds: [studentId2], + _id: 2, + paths: [], + }, ]; expect(groups.getAll()).toEqual(expectedGroups); }); @@ -50,6 +61,7 @@ describe('Groups class', () => { requiredEvents: path, studentIds: [studentId], _id: 1, + paths: [], }; expect(retrievedGroup).toEqual(expectedGroup); }); From d59868219375b09bb3c836de23ea5c5b53baa533 Mon Sep 17 00:00:00 2001 From: Erik Date: Sat, 28 Oct 2023 22:56:44 +0200 Subject: [PATCH 6/7] Updated pq prioritery argument. --- src/alg/TimeDistribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alg/TimeDistribution.ts b/src/alg/TimeDistribution.ts index 902556e..628bb72 100644 --- a/src/alg/TimeDistribution.ts +++ b/src/alg/TimeDistribution.ts @@ -24,7 +24,7 @@ function buildGroupsByPaths( function createPQ(groups: Group[]): PriorityQueue { const pq = new PriorityQueue(); groups.forEach((group) => { - pq.enqueue(group, group.requiredEvents.length); + pq.enqueue(group, group.paths.length); }); return pq; } From 76454e682b8a7c86a58f80183435b91b8f63ff20 Mon Sep 17 00:00:00 2001 From: Erik Date: Sun, 29 Oct 2023 01:35:36 +0200 Subject: [PATCH 7/7] V3 Alg StudentDistribution. --- benchmark/timeDistribution.ts | 5 +- results.json | 8072 +++++++++++++++++ src/alg/TimeDistribution.ts | 14 +- .../TimeDistribution/DistributeStudents.ts | 153 +- src/data/Items.ts | 12 + src/index.ts | 9 +- src/types/Item.ts | 15 +- test/data.ts | 12 + 8 files changed, 8173 insertions(+), 119 deletions(-) diff --git a/benchmark/timeDistribution.ts b/benchmark/timeDistribution.ts index 302b883..b091b17 100644 --- a/benchmark/timeDistribution.ts +++ b/benchmark/timeDistribution.ts @@ -52,8 +52,9 @@ if (numIterations % 2 === 0) { } const benchmarkResults: BenchmarkResults = { - algorithm: 'TimeDistribution updated paths into group', - version: 'v2', + algorithm: + 'TimeDistribution impproved distribution proccess + small per updates', + version: 'v3.1', numIterations, executionTimes, middleValue, diff --git a/results.json b/results.json index a9d275c..3799e39 100644 --- a/results.json +++ b/results.json @@ -5043,5 +5043,8077 @@ ], "middleValue": 0.17569994926452637, "timestamp": "2023-10-28T20:23:44.524Z" + }, + { + "algorithm": "TimeDistribution updated paths into group", + "version": "v2", + "numIterations": 1000, + "executionTimes": [ + 0.16849994659423828, + 0.16899991035461426, + 0.16939997673034668, + 0.1696000099182129, + 0.1698000431060791, + 0.1699000597000122, + 0.1699000597000122, + 0.16999995708465576, + 0.1700000762939453, + 0.17009997367858887, + 0.17019999027252197, + 0.17030000686645508, + 0.17030000686645508, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.1705000400543213, + 0.17059993743896484, + 0.17059993743896484, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.17069995403289795, + 0.17069995403289795, + 0.17079997062683105, + 0.17079997062683105, + 0.1708000898361206, + 0.17089998722076416, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17110002040863037, + 0.17119991779327393, + 0.17120003700256348, + 0.17120003700256348, + 0.17129993438720703, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.17149996757507324, + 0.17149996757507324, + 0.1715000867843628, + 0.1715000867843628, + 0.1715000867843628, + 0.1715000867843628, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17199993133544922, + 0.17199993133544922, + 0.17199993133544922, + 0.17200005054473877, + 0.17200005054473877, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17210006713867188, + 0.17210006713867188, + 0.17210006713867188, + 0.17210006713867188, + 0.17210006713867188, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17220008373260498, + 0.17220008373260498, + 0.17220008373260498, + 0.17220008373260498, + 0.17220008373260498, + 0.17229998111724854, + 0.17229998111724854, + 0.17230010032653809, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.1724998950958252, + 0.1724998950958252, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.1725999116897583, + 0.1725999116897583, + 0.1725999116897583, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.1726999282836914, + 0.1726999282836914, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.17280006408691406, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17299997806549072, + 0.17299997806549072, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.1732999086380005, + 0.1732999086380005, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.1733999252319336, + 0.1733999252319336, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.1734999418258667, + 0.17350006103515625, + 0.17350006103515625, + 0.17350006103515625, + 0.17350006103515625, + 0.17350006103515625, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17380011081695557, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17399990558624268, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.1741999387741089, + 0.1741999387741089, + 0.1741999387741089, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.17430007457733154, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.17440009117126465, + 0.1744999885559082, + 0.1744999885559082, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17479991912841797, + 0.17479991912841797, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17489993572235107, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17500007152557373, + 0.17500007152557373, + 0.17509996891021729, + 0.17509996891021729, + 0.17510008811950684, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.17520010471343994, + 0.17520010471343994, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.17539989948272705, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.17549991607666016, + 0.17549991607666016, + 0.17549991607666016, + 0.17549991607666016, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.17559993267059326, + 0.17559993267059326, + 0.1756000518798828, + 0.1756000518798828, + 0.1756000518798828, + 0.1756000518798828, + 0.1756000518798828, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17570006847381592, + 0.17570006847381592, + 0.17570006847381592, + 0.17570006847381592, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17580008506774902, + 0.17580008506774902, + 0.17580008506774902, + 0.17580008506774902, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17590010166168213, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17609989643096924, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.17619991302490234, + 0.17619991302490234, + 0.17619991302490234, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.17639994621276855, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.1765000820159912, + 0.1765000820159912, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17660009860992432, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17679989337921143, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17689990997314453, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17699992656707764, + 0.17699992656707764, + 0.1770000457763672, + 0.1770000457763672, + 0.17709994316101074, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.1772000789642334, + 0.1772000789642334, + 0.1772000789642334, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.1773000955581665, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17759990692138672, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17780005931854248, + 0.17789995670318604, + 0.17799997329711914, + 0.17799997329711914, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.1782999038696289, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.178399920463562, + 0.17840003967285156, + 0.17840003967285156, + 0.17840003967285156, + 0.17850005626678467, + 0.17850005626678467, + 0.17850005626678467, + 0.17850005626678467, + 0.17859995365142822, + 0.17859995365142822, + 0.17859995365142822, + 0.17860007286071777, + 0.17869997024536133, + 0.17869997024536133, + 0.17869997024536133, + 0.17869997024536133, + 0.17869997024536133, + 0.17869997024536133, + 0.17870008945465088, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.1790999174118042, + 0.1790999174118042, + 0.17910003662109375, + 0.17910003662109375, + 0.17910003662109375, + 0.17910003662109375, + 0.17910003662109375, + 0.1791999340057373, + 0.1791999340057373, + 0.1791999340057373, + 0.17920005321502686, + 0.17920005321502686, + 0.17920005321502686, + 0.17920005321502686, + 0.1792999505996704, + 0.1792999505996704, + 0.1792999505996704, + 0.1792999505996704, + 0.1792999505996704, + 0.1792999505996704, + 0.17930006980895996, + 0.17939996719360352, + 0.17939996719360352, + 0.17940008640289307, + 0.17940008640289307, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.17950010299682617, + 0.17950010299682617, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17970001697540283, + 0.17970001697540283, + 0.17970001697540283, + 0.17970001697540283, + 0.1797999143600464, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.1798999309539795, + 0.1798999309539795, + 0.1798999309539795, + 0.17990005016326904, + 0.17990005016326904, + 0.1799999475479126, + 0.1799999475479126, + 0.18000006675720215, + 0.18000006675720215, + 0.18000006675720215, + 0.18000006675720215, + 0.18000006675720215, + 0.1800999641418457, + 0.1800999641418457, + 0.18010008335113525, + 0.1801999807357788, + 0.1801999807357788, + 0.1801999807357788, + 0.1801999807357788, + 0.18020009994506836, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18039989471435547, + 0.18039989471435547, + 0.18040001392364502, + 0.18040001392364502, + 0.18040001392364502, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18059992790222168, + 0.18060004711151123, + 0.18069994449615479, + 0.18069994449615479, + 0.18069994449615479, + 0.18069994449615479, + 0.18069994449615479, + 0.18070006370544434, + 0.18070006370544434, + 0.1807999610900879, + 0.1807999610900879, + 0.1807999610900879, + 0.18080008029937744, + 0.18080008029937744, + 0.18080008029937744, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.18090009689331055, + 0.1809999942779541, + 0.18100011348724365, + 0.18109989166259766, + 0.1811000108718872, + 0.18119990825653076, + 0.1812000274658203, + 0.18129992485046387, + 0.18130004405975342, + 0.18139994144439697, + 0.18139994144439697, + 0.18139994144439697, + 0.18140006065368652, + 0.18140006065368652, + 0.18149995803833008, + 0.18150007724761963, + 0.18150007724761963, + 0.18159997463226318, + 0.18159997463226318, + 0.18159997463226318, + 0.18160009384155273, + 0.1816999912261963, + 0.1816999912261963, + 0.1818000078201294, + 0.1818000078201294, + 0.18189990520477295, + 0.1819000244140625, + 0.1819000244140625, + 0.18199992179870605, + 0.1820000410079956, + 0.1820000410079956, + 0.18209993839263916, + 0.18209993839263916, + 0.18209993839263916, + 0.1821000576019287, + 0.1821000576019287, + 0.18219995498657227, + 0.18220007419586182, + 0.18229997158050537, + 0.18229997158050537, + 0.18229997158050537, + 0.18229997158050537, + 0.18229997158050537, + 0.18239998817443848, + 0.18239998817443848, + 0.18239998817443848, + 0.18239998817443848, + 0.18249988555908203, + 0.18250000476837158, + 0.18250000476837158, + 0.18250000476837158, + 0.18259990215301514, + 0.1826000213623047, + 0.1826000213623047, + 0.1827000379562378, + 0.1827000379562378, + 0.1827000379562378, + 0.1827000379562378, + 0.1827000379562378, + 0.1827000379562378, + 0.1827000379562378, + 0.18279993534088135, + 0.1828000545501709, + 0.1828000545501709, + 0.1828000545501709, + 0.18299996852874756, + 0.1830000877380371, + 0.18309998512268066, + 0.18309998512268066, + 0.18309998512268066, + 0.18320000171661377, + 0.18330001831054688, + 0.18330001831054688, + 0.18330001831054688, + 0.18339991569519043, + 0.18340003490447998, + 0.18340003490447998, + 0.18340003490447998, + 0.18349993228912354, + 0.18350005149841309, + 0.18350005149841309, + 0.18359994888305664, + 0.18359994888305664, + 0.18359994888305664, + 0.18359994888305664, + 0.1836000680923462, + 0.1836000680923462, + 0.18369996547698975, + 0.18369996547698975, + 0.1837000846862793, + 0.1837000846862793, + 0.18379998207092285, + 0.18389999866485596, + 0.18400001525878906, + 0.18400001525878906, + 0.18409991264343262, + 0.18410003185272217, + 0.18410003185272217, + 0.18419992923736572, + 0.18420004844665527, + 0.18429994583129883, + 0.18430006504058838, + 0.18439996242523193, + 0.18440008163452148, + 0.18449997901916504, + 0.18449997901916504, + 0.18449997901916504, + 0.1845000982284546, + 0.1845000982284546, + 0.18459999561309814, + 0.1846998929977417, + 0.1846998929977417, + 0.18470001220703125, + 0.18470001220703125, + 0.18470001220703125, + 0.18470001220703125, + 0.18480002880096436, + 0.1848999261856079, + 0.18499994277954102, + 0.18499994277954102, + 0.18509995937347412, + 0.18509995937347412, + 0.18509995937347412, + 0.18510007858276367, + 0.18519997596740723, + 0.18520009517669678, + 0.18529999256134033, + 0.18529999256134033, + 0.18540000915527344, + 0.18540000915527344, + 0.185499906539917, + 0.185499906539917, + 0.18550002574920654, + 0.18550002574920654, + 0.18560004234313965, + 0.18560004234313965, + 0.18589997291564941, + 0.18619990348815918, + 0.18619990348815918, + 0.18620002269744873, + 0.18630003929138184, + 0.1864999532699585, + 0.1865999698638916, + 0.1865999698638916, + 0.1866999864578247, + 0.1866999864578247, + 0.1866999864578247, + 0.18700003623962402, + 0.18719995021820068, + 0.1872999668121338, + 0.18730008602142334, + 0.1873999834060669, + 0.18809998035430908, + 0.1883000135421753, + 0.1883000135421753, + 0.18839991092681885, + 0.1885000467300415, + 0.18869996070861816, + 0.18889999389648438, + 0.18889999389648438, + 0.1892000436782837, + 0.1892000436782837, + 0.18939995765686035, + 0.18949997425079346, + 0.18959999084472656, + 0.18979990482330322, + 0.18989992141723633, + 0.18990004062652588, + 0.19009995460510254, + 0.1903998851776123, + 0.19040000438690186, + 0.19050002098083496, + 0.19050002098083496, + 0.19050002098083496, + 0.19079995155334473, + 0.19120001792907715, + 0.19200003147125244, + 0.19200003147125244, + 0.19220006465911865, + 0.19249999523162842, + 0.19249999523162842, + 0.19260001182556152, + 0.19279992580413818, + 0.19280004501342773, + 0.19349992275238037, + 0.19359993934631348, + 0.19380009174346924, + 0.1938999891281128, + 0.1938999891281128, + 0.1940000057220459, + 0.19419991970062256, + 0.19430005550384521, + 0.19430005550384521, + 0.19440007209777832, + 0.19449996948242188, + 0.1948000192642212, + 0.1948000192642212, + 0.1948000192642212, + 0.19489991664886475, + 0.19489991664886475, + 0.1949000358581543, + 0.1950000524520874, + 0.1951000690460205, + 0.19539999961853027, + 0.19550001621246338, + 0.19559991359710693, + 0.19560003280639648, + 0.19579994678497314, + 0.1958000659942627, + 0.1958000659942627, + 0.1958000659942627, + 0.19640004634857178, + 0.19700002670288086, + 0.19720005989074707, + 0.19770002365112305, + 0.19800007343292236, + 0.19830000400543213, + 0.19840002059936523, + 0.19900000095367432, + 0.19900000095367432, + 0.19920003414154053, + 0.19929993152618408, + 0.19999992847442627, + 0.2006000280380249, + 0.200700044631958, + 0.20089995861053467, + 0.20089995861053467, + 0.2015000581741333, + 0.20169997215270996, + 0.20179998874664307, + 0.20179998874664307, + 0.20190000534057617, + 0.2022000551223755, + 0.2022000551223755, + 0.20249998569488525, + 0.20249998569488525, + 0.20270001888275146, + 0.20369994640350342, + 0.20379996299743652, + 0.20389997959136963, + 0.20389997959136963, + 0.20410001277923584, + 0.20480000972747803, + 0.20490002632141113, + 0.20490002632141113, + 0.2051999568939209, + 0.2053999900817871, + 0.20580005645751953, + 0.20589995384216309, + 0.2059999704360962, + 0.2059999704360962, + 0.2063000202178955, + 0.2064000368118286, + 0.20670008659362793, + 0.20679998397827148, + 0.2070000171661377, + 0.20770001411437988, + 0.2080000638961792, + 0.20829999446868896, + 0.20850002765655518, + 0.20899999141693115, + 0.20910000801086426, + 0.20929992198944092, + 0.20939993858337402, + 0.20949995517730713, + 0.20980000495910645, + 0.20980000495910645, + 0.21000003814697266, + 0.2100999355316162, + 0.21039998531341553, + 0.21050000190734863, + 0.21119999885559082, + 0.2115999460220337, + 0.21160006523132324, + 0.2120000123977661, + 0.2128000259399414, + 0.21289992332458496, + 0.21319997310638428, + 0.21319997310638428, + 0.21349990367889404, + 0.21539998054504395, + 0.21549999713897705, + 0.21579992771148682, + 0.21770000457763672, + 0.2184000015258789, + 0.218500018119812, + 0.21889996528625488, + 0.2219998836517334, + 0.22310006618499756, + 0.22470009326934814, + 0.22539997100830078, + 0.22599995136260986, + 0.22630000114440918, + 0.22899997234344482, + 0.229699969291687, + 0.2303999662399292, + 0.2305999994277954, + 0.23090004920959473, + 0.23099994659423828, + 0.23149991035461426, + 0.23559999465942383, + 0.23570001125335693, + 0.23649990558624268, + 0.23650002479553223, + 0.23650002479553223, + 0.23660004138946533, + 0.23820006847381592, + 0.24090003967285156, + 0.24160003662109375, + 0.2432999610900879, + 0.2446000576019287, + 0.24580001831054688, + 0.24619996547698975, + 0.24689996242523193, + 0.2508000135421753, + 0.25119996070861816, + 0.2517000436782837, + 0.25300002098083496, + 0.25349998474121094, + 0.2538999319076538, + 0.25390005111694336, + 0.254599928855896, + 0.25480008125305176, + 0.2551000118255615, + 0.25779998302459717, + 0.2592000961303711, + 0.2617000341415405, + 0.2617999315261841, + 0.2647000551223755, + 0.2742999792098999, + 0.27480006217956543, + 0.2750999927520752, + 0.27810001373291016, + 0.2783999443054199, + 0.2807999849319458, + 0.28339993953704834, + 0.28650009632110596, + 0.2868999242782593, + 0.29589998722076416, + 0.29639995098114014, + 0.29780006408691406, + 0.2990000247955322, + 0.3003000020980835, + 0.30299997329711914, + 0.3046000003814697, + 0.32310009002685547, + 0.3242000341415405, + 0.3375999927520752, + 0.33939993381500244, + 0.3427000045776367, + 0.3474999666213989, + 0.35329997539520264, + 0.35350000858306885, + 0.3571000099182129, + 0.35920000076293945, + 0.3671000003814697, + 0.3684999942779541, + 0.37059998512268066, + 0.3752000331878662, + 0.37839996814727783, + 0.4203000068664551, + 0.42149996757507324, + 0.425800085067749, + 0.44300007820129395, + 0.4431999921798706, + 0.4447000026702881, + 0.4566999673843384, + 0.48580002784729004, + 0.49270009994506836, + 0.493399977684021, + 0.49840009212493896, + 0.4990999698638916, + 0.5080999135971069, + 0.5111000537872314, + 0.5145999193191528, + 0.5199999809265137, + 0.5275000333786011, + 0.5311999320983887, + 0.5374999046325684, + 0.5399000644683838, + 0.5697000026702881, + 0.5726000070571899, + 0.5806000232696533, + 0.582800030708313, + 0.5910999774932861, + 0.5942999124526978, + 0.5976999998092651, + 0.5981000661849976, + 0.5986999273300171, + 0.6003000736236572, + 0.6026999950408936, + 0.6098999977111816, + 0.6146999597549438, + 0.6153000593185425, + 0.6169999837875366, + 0.627000093460083, + 0.6382999420166016, + 0.6617000102996826, + 0.7165999412536621, + 0.7415000200271606, + 0.7427999973297119, + 0.742900013923645, + 0.7484999895095825, + 0.7670999765396118, + 0.7940999269485474, + 0.7946000099182129, + 0.8309999704360962, + 0.9337000846862793, + 2.4638999700546265, + 2.7242000102996826, + 3.8201000690460205 + ], + "middleValue": 0.17939996719360352, + "timestamp": "2023-10-28T20:48:49.480Z" + }, + { + "algorithm": "TimeDistribution updated paths into group", + "version": "v2", + "numIterations": 1000, + "executionTimes": [ + 0.16710007190704346, + 0.16720008850097656, + 0.16770005226135254, + 0.1677999496459961, + 0.16780006885528564, + 0.1678999662399292, + 0.1679999828338623, + 0.1680999994277954, + 0.1680999994277954, + 0.16819989681243896, + 0.16820001602172852, + 0.16820001602172852, + 0.16820001602172852, + 0.16830003261566162, + 0.16830003261566162, + 0.16830003261566162, + 0.16840004920959473, + 0.1685999631881714, + 0.1685999631881714, + 0.1685999631881714, + 0.1685999631881714, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.16889989376068115, + 0.1689000129699707, + 0.1689000129699707, + 0.1689000129699707, + 0.1689000129699707, + 0.1689000129699707, + 0.16899991035461426, + 0.16909992694854736, + 0.16909992694854736, + 0.16910004615783691, + 0.16930007934570312, + 0.16930007934570312, + 0.16939997673034668, + 0.16939997673034668, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.16969990730285645, + 0.169700026512146, + 0.169700026512146, + 0.1698000431060791, + 0.1698000431060791, + 0.16989994049072266, + 0.1699000597000122, + 0.1699000597000122, + 0.1700000762939453, + 0.1700000762939453, + 0.17019999027252197, + 0.17019999027252197, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17039990425109863, + 0.17040002346038818, + 0.17040002346038818, + 0.1705000400543213, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.1706000566482544, + 0.17069995403289795, + 0.17069995403289795, + 0.1707000732421875, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.1708000898361206, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17109990119934082, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17119991779327393, + 0.17120003700256348, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.1715000867843628, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.1716001033782959, + 0.1716001033782959, + 0.17170000076293945, + 0.17170000076293945, + 0.171799898147583, + 0.171799898147583, + 0.171799898147583, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.1718999147415161, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17210006713867188, + 0.17210006713867188, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17220008373260498, + 0.17220008373260498, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.1724998950958252, + 0.1724998950958252, + 0.1724998950958252, + 0.1724998950958252, + 0.17250001430511475, + 0.1725999116897583, + 0.1725999116897583, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.1726999282836914, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.17280006408691406, + 0.17280006408691406, + 0.17280006408691406, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17290008068084717, + 0.17290008068084717, + 0.17290008068084717, + 0.17290008068084717, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17300009727478027, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17310011386871338, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.1732999086380005, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.1734999418258667, + 0.1734999418258667, + 0.1734999418258667, + 0.1734999418258667, + 0.1734999418258667, + 0.17350006103515625, + 0.17350006103515625, + 0.17350006103515625, + 0.17350006103515625, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.17370009422302246, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17380011081695557, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17399990558624268, + 0.17399990558624268, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17409992218017578, + 0.17409992218017578, + 0.17409992218017578, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.1741999387741089, + 0.1741999387741089, + 0.1741999387741089, + 0.1741999387741089, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.17430007457733154, + 0.17430007457733154, + 0.17430007457733154, + 0.17430007457733154, + 0.17430007457733154, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.17440009117126465, + 0.17440009117126465, + 0.17440009117126465, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.17450010776519775, + 0.17450010776519775, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.17469990253448486, + 0.17469990253448486, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17489993572235107, + 0.17489993572235107, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17500007152557373, + 0.17500007152557373, + 0.17500007152557373, + 0.17500007152557373, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17510008811950684, + 0.17510008811950684, + 0.17510008811950684, + 0.17510008811950684, + 0.17510008811950684, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.17529988288879395, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.17539989948272705, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.17549991607666016, + 0.17549991607666016, + 0.17549991607666016, + 0.17549991607666016, + 0.17549991607666016, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.17559993267059326, + 0.17559993267059326, + 0.1756000518798828, + 0.1756000518798828, + 0.1756000518798828, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17570006847381592, + 0.17570006847381592, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17580008506774902, + 0.17580008506774902, + 0.17580008506774902, + 0.17580008506774902, + 0.17580008506774902, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17609989643096924, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.17619991302490234, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.17629992961883545, + 0.17629992961883545, + 0.17629992961883545, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.17639994621276855, + 0.17639994621276855, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.1765000820159912, + 0.1765000820159912, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17660009860992432, + 0.17660009860992432, + 0.17660009860992432, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17689990997314453, + 0.17689990997314453, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17699992656707764, + 0.17699992656707764, + 0.1770000457763672, + 0.1770000457763672, + 0.1770000457763672, + 0.17709994316101074, + 0.17709994316101074, + 0.17709994316101074, + 0.17709994316101074, + 0.17709994316101074, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.1772000789642334, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.1773000955581665, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17759990692138672, + 0.17759990692138672, + 0.17759990692138672, + 0.17759990692138672, + 0.17759990692138672, + 0.17759990692138672, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17769992351531982, + 0.17769992351531982, + 0.17770004272460938, + 0.17770004272460938, + 0.17770004272460938, + 0.17770004272460938, + 0.17770004272460938, + 0.17779994010925293, + 0.17779994010925293, + 0.17779994010925293, + 0.17780005931854248, + 0.17780005931854248, + 0.17789995670318604, + 0.17789995670318604, + 0.17789995670318604, + 0.17789995670318604, + 0.17789995670318604, + 0.17790007591247559, + 0.17790007591247559, + 0.17799997329711914, + 0.17799997329711914, + 0.17799997329711914, + 0.1780000925064087, + 0.1780000925064087, + 0.1780000925064087, + 0.1780000925064087, + 0.1780000925064087, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.178399920463562, + 0.178399920463562, + 0.17840003967285156, + 0.17849993705749512, + 0.17849993705749512, + 0.17849993705749512, + 0.17850005626678467, + 0.17850005626678467, + 0.17850005626678467, + 0.17859995365142822, + 0.17860007286071777, + 0.17869997024536133, + 0.17869997024536133, + 0.17870008945465088, + 0.17870008945465088, + 0.17870008945465088, + 0.17870008945465088, + 0.17879998683929443, + 0.17879998683929443, + 0.17880010604858398, + 0.17890000343322754, + 0.17890000343322754, + 0.17900002002716064, + 0.17900002002716064, + 0.17910003662109375, + 0.17910003662109375, + 0.17920005321502686, + 0.17920005321502686, + 0.1792999505996704, + 0.17930006980895996, + 0.17930006980895996, + 0.17930006980895996, + 0.17939996719360352, + 0.17939996719360352, + 0.17949998378753662, + 0.17949998378753662, + 0.17950010299682617, + 0.17950010299682617, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17969989776611328, + 0.17969989776611328, + 0.17969989776611328, + 0.17970001697540283, + 0.17970001697540283, + 0.1797999143600464, + 0.1797999143600464, + 0.17980003356933594, + 0.17980003356933594, + 0.1799999475479126, + 0.1799999475479126, + 0.18000006675720215, + 0.18000006675720215, + 0.1800999641418457, + 0.18010008335113525, + 0.1801999807357788, + 0.18029999732971191, + 0.18029999732971191, + 0.18030011653900146, + 0.18039989471435547, + 0.18049991130828857, + 0.18060004711151123, + 0.1807999610900879, + 0.1807999610900879, + 0.1807999610900879, + 0.180899977684021, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1811000108718872, + 0.1812000274658203, + 0.1812000274658203, + 0.1812000274658203, + 0.1812000274658203, + 0.18129992485046387, + 0.18149995803833008, + 0.18150007724761963, + 0.18159997463226318, + 0.18159997463226318, + 0.1816999912261963, + 0.1816999912261963, + 0.18170011043548584, + 0.1818000078201294, + 0.18189990520477295, + 0.1819000244140625, + 0.1820000410079956, + 0.1820000410079956, + 0.1820000410079956, + 0.1820000410079956, + 0.18209993839263916, + 0.18209993839263916, + 0.18239998817443848, + 0.18239998817443848, + 0.18250000476837158, + 0.18250000476837158, + 0.18250000476837158, + 0.1826000213623047, + 0.18269991874694824, + 0.18269991874694824, + 0.1827000379562378, + 0.18289995193481445, + 0.182900071144104, + 0.18330001831054688, + 0.18339991569519043, + 0.18339991569519043, + 0.1836000680923462, + 0.18379998207092285, + 0.18419992923736572, + 0.18420004844665527, + 0.18430006504058838, + 0.18439996242523193, + 0.18440008163452148, + 0.18440008163452148, + 0.1845000982284546, + 0.18459999561309814, + 0.18480002880096436, + 0.18509995937347412, + 0.18519997596740723, + 0.185499906539917, + 0.18620002269744873, + 0.18629992008209229, + 0.18640005588531494, + 0.1865999698638916, + 0.18700003623962402, + 0.1873999834060669, + 0.1876000165939331, + 0.18789994716644287, + 0.18790006637573242, + 0.18820011615753174, + 0.1883000135421753, + 0.18849992752075195, + 0.18859994411468506, + 0.18859994411468506, + 0.18889999389648438, + 0.18900001049041748, + 0.18900001049041748, + 0.18910002708435059, + 0.18910002708435059, + 0.18919992446899414, + 0.18939995765686035, + 0.18959999084472656, + 0.18959999084472656, + 0.18970000743865967, + 0.18980002403259277, + 0.18989992141723633, + 0.18989992141723633, + 0.18990004062652588, + 0.18999993801116943, + 0.18999993801116943, + 0.19009995460510254, + 0.19009995460510254, + 0.19029998779296875, + 0.19040000438690186, + 0.19040000438690186, + 0.19050002098083496, + 0.19050002098083496, + 0.19059991836547852, + 0.19099998474121094, + 0.1911998987197876, + 0.19120001792907715, + 0.19130003452301025, + 0.19179999828338623, + 0.19189989566802979, + 0.19200003147125244, + 0.1922999620437622, + 0.19270002841949463, + 0.1933000087738037, + 0.19340002536773682, + 0.19449996948242188, + 0.19529998302459717, + 0.19560003280639648, + 0.19589996337890625, + 0.19609999656677246, + 0.19630002975463867, + 0.19640004634857178, + 0.19669997692108154, + 0.19679999351501465, + 0.19719994068145752, + 0.19720005989074707, + 0.19740009307861328, + 0.19770002365112305, + 0.1977999210357666, + 0.198699951171875, + 0.19900000095367432, + 0.19919991493225098, + 0.1993999481201172, + 0.20009994506835938, + 0.2003999948501587, + 0.2005000114440918, + 0.2006000280380249, + 0.20069992542266846, + 0.200700044631958, + 0.200700044631958, + 0.2008000612258911, + 0.20120000839233398, + 0.20179998874664307, + 0.20190000534057617, + 0.20190000534057617, + 0.20229995250701904, + 0.2023000717163086, + 0.20239996910095215, + 0.20249998569488525, + 0.20249998569488525, + 0.20319998264312744, + 0.2044999599456787, + 0.20459997653961182, + 0.20479989051818848, + 0.20510005950927734, + 0.2053999900817871, + 0.20559990406036377, + 0.20570003986358643, + 0.20659995079040527, + 0.2072000503540039, + 0.20739996433258057, + 0.2079000473022461, + 0.2080000638961792, + 0.20840001106262207, + 0.20889997482299805, + 0.20959997177124023, + 0.21029996871948242, + 0.21029996871948242, + 0.21210002899169922, + 0.21219992637634277, + 0.21379995346069336, + 0.21399998664855957, + 0.21520006656646729, + 0.21549999713897705, + 0.21580004692077637, + 0.21669995784759521, + 0.21860003471374512, + 0.2190999984741211, + 0.21969997882843018, + 0.21979999542236328, + 0.22039997577667236, + 0.22130000591278076, + 0.22130000591278076, + 0.22229993343353271, + 0.22239995002746582, + 0.22240006923675537, + 0.22300004959106445, + 0.22360002994537354, + 0.2245999574661255, + 0.22679996490478516, + 0.2269001007080078, + 0.22759997844696045, + 0.22899997234344482, + 0.23099994659423828, + 0.2324000597000122, + 0.23259997367858887, + 0.23470008373260498, + 0.23540008068084717, + 0.23629999160766602, + 0.23730003833770752, + 0.2378000020980835, + 0.24010002613067627, + 0.24039995670318604, + 0.2405000925064087, + 0.240899920463562, + 0.24720001220703125, + 0.25029993057250977, + 0.2505999803543091, + 0.2527000904083252, + 0.2559000253677368, + 0.2572000026702881, + 0.2573000192642212, + 0.2617000341415405, + 0.263200044631958, + 0.2649000883102417, + 0.26600003242492676, + 0.2684999704360962, + 0.27079999446868896, + 0.27730000019073486, + 0.2803999185562134, + 0.2817000150680542, + 0.2879999876022339, + 0.30500006675720215, + 0.3174999952316284, + 0.31780004501342773, + 0.31870007514953613, + 0.3194999694824219, + 0.32190001010894775, + 0.32330000400543213, + 0.3249000310897827, + 0.3255000114440918, + 0.33590006828308105, + 0.33730006217956543, + 0.3513000011444092, + 0.3555999994277954, + 0.36170005798339844, + 0.36260008811950684, + 0.36479997634887695, + 0.3686000108718872, + 0.3791999816894531, + 0.39619994163513184, + 0.4052000045776367, + 0.4072999954223633, + 0.40789997577667236, + 0.4117000102996826, + 0.4128999710083008, + 0.41499996185302734, + 0.41530001163482666, + 0.4314000606536865, + 0.43779993057250977, + 0.44419991970062256, + 0.44850003719329834, + 0.45579993724823, + 0.4941999912261963, + 0.5002999305725098, + 0.5271999835968018, + 0.5338000059127808, + 0.5354000329971313, + 0.5454999208450317, + 0.5463999509811401, + 0.5494000911712646, + 0.5534999370574951, + 0.5566999912261963, + 0.5570000410079956, + 0.5723000764846802, + 0.5725998878479004, + 0.5750000476837158, + 0.5774999856948853, + 0.5785999298095703, + 0.578700065612793, + 0.5808000564575195, + 0.5836000442504883, + 0.5838000774383545, + 0.5976001024246216, + 0.601099967956543, + 0.6225000619888306, + 0.640299916267395, + 0.6849000453948975, + 0.7152000665664673, + 0.7421998977661133, + 2.64520001411438, + 3.819300055503845 + ], + "middleValue": 0.176300048828125, + "timestamp": "2023-10-28T20:49:05.042Z" + }, + { + "algorithm": "TimeDistribution updated paths into group", + "version": "v2", + "numIterations": 1000, + "executionTimes": [ + 0.1677999496459961, + 0.16780006885528564, + 0.16780006885528564, + 0.1680999994277954, + 0.16829991340637207, + 0.1685999631881714, + 0.1686999797821045, + 0.1687999963760376, + 0.1689000129699707, + 0.1690000295639038, + 0.16919994354248047, + 0.16919994354248047, + 0.16929996013641357, + 0.1696000099182129, + 0.1696000099182129, + 0.169700026512146, + 0.16979992389678955, + 0.16979992389678955, + 0.16979992389678955, + 0.1698000431060791, + 0.16989994049072266, + 0.16999995708465576, + 0.1700000762939453, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17020010948181152, + 0.17030000686645508, + 0.17030000686645508, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17049992084503174, + 0.17049992084503174, + 0.17049992084503174, + 0.17049992084503174, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1707000732421875, + 0.1707000732421875, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.1708000898361206, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.1709001064300537, + 0.17099988460540771, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17109990119934082, + 0.17109990119934082, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17119991779327393, + 0.17119991779327393, + 0.17119991779327393, + 0.17119991779327393, + 0.17119991779327393, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.1714000701904297, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.1715000867843628, + 0.1715000867843628, + 0.1715000867843628, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.171799898147583, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17199993133544922, + 0.17199993133544922, + 0.17200005054473877, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17210006713867188, + 0.17210006713867188, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17220008373260498, + 0.17220008373260498, + 0.17220008373260498, + 0.17220008373260498, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.1724998950958252, + 0.1724998950958252, + 0.1724998950958252, + 0.1724998950958252, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.1725999116897583, + 0.1725999116897583, + 0.1725999116897583, + 0.1725999116897583, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.1726999282836914, + 0.1726999282836914, + 0.1726999282836914, + 0.17270004749298096, + 0.17270004749298096, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.17280006408691406, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17300009727478027, + 0.17300009727478027, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.1732999086380005, + 0.1732999086380005, + 0.1732999086380005, + 0.1732999086380005, + 0.1732999086380005, + 0.1732999086380005, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.1733999252319336, + 0.1733999252319336, + 0.17340004444122314, + 0.17340004444122314, + 0.1734999418258667, + 0.1734999418258667, + 0.17350006103515625, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.17370009422302246, + 0.17370009422302246, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17389988899230957, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17399990558624268, + 0.17399990558624268, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17409992218017578, + 0.17409992218017578, + 0.17409992218017578, + 0.17409992218017578, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.1741999387741089, + 0.1741999387741089, + 0.1741999387741089, + 0.1741999387741089, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.17430007457733154, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.17440009117126465, + 0.17440009117126465, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17479991912841797, + 0.17479991912841797, + 0.17479991912841797, + 0.17479991912841797, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17489993572235107, + 0.17489993572235107, + 0.17489993572235107, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17500007152557373, + 0.17500007152557373, + 0.17500007152557373, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17510008811950684, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.17520010471343994, + 0.17520010471343994, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.17559993267059326, + 0.17559993267059326, + 0.17559993267059326, + 0.17559993267059326, + 0.17559993267059326, + 0.1756000518798828, + 0.1756000518798828, + 0.1756000518798828, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17570006847381592, + 0.17570006847381592, + 0.17570006847381592, + 0.17570006847381592, + 0.17570006847381592, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17590010166168213, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17600011825561523, + 0.17609989643096924, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.17629992961883545, + 0.17629992961883545, + 0.17629992961883545, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.17639994621276855, + 0.17639994621276855, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.1765000820159912, + 0.1765000820159912, + 0.1765000820159912, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17679989337921143, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17689990997314453, + 0.17689990997314453, + 0.17689990997314453, + 0.17689990997314453, + 0.17689990997314453, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17699992656707764, + 0.17699992656707764, + 0.17699992656707764, + 0.17699992656707764, + 0.17699992656707764, + 0.1770000457763672, + 0.1770000457763672, + 0.1770000457763672, + 0.1770000457763672, + 0.1770000457763672, + 0.17709994316101074, + 0.17709994316101074, + 0.17709994316101074, + 0.17709994316101074, + 0.17709994316101074, + 0.17709994316101074, + 0.17709994316101074, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.1771000623703003, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.1772000789642334, + 0.1772000789642334, + 0.1772000789642334, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.1773000955581665, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.1774998903274536, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17759990692138672, + 0.17760002613067627, + 0.17760002613067627, + 0.17769992351531982, + 0.17769992351531982, + 0.17769992351531982, + 0.17769992351531982, + 0.17770004272460938, + 0.17770004272460938, + 0.17770004272460938, + 0.17770004272460938, + 0.17779994010925293, + 0.17779994010925293, + 0.17780005931854248, + 0.17780005931854248, + 0.17789995670318604, + 0.17789995670318604, + 0.17789995670318604, + 0.17790007591247559, + 0.17790007591247559, + 0.17790007591247559, + 0.1780000925064087, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.1781001091003418, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.1782999038696289, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.178399920463562, + 0.178399920463562, + 0.17840003967285156, + 0.17840003967285156, + 0.17840003967285156, + 0.17849993705749512, + 0.17849993705749512, + 0.17850005626678467, + 0.17850005626678467, + 0.17859995365142822, + 0.17859995365142822, + 0.17859995365142822, + 0.17859995365142822, + 0.17860007286071777, + 0.17860007286071777, + 0.17869997024536133, + 0.17870008945465088, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17890000343322754, + 0.17900002002716064, + 0.17900002002716064, + 0.17900002002716064, + 0.1790999174118042, + 0.17910003662109375, + 0.17910003662109375, + 0.17910003662109375, + 0.1791999340057373, + 0.17920005321502686, + 0.1792999505996704, + 0.17930006980895996, + 0.17930006980895996, + 0.17939996719360352, + 0.17939996719360352, + 0.17940008640289307, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17969989776611328, + 0.17969989776611328, + 0.17969989776611328, + 0.17970001697540283, + 0.17970001697540283, + 0.17970001697540283, + 0.1797999143600464, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.1798999309539795, + 0.1798999309539795, + 0.1798999309539795, + 0.17990005016326904, + 0.17990005016326904, + 0.1799999475479126, + 0.18000006675720215, + 0.18000006675720215, + 0.1800999641418457, + 0.1800999641418457, + 0.1800999641418457, + 0.1800999641418457, + 0.18010008335113525, + 0.1801999807357788, + 0.1801999807357788, + 0.1801999807357788, + 0.1801999807357788, + 0.18020009994506836, + 0.18029999732971191, + 0.18040001392364502, + 0.18040001392364502, + 0.18040001392364502, + 0.18040001392364502, + 0.18040001392364502, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18050003051757812, + 0.18059992790222168, + 0.18069994449615479, + 0.18070006370544434, + 0.18070006370544434, + 0.18070006370544434, + 0.1807999610900879, + 0.1807999610900879, + 0.1807999610900879, + 0.18080008029937744, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.180899977684021, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.18119990825653076, + 0.1812000274658203, + 0.1812000274658203, + 0.18129992485046387, + 0.18129992485046387, + 0.18130004405975342, + 0.18130004405975342, + 0.18139994144439697, + 0.18149995803833008, + 0.18149995803833008, + 0.18150007724761963, + 0.18159997463226318, + 0.18159997463226318, + 0.18159997463226318, + 0.1816999912261963, + 0.1818000078201294, + 0.1818000078201294, + 0.1818000078201294, + 0.1819000244140625, + 0.1819000244140625, + 0.1819000244140625, + 0.1819000244140625, + 0.1820000410079956, + 0.1820000410079956, + 0.18209993839263916, + 0.18209993839263916, + 0.18209993839263916, + 0.18209993839263916, + 0.1821000576019287, + 0.18220007419586182, + 0.18229997158050537, + 0.18229997158050537, + 0.18229997158050537, + 0.18229997158050537, + 0.18229997158050537, + 0.18239998817443848, + 0.18239998817443848, + 0.18239998817443848, + 0.18250000476837158, + 0.18250000476837158, + 0.18250000476837158, + 0.1826000213623047, + 0.1826000213623047, + 0.1827000379562378, + 0.1828000545501709, + 0.18289995193481445, + 0.18289995193481445, + 0.18299996852874756, + 0.18320000171661377, + 0.18330001831054688, + 0.18330001831054688, + 0.18340003490447998, + 0.18340003490447998, + 0.18349993228912354, + 0.18350005149841309, + 0.18369996547698975, + 0.18369996547698975, + 0.18389999866485596, + 0.18400001525878906, + 0.18400001525878906, + 0.18410003185272217, + 0.18419992923736572, + 0.18429994583129883, + 0.18449997901916504, + 0.18449997901916504, + 0.18480002880096436, + 0.18499994277954102, + 0.18519997596740723, + 0.18519997596740723, + 0.18519997596740723, + 0.18519997596740723, + 0.18529999256134033, + 0.18540000915527344, + 0.1855999231338501, + 0.18560004234313965, + 0.1856999397277832, + 0.1857999563217163, + 0.18580007553100586, + 0.18610000610351562, + 0.1865999698638916, + 0.18660008907318115, + 0.1868000030517578, + 0.18700003623962402, + 0.18709993362426758, + 0.18709993362426758, + 0.1875, + 0.1876000165939331, + 0.1877000331878662, + 0.18789994716644287, + 0.18799996376037598, + 0.1881999969482422, + 0.1883000135421753, + 0.18900001049041748, + 0.1892000436782837, + 0.18959999084472656, + 0.18959999084472656, + 0.18970000743865967, + 0.18970000743865967, + 0.18970000743865967, + 0.18989992141723633, + 0.19000005722045898, + 0.19000005722045898, + 0.19009995460510254, + 0.19009995460510254, + 0.19019997119903564, + 0.19019997119903564, + 0.19029998779296875, + 0.19040000438690186, + 0.19050002098083496, + 0.19060003757476807, + 0.19069993495941162, + 0.19079995155334473, + 0.19079995155334473, + 0.19080007076263428, + 0.19080007076263428, + 0.19099998474121094, + 0.19099998474121094, + 0.19099998474121094, + 0.19110000133514404, + 0.1912999153137207, + 0.19130003452301025, + 0.19159996509552002, + 0.19160008430480957, + 0.19200003147125244, + 0.19200003147125244, + 0.1921999454498291, + 0.1921999454498291, + 0.1923999786376953, + 0.19300007820129395, + 0.1930999755859375, + 0.1933000087738037, + 0.1933000087738037, + 0.19359993934631348, + 0.19459998607635498, + 0.19519996643066406, + 0.19640004634857178, + 0.19649994373321533, + 0.19679999351501465, + 0.19700002670288086, + 0.19720005989074707, + 0.19760000705718994, + 0.19840002059936523, + 0.1987999677658081, + 0.1988999843597412, + 0.19890010356903076, + 0.20019996166229248, + 0.2006000280380249, + 0.20090007781982422, + 0.20120000839233398, + 0.20159995555877686, + 0.20169997215270996, + 0.20179998874664307, + 0.20190000534057617, + 0.2022000551223755, + 0.20229995250701904, + 0.20239996910095215, + 0.20379996299743652, + 0.20399999618530273, + 0.20399999618530273, + 0.20410001277923584, + 0.20440006256103516, + 0.20450007915496826, + 0.20530009269714355, + 0.2053999900817871, + 0.20650005340576172, + 0.2069000005722046, + 0.2072000503540039, + 0.207300066947937, + 0.20969998836517334, + 0.20990002155303955, + 0.21000003814697266, + 0.21029996871948242, + 0.21130001544952393, + 0.21150004863739014, + 0.21150004863739014, + 0.2115999460220337, + 0.2124999761581421, + 0.2124999761581421, + 0.2125999927520752, + 0.21300005912780762, + 0.21389997005462646, + 0.21449995040893555, + 0.2153000831604004, + 0.21619999408721924, + 0.21679997444152832, + 0.2173999547958374, + 0.21760010719299316, + 0.218500018119812, + 0.21959996223449707, + 0.2202000617980957, + 0.22239995002746582, + 0.22269999980926514, + 0.22300004959106445, + 0.22420001029968262, + 0.22440004348754883, + 0.2286999225616455, + 0.22990000247955322, + 0.23849999904632568, + 0.24029994010925293, + 0.24049997329711914, + 0.2414999008178711, + 0.24220001697540283, + 0.2441999912261963, + 0.24570000171661377, + 0.24579989910125732, + 0.24920010566711426, + 0.24949991703033447, + 0.2510000467300415, + 0.25579988956451416, + 0.2559000253677368, + 0.2560000419616699, + 0.25679993629455566, + 0.2569000720977783, + 0.25769996643066406, + 0.25880002975463867, + 0.2618999481201172, + 0.2676999568939209, + 0.267799973487854, + 0.2722998857498169, + 0.27980005741119385, + 0.28289997577667236, + 0.28349995613098145, + 0.2852998971939087, + 0.287600040435791, + 0.29670000076293945, + 0.3185000419616699, + 0.32249999046325684, + 0.32360005378723145, + 0.3250999450683594, + 0.3251999616622925, + 0.3256000280380249, + 0.32679998874664307, + 0.32729995250701904, + 0.32819998264312744, + 0.3294999599456787, + 0.3296999931335449, + 0.33079993724823, + 0.3315999507904053, + 0.3315999507904053, + 0.3366999626159668, + 0.3377000093460083, + 0.3382999897003174, + 0.3432999849319458, + 0.343500018119812, + 0.34780001640319824, + 0.3511999845504761, + 0.3547999858856201, + 0.36500000953674316, + 0.3686000108718872, + 0.40089988708496094, + 0.40129995346069336, + 0.4016000032424927, + 0.4028000831604004, + 0.4062000513076782, + 0.4086000919342041, + 0.40869998931884766, + 0.41220009326934814, + 0.4194999933242798, + 0.4240000247955322, + 0.4240999221801758, + 0.4248999357223511, + 0.4506000280380249, + 0.5349999666213989, + 0.5407999753952026, + 0.5425000190734863, + 0.5463000535964966, + 0.5475000143051147, + 0.5508999824523926, + 0.5534000396728516, + 0.5571000576019287, + 0.5593999624252319, + 0.5595000982284546, + 0.5597000122070312, + 0.560900092124939, + 0.5667001008987427, + 0.5669000148773193, + 0.5722999572753906, + 0.5808000564575195, + 0.585900068283081, + 0.5886999368667603, + 0.5968999862670898, + 0.5974999666213989, + 0.5981999635696411, + 0.6110999584197998, + 0.651400089263916, + 0.6521999835968018, + 0.6603000164031982, + 0.6769000291824341, + 1.949600100517273, + 2.2654000520706177, + 2.5786999464035034 + ], + "middleValue": 0.17669999599456787, + "timestamp": "2023-10-28T20:49:13.587Z" + }, + { + "algorithm": "TimeDistribution updated paths into group", + "version": "v2", + "numIterations": 1000, + "executionTimes": [ + 0.167199969291687, + 0.167199969291687, + 0.16740000247955322, + 0.16750001907348633, + 0.16750001907348633, + 0.16780006885528564, + 0.1678999662399292, + 0.1679999828338623, + 0.1680999994277954, + 0.1680999994277954, + 0.16840004920959473, + 0.16849994659423828, + 0.1685999631881714, + 0.1689000129699707, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.16919994354248047, + 0.16919994354248047, + 0.16919994354248047, + 0.16920006275177002, + 0.16920006275177002, + 0.16920006275177002, + 0.16929996013641357, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16940009593963623, + 0.16940009593963623, + 0.16949999332427979, + 0.16949999332427979, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.16979992389678955, + 0.16979992389678955, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.16989994049072266, + 0.16989994049072266, + 0.16989994049072266, + 0.16999995708465576, + 0.16999995708465576, + 0.1700000762939453, + 0.1700000762939453, + 0.1700000762939453, + 0.1700000762939453, + 0.1700000762939453, + 0.1700000762939453, + 0.1700000762939453, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17010009288787842, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17039990425109863, + 0.17039990425109863, + 0.17039990425109863, + 0.17039990425109863, + 0.17039990425109863, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17049992084503174, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.17059993743896484, + 0.17059993743896484, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.1707000732421875, + 0.1707000732421875, + 0.1707000732421875, + 0.1707000732421875, + 0.1707000732421875, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.1708000898361206, + 0.1708000898361206, + 0.1708000898361206, + 0.1708000898361206, + 0.1708000898361206, + 0.1708000898361206, + 0.1708000898361206, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17109990119934082, + 0.17109990119934082, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17119991779327393, + 0.17119991779327393, + 0.17119991779327393, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.1715000867843628, + 0.1715000867843628, + 0.1715000867843628, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.171799898147583, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17199993133544922, + 0.17199993133544922, + 0.17199993133544922, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17210006713867188, + 0.17210006713867188, + 0.17210006713867188, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17220008373260498, + 0.17220008373260498, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17230010032653809, + 0.17230010032653809, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.1724998950958252, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.1725999116897583, + 0.1725999116897583, + 0.1725999116897583, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.17280006408691406, + 0.17280006408691406, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17290008068084717, + 0.17290008068084717, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.1733999252319336, + 0.1733999252319336, + 0.1733999252319336, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.1734999418258667, + 0.1734999418258667, + 0.1734999418258667, + 0.17350006103515625, + 0.17350006103515625, + 0.17360007762908936, + 0.17360007762908936, + 0.1736999750137329, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17389988899230957, + 0.17390000820159912, + 0.17390000820159912, + 0.17400002479553223, + 0.17409992218017578, + 0.17410004138946533, + 0.17410004138946533, + 0.1741999387741089, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.17430007457733154, + 0.17430007457733154, + 0.17430007457733154, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.17469990253448486, + 0.17469990253448486, + 0.17469990253448486, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17479991912841797, + 0.17479991912841797, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17489993572235107, + 0.17489993572235107, + 0.17489993572235107, + 0.17490005493164062, + 0.17500007152557373, + 0.17500007152557373, + 0.17500007152557373, + 0.17509996891021729, + 0.17509996891021729, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.17539989948272705, + 0.17539989948272705, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.17549991607666016, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.17559993267059326, + 0.17559993267059326, + 0.1756000518798828, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17570006847381592, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17580008506774902, + 0.17580008506774902, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17590010166168213, + 0.17590010166168213, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.17599999904632568, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.17619991302490234, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.17629992961883545, + 0.17629992961883545, + 0.17629992961883545, + 0.176300048828125, + 0.176300048828125, + 0.17639994621276855, + 0.17639994621276855, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.1764000654220581, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.1765000820159912, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17659997940063477, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17689990997314453, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.17690002918243408, + 0.1770000457763672, + 0.1770000457763672, + 0.1770000457763672, + 0.1770000457763672, + 0.17709994316101074, + 0.17709994316101074, + 0.1771000623703003, + 0.1771000623703003, + 0.17719995975494385, + 0.17719995975494385, + 0.17719995975494385, + 0.1772000789642334, + 0.1772000789642334, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.17729997634887695, + 0.1773000955581665, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17759990692138672, + 0.17759990692138672, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17769992351531982, + 0.17769992351531982, + 0.17769992351531982, + 0.17770004272460938, + 0.17770004272460938, + 0.17770004272460938, + 0.17770004272460938, + 0.17770004272460938, + 0.17779994010925293, + 0.17779994010925293, + 0.17779994010925293, + 0.17779994010925293, + 0.17779994010925293, + 0.17780005931854248, + 0.17789995670318604, + 0.17799997329711914, + 0.17799997329711914, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.1781001091003418, + 0.1781001091003418, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.1782999038696289, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.178399920463562, + 0.178399920463562, + 0.17840003967285156, + 0.17840003967285156, + 0.17840003967285156, + 0.17840003967285156, + 0.17840003967285156, + 0.17840003967285156, + 0.17840003967285156, + 0.17850005626678467, + 0.17850005626678467, + 0.17859995365142822, + 0.17860007286071777, + 0.17860007286071777, + 0.17869997024536133, + 0.17870008945465088, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17879998683929443, + 0.17880010604858398, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17900002002716064, + 0.17900002002716064, + 0.1790999174118042, + 0.17910003662109375, + 0.17910003662109375, + 0.17910003662109375, + 0.1791999340057373, + 0.1792999505996704, + 0.1792999505996704, + 0.1792999505996704, + 0.17930006980895996, + 0.17949998378753662, + 0.17949998378753662, + 0.17960000038146973, + 0.17960000038146973, + 0.17960000038146973, + 0.17970001697540283, + 0.17970001697540283, + 0.17970001697540283, + 0.17970001697540283, + 0.17970001697540283, + 0.1797999143600464, + 0.17980003356933594, + 0.18000006675720215, + 0.1800999641418457, + 0.1801999807357788, + 0.1801999807357788, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18040001392364502, + 0.18040001392364502, + 0.18040001392364502, + 0.18049991130828857, + 0.18060004711151123, + 0.18060004711151123, + 0.18069994449615479, + 0.18070006370544434, + 0.18070006370544434, + 0.18070006370544434, + 0.1807999610900879, + 0.18090009689331055, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1811000108718872, + 0.1812000274658203, + 0.1812000274658203, + 0.18139994144439697, + 0.18140006065368652, + 0.18140006065368652, + 0.18140006065368652, + 0.18149995803833008, + 0.18149995803833008, + 0.18150007724761963, + 0.18159997463226318, + 0.18159997463226318, + 0.18159997463226318, + 0.1816999912261963, + 0.1816999912261963, + 0.1816999912261963, + 0.1818000078201294, + 0.1819000244140625, + 0.1819000244140625, + 0.1819000244140625, + 0.1820000410079956, + 0.1820000410079956, + 0.18209993839263916, + 0.18209993839263916, + 0.1821000576019287, + 0.18219995498657227, + 0.18219995498657227, + 0.18229997158050537, + 0.18229997158050537, + 0.18230009078979492, + 0.18239998817443848, + 0.18259990215301514, + 0.1826000213623047, + 0.1827000379562378, + 0.18279993534088135, + 0.1828000545501709, + 0.18289995193481445, + 0.182900071144104, + 0.182900071144104, + 0.182900071144104, + 0.18299996852874756, + 0.1830000877380371, + 0.18309998512268066, + 0.18320000171661377, + 0.18320000171661377, + 0.18320000171661377, + 0.18330001831054688, + 0.18339991569519043, + 0.1836000680923462, + 0.1836000680923462, + 0.18369996547698975, + 0.18369996547698975, + 0.18379998207092285, + 0.18379998207092285, + 0.1839998960494995, + 0.18400001525878906, + 0.18409991264343262, + 0.18410003185272217, + 0.18410003185272217, + 0.18419992923736572, + 0.18420004844665527, + 0.18420004844665527, + 0.18440008163452148, + 0.18449997901916504, + 0.18459999561309814, + 0.1848999261856079, + 0.18490004539489746, + 0.18500006198883057, + 0.18500006198883057, + 0.18520009517669678, + 0.18540000915527344, + 0.1855999231338501, + 0.1856999397277832, + 0.1856999397277832, + 0.18570005893707275, + 0.18599998950958252, + 0.18599998950958252, + 0.18599998950958252, + 0.18610000610351562, + 0.18610000610351562, + 0.18629992008209229, + 0.18630003929138184, + 0.1864999532699585, + 0.1865999698638916, + 0.1865999698638916, + 0.1868000030517578, + 0.18689990043640137, + 0.18700003623962402, + 0.18700003623962402, + 0.18719995021820068, + 0.1875, + 0.18779993057250977, + 0.18790006637573242, + 0.18799996376037598, + 0.1881999969482422, + 0.1883000135421753, + 0.1885000467300415, + 0.18909990787506104, + 0.18910002708435059, + 0.1892000436782837, + 0.18980002403259277, + 0.18980002403259277, + 0.18980002403259277, + 0.18999993801116943, + 0.19009995460510254, + 0.19019997119903564, + 0.19079995155334473, + 0.19079995155334473, + 0.19089996814727783, + 0.19099998474121094, + 0.19099998474121094, + 0.19099998474121094, + 0.19099998474121094, + 0.1910001039505005, + 0.19149994850158691, + 0.19169998168945312, + 0.19170010089874268, + 0.19179999828338623, + 0.19179999828338623, + 0.19179999828338623, + 0.19189989566802979, + 0.19190001487731934, + 0.19200003147125244, + 0.1921999454498291, + 0.19220006465911865, + 0.19220006465911865, + 0.1922999620437622, + 0.1923999786376953, + 0.19260001182556152, + 0.19269990921020508, + 0.19280004501342773, + 0.1930999755859375, + 0.1933000087738037, + 0.19360005855560303, + 0.19419991970062256, + 0.19459998607635498, + 0.19470000267028809, + 0.19499993324279785, + 0.1951000690460205, + 0.19519996643066406, + 0.19529998302459717, + 0.19569993019104004, + 0.19579994678497314, + 0.19700002670288086, + 0.19840002059936523, + 0.19900000095367432, + 0.19910001754760742, + 0.1993999481201172, + 0.1994999647140503, + 0.19999992847442627, + 0.20000004768371582, + 0.20009994506835938, + 0.20059990882873535, + 0.20069992542266846, + 0.2008000612258911, + 0.20089995861053467, + 0.20100009441375732, + 0.20120000839233398, + 0.2013000249862671, + 0.20159995555877686, + 0.2017000913619995, + 0.20190000534057617, + 0.20200002193450928, + 0.20239996910095215, + 0.2024000883102417, + 0.20270001888275146, + 0.20290005207061768, + 0.20299994945526123, + 0.20299994945526123, + 0.20309996604919434, + 0.20340001583099365, + 0.20350003242492676, + 0.20350003242492676, + 0.20399999618530273, + 0.20410001277923584, + 0.20550000667572021, + 0.20550000667572021, + 0.2062000036239624, + 0.2063000202178955, + 0.20639991760253906, + 0.20650005340576172, + 0.20659995079040527, + 0.20740008354187012, + 0.20829999446868896, + 0.20889997482299805, + 0.20889997482299805, + 0.20889997482299805, + 0.20920002460479736, + 0.20990002155303955, + 0.2107999324798584, + 0.21090006828308105, + 0.2109999656677246, + 0.21109998226165771, + 0.21110010147094727, + 0.21219992637634277, + 0.21230006217956543, + 0.21300005912780762, + 0.21309995651245117, + 0.21319997310638428, + 0.2145000696182251, + 0.21510004997253418, + 0.21519994735717773, + 0.21549999713897705, + 0.21790003776550293, + 0.21870005130767822, + 0.21889996528625488, + 0.22049999237060547, + 0.22060000896453857, + 0.22200000286102295, + 0.22420001029968262, + 0.2246999740600586, + 0.22470009326934814, + 0.22520005702972412, + 0.22649991512298584, + 0.22699999809265137, + 0.22759997844696045, + 0.22850000858306885, + 0.2294999361038208, + 0.230199933052063, + 0.2304999828338623, + 0.23110008239746094, + 0.2330000400543213, + 0.23350000381469727, + 0.23530006408691406, + 0.23720002174377441, + 0.23849999904632568, + 0.23909997940063477, + 0.24170005321502686, + 0.2417999505996704, + 0.2424999475479126, + 0.2424999475479126, + 0.24389994144439697, + 0.2451000213623047, + 0.2451000213623047, + 0.24539995193481445, + 0.24580001831054688, + 0.24730002880096436, + 0.24800002574920654, + 0.24810004234313965, + 0.2565000057220459, + 0.2570000886917114, + 0.2574000358581543, + 0.25950002670288086, + 0.2604999542236328, + 0.2607001066207886, + 0.2607998847961426, + 0.2638000249862671, + 0.2671999931335449, + 0.26830005645751953, + 0.2717999219894409, + 0.27270007133483887, + 0.2728999853134155, + 0.27320003509521484, + 0.2767000198364258, + 0.27810001373291016, + 0.2809000015258789, + 0.2822999954223633, + 0.28369998931884766, + 0.28540003299713135, + 0.2872999906539917, + 0.288100004196167, + 0.2882000207901001, + 0.3140000104904175, + 0.31409990787506104, + 0.32109999656677246, + 0.32149994373321533, + 0.32169997692108154, + 0.3238999843597412, + 0.3253999948501587, + 0.3361999988555908, + 0.33680009841918945, + 0.3382999897003174, + 0.33929991722106934, + 0.34640002250671387, + 0.3465999364852905, + 0.34669995307922363, + 0.34710001945495605, + 0.35159993171691895, + 0.3623999357223511, + 0.36640000343322754, + 0.36660003662109375, + 0.3675999641418457, + 0.3676999807357788, + 0.3682999610900879, + 0.3813999891281128, + 0.39180004596710205, + 0.39210009574890137, + 0.39309990406036377, + 0.39830005168914795, + 0.40359997749328613, + 0.4046999216079712, + 0.4157000780105591, + 0.41640007495880127, + 0.42340004444122314, + 0.4293999671936035, + 0.4300999641418457, + 0.4398000240325928, + 0.4529000520706177, + 0.46230006217956543, + 0.4628000259399414, + 0.4650000333786011, + 0.4733999967575073, + 0.4750000238418579, + 0.49160003662109375, + 0.4995999336242676, + 0.5320999622344971, + 0.5462000370025635, + 0.5463999509811401, + 0.550800085067749, + 0.5530999898910522, + 0.5564999580383301, + 0.5672999620437622, + 0.5697000026702881, + 0.5808000564575195, + 0.5829999446868896, + 0.5886000394821167, + 0.5913000106811523, + 0.5917000770568848, + 0.5934998989105225, + 0.6011999845504761, + 0.6016000509262085, + 0.6022000312805176, + 0.6062999963760376, + 0.6226999759674072, + 0.6244000196456909, + 0.631600022315979, + 0.6434000730514526, + 0.6758999824523926, + 0.6789999008178711, + 0.7079999446868896, + 0.73580002784729, + 0.7447000741958618, + 0.8954000473022461, + 0.9190999269485474, + 1.0572999715805054, + 2.361999988555908, + 2.4609999656677246, + 2.8388999700546265 + ], + "middleValue": 0.17669999599456787, + "timestamp": "2023-10-28T20:55:59.878Z" + }, + { + "algorithm": "TimeDistribution impproved distribution proccess", + "version": "v3", + "numIterations": 1000, + "executionTimes": [ + 0.1669999361038208, + 0.1669999361038208, + 0.167199969291687, + 0.16729998588562012, + 0.16770005226135254, + 0.1677999496459961, + 0.1679999828338623, + 0.16839993000030518, + 0.16840004920959473, + 0.16849994659423828, + 0.16850006580352783, + 0.16850006580352783, + 0.1685999631881714, + 0.1686999797821045, + 0.1686999797821045, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.1689000129699707, + 0.1689000129699707, + 0.1689000129699707, + 0.16899991035461426, + 0.16899991035461426, + 0.16899991035461426, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.16909992694854736, + 0.16919994354248047, + 0.16919994354248047, + 0.16919994354248047, + 0.16929996013641357, + 0.16930007934570312, + 0.16930007934570312, + 0.16939997673034668, + 0.16939997673034668, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16950011253356934, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.16969990730285645, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.16989994049072266, + 0.16989994049072266, + 0.16989994049072266, + 0.16989994049072266, + 0.16989994049072266, + 0.16989994049072266, + 0.16989994049072266, + 0.1699000597000122, + 0.1699000597000122, + 0.16999995708465576, + 0.16999995708465576, + 0.16999995708465576, + 0.16999995708465576, + 0.1700000762939453, + 0.1700000762939453, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17019999027252197, + 0.17019999027252197, + 0.17029988765716553, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17049992084503174, + 0.17049992084503174, + 0.17049992084503174, + 0.17049992084503174, + 0.17049992084503174, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.1706000566482544, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.1707000732421875, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.1708000898361206, + 0.1708000898361206, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.1709001064300537, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17109990119934082, + 0.17109990119934082, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17119991779327393, + 0.17119991779327393, + 0.17119991779327393, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.17149996757507324, + 0.1715000867843628, + 0.1715000867843628, + 0.1715000867843628, + 0.1715000867843628, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.1716001033782959, + 0.1716001033782959, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17199993133544922, + 0.17199993133544922, + 0.17199993133544922, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17210006713867188, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17220008373260498, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17230010032653809, + 0.17230010032653809, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.1725999116897583, + 0.1725999116897583, + 0.1725999116897583, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.1726999282836914, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.17270004749298096, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.17280006408691406, + 0.17280006408691406, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17290008068084717, + 0.17290008068084717, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17299997806549072, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.1732999086380005, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.1733999252319336, + 0.1733999252319336, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.1734999418258667, + 0.1734999418258667, + 0.1734999418258667, + 0.1734999418258667, + 0.1734999418258667, + 0.1734999418258667, + 0.17350006103515625, + 0.17350006103515625, + 0.17350006103515625, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.17360007762908936, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.1736999750137329, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17399990558624268, + 0.17399990558624268, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17400002479553223, + 0.17409992218017578, + 0.17409992218017578, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.17410004138946533, + 0.1741999387741089, + 0.1741999387741089, + 0.1741999387741089, + 0.1741999387741089, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.17430007457733154, + 0.1743999719619751, + 0.1743999719619751, + 0.1743999719619751, + 0.17440009117126465, + 0.17440009117126465, + 0.17440009117126465, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.17459988594055176, + 0.1746000051498413, + 0.1746000051498413, + 0.1746000051498413, + 0.17469990253448486, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17470002174377441, + 0.17479991912841797, + 0.17479991912841797, + 0.17479991912841797, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17489993572235107, + 0.17489993572235107, + 0.17489993572235107, + 0.17489993572235107, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17490005493164062, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17499995231628418, + 0.17500007152557373, + 0.17500007152557373, + 0.17500007152557373, + 0.17500007152557373, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17510008811950684, + 0.17510008811950684, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.17539989948272705, + 0.17539989948272705, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.1754000186920166, + 0.17549991607666016, + 0.17549991607666016, + 0.17549991607666016, + 0.1755000352859497, + 0.1755000352859497, + 0.1755000352859497, + 0.17559993267059326, + 0.17559993267059326, + 0.1756000518798828, + 0.17569994926452637, + 0.17569994926452637, + 0.17569994926452637, + 0.17570006847381592, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17579996585845947, + 0.17580008506774902, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17590010166168213, + 0.17599999904632568, + 0.17599999904632568, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.17619991302490234, + 0.17619991302490234, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.17629992961883545, + 0.17629992961883545, + 0.17629992961883545, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.176300048828125, + 0.17639994621276855, + 0.17639994621276855, + 0.17639994621276855, + 0.17649996280670166, + 0.17649996280670166, + 0.17649996280670166, + 0.1765000820159912, + 0.17659997940063477, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17669999599456787, + 0.17679989337921143, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17689990997314453, + 0.17690002918243408, + 0.17699992656707764, + 0.17699992656707764, + 0.17709994316101074, + 0.17709994316101074, + 0.1771000623703003, + 0.1771000623703003, + 0.17719995975494385, + 0.17719995975494385, + 0.1772000789642334, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.1774001121520996, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17759990692138672, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17760002613067627, + 0.17770004272460938, + 0.17779994010925293, + 0.17779994010925293, + 0.17780005931854248, + 0.17780005931854248, + 0.17780005931854248, + 0.17789995670318604, + 0.17789995670318604, + 0.17789995670318604, + 0.17789995670318604, + 0.17790007591247559, + 0.17799997329711914, + 0.17809998989105225, + 0.17820000648498535, + 0.17820000648498535, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.178399920463562, + 0.17840003967285156, + 0.17849993705749512, + 0.17849993705749512, + 0.17849993705749512, + 0.17850005626678467, + 0.17860007286071777, + 0.17860007286071777, + 0.17869997024536133, + 0.17879998683929443, + 0.17879998683929443, + 0.17890000343322754, + 0.17900002002716064, + 0.1790999174118042, + 0.1792999505996704, + 0.17930006980895996, + 0.17939996719360352, + 0.17940008640289307, + 0.17940008640289307, + 0.17949998378753662, + 0.17960000038146973, + 0.17960000038146973, + 0.17969989776611328, + 0.17970001697540283, + 0.17970001697540283, + 0.17970001697540283, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.1798999309539795, + 0.1798999309539795, + 0.17990005016326904, + 0.17990005016326904, + 0.17990005016326904, + 0.1799999475479126, + 0.1799999475479126, + 0.1800999641418457, + 0.1800999641418457, + 0.1801999807357788, + 0.18039989471435547, + 0.18039989471435547, + 0.18040001392364502, + 0.18040001392364502, + 0.18050003051757812, + 0.18060004711151123, + 0.18069994449615479, + 0.1807999610900879, + 0.180899977684021, + 0.180899977684021, + 0.1809999942779541, + 0.1809999942779541, + 0.18109989166259766, + 0.18109989166259766, + 0.1811000108718872, + 0.1811000108718872, + 0.1812000274658203, + 0.1812000274658203, + 0.1812000274658203, + 0.1812000274658203, + 0.18129992485046387, + 0.18130004405975342, + 0.18140006065368652, + 0.18140006065368652, + 0.18149995803833008, + 0.18150007724761963, + 0.18160009384155273, + 0.1816999912261963, + 0.1816999912261963, + 0.1816999912261963, + 0.1816999912261963, + 0.1818000078201294, + 0.1818000078201294, + 0.1818000078201294, + 0.18189990520477295, + 0.18189990520477295, + 0.18199992179870605, + 0.18209993839263916, + 0.18209993839263916, + 0.1821000576019287, + 0.18219995498657227, + 0.18220007419586182, + 0.18230009078979492, + 0.18250000476837158, + 0.18250000476837158, + 0.1828000545501709, + 0.18289995193481445, + 0.182900071144104, + 0.18299996852874756, + 0.1830000877380371, + 0.18309998512268066, + 0.18330001831054688, + 0.18339991569519043, + 0.18340003490447998, + 0.18349993228912354, + 0.18379998207092285, + 0.18400001525878906, + 0.18429994583129883, + 0.18430006504058838, + 0.18439996242523193, + 0.18449997901916504, + 0.18449997901916504, + 0.18449997901916504, + 0.18459999561309814, + 0.1846998929977417, + 0.18470001220703125, + 0.18480002880096436, + 0.18490004539489746, + 0.18519997596740723, + 0.18540000915527344, + 0.185499906539917, + 0.18590009212493896, + 0.18620002269744873, + 0.18650007247924805, + 0.1865999698638916, + 0.1868000030517578, + 0.1868000030517578, + 0.18710005283355713, + 0.18710005283355713, + 0.18710005283355713, + 0.1877000331878662, + 0.18780004978179932, + 0.1883000135421753, + 0.1883000135421753, + 0.18839991092681885, + 0.1885000467300415, + 0.1886000633239746, + 0.18869996070861816, + 0.18870007991790771, + 0.18880009651184082, + 0.18900001049041748, + 0.18910002708435059, + 0.18910002708435059, + 0.1892000436782837, + 0.18989992141723633, + 0.1901000738143921, + 0.19029998779296875, + 0.19050002098083496, + 0.19050002098083496, + 0.19099998474121094, + 0.19130003452301025, + 0.1913999319076538, + 0.19169998168945312, + 0.19200003147125244, + 0.19210004806518555, + 0.1923999786376953, + 0.1923999786376953, + 0.19249999523162842, + 0.19260001182556152, + 0.19260001182556152, + 0.1928999423980713, + 0.19290006160736084, + 0.1929999589920044, + 0.19300007820129395, + 0.19300007820129395, + 0.1931999921798706, + 0.19349992275238037, + 0.19369995594024658, + 0.1940000057220459, + 0.194100022315979, + 0.1942000389099121, + 0.19440007209777832, + 0.19449996948242188, + 0.19449996948242188, + 0.19470000267028809, + 0.19529998302459717, + 0.19560003280639648, + 0.19569993019104004, + 0.19589996337890625, + 0.19650006294250488, + 0.19719994068145752, + 0.19740009307861328, + 0.19749999046325684, + 0.19760000705718994, + 0.19780004024505615, + 0.19809997081756592, + 0.19830000400543213, + 0.19840002059936523, + 0.19850003719329834, + 0.19860005378723145, + 0.19929993152618408, + 0.19940006732940674, + 0.20029997825622559, + 0.2003999948501587, + 0.2005000114440918, + 0.20079994201660156, + 0.20079994201660156, + 0.20079994201660156, + 0.2016000747680664, + 0.20190000534057617, + 0.20200002193450928, + 0.20229995250701904, + 0.20280003547668457, + 0.20300006866455078, + 0.20380008220672607, + 0.20410001277923584, + 0.20480000972747803, + 0.2051999568939209, + 0.20590007305145264, + 0.2062000036239624, + 0.2062000036239624, + 0.20659995079040527, + 0.2072000503540039, + 0.20739996433258057, + 0.20749998092651367, + 0.20749998092651367, + 0.2087000608444214, + 0.20929992198944092, + 0.20939993858337402, + 0.21039998531341553, + 0.21039998531341553, + 0.21150004863739014, + 0.21220004558563232, + 0.2125999927520752, + 0.2125999927520752, + 0.2127000093460083, + 0.2129000425338745, + 0.21299993991851807, + 0.21309995651245117, + 0.21389997005462646, + 0.21399998664855957, + 0.21399998664855957, + 0.21420001983642578, + 0.21459996700286865, + 0.21480000019073486, + 0.21539998054504395, + 0.21570003032684326, + 0.21590006351470947, + 0.21619999408721924, + 0.21689999103546143, + 0.21709990501403809, + 0.2173999547958374, + 0.21770000457763672, + 0.21770000457763672, + 0.21969997882843018, + 0.2201000452041626, + 0.22109997272491455, + 0.22240006923675537, + 0.22329998016357422, + 0.22509992122650146, + 0.22689998149871826, + 0.22720003128051758, + 0.22800004482269287, + 0.22850000858306885, + 0.22860002517700195, + 0.22919988632202148, + 0.2302999496459961, + 0.23139989376068115, + 0.2314000129699707, + 0.232200026512146, + 0.23269999027252197, + 0.23290002346038818, + 0.2340000867843628, + 0.2341001033782959, + 0.2368999719619751, + 0.23739993572235107, + 0.23749995231628418, + 0.23759996891021729, + 0.23760008811950684, + 0.2376999855041504, + 0.2376999855041504, + 0.2378000020980835, + 0.2378000020980835, + 0.2380000352859497, + 0.23809993267059326, + 0.2381000518798828, + 0.2381000518798828, + 0.23820006847381592, + 0.2386000156402588, + 0.2386000156402588, + 0.2386000156402588, + 0.2387000322341919, + 0.23879992961883545, + 0.23879992961883545, + 0.238800048828125, + 0.23899996280670166, + 0.2390000820159912, + 0.23919999599456787, + 0.23930001258850098, + 0.23939990997314453, + 0.23940002918243408, + 0.23949992656707764, + 0.23949992656707764, + 0.23949992656707764, + 0.23959994316101074, + 0.2396000623703003, + 0.2396000623703003, + 0.23979997634887695, + 0.23989999294281006, + 0.24000000953674316, + 0.24010002613067627, + 0.24020004272460938, + 0.24110007286071777, + 0.24140000343322754, + 0.2416999340057373, + 0.24220001697540283, + 0.2425999641418457, + 0.2426999807357788, + 0.24289989471435547, + 0.24380004405975342, + 0.24400007724761963, + 0.24500000476837158, + 0.24590003490447998, + 0.24969995021820068, + 0.2523000240325928, + 0.25450003147125244, + 0.2560999393463135, + 0.2574000358581543, + 0.259100079536438, + 0.2609999179840088, + 0.2612999677658081, + 0.2617000341415405, + 0.2625000476837158, + 0.26329994201660156, + 0.2635999917984009, + 0.26590001583099365, + 0.26600003242492676, + 0.2661999464035034, + 0.26639997959136963, + 0.26979994773864746, + 0.26989996433258057, + 0.2700001001358032, + 0.27180004119873047, + 0.27230000495910645, + 0.2727999687194824, + 0.2736999988555908, + 0.2756999731063843, + 0.27719998359680176, + 0.27789998054504395, + 0.28390002250671387, + 0.28610002994537354, + 0.2867000102996826, + 0.2889000177383423, + 0.2898000478744507, + 0.2914999723434448, + 0.2954000234603882, + 0.29860007762908936, + 0.2996000051498413, + 0.3026999235153198, + 0.305400013923645, + 0.305899977684021, + 0.30879998207092285, + 0.3101999759674072, + 0.3190000057220459, + 0.31929993629455566, + 0.31989991664886475, + 0.3205000162124634, + 0.32079994678497314, + 0.32200002670288086, + 0.3223000764846802, + 0.32290005683898926, + 0.3229999542236328, + 0.32440006732940674, + 0.3246999979019165, + 0.3248000144958496, + 0.3250999450683594, + 0.3271000385284424, + 0.32760000228881836, + 0.3288000822067261, + 0.33079993724823, + 0.33650004863739014, + 0.3379000425338745, + 0.3379000425338745, + 0.33929991722106934, + 0.3413999080657959, + 0.34589993953704834, + 0.34700000286102295, + 0.3476001024246216, + 0.3488999605178833, + 0.3542999029159546, + 0.35819995403289795, + 0.3614000082015991, + 0.36580002307891846, + 0.409000039100647, + 0.4117000102996826, + 0.4134000539779663, + 0.42129993438720703, + 0.42309999465942383, + 0.4385000467300415, + 0.44110000133514404, + 0.4603999853134155, + 0.4765000343322754, + 0.47870004177093506, + 0.4841001033782959, + 0.5339999198913574, + 0.5386999845504761, + 0.5532000064849854, + 0.5600000619888306, + 0.5656999349594116, + 0.573699951171875, + 0.5771000385284424, + 0.577799916267395, + 0.5799000263214111, + 0.5809999704360962, + 0.5827000141143799, + 0.5837999582290649, + 0.5936000347137451, + 0.604699969291687, + 0.6162999868392944, + 0.6453999280929565, + 0.6548999547958374, + 0.6553999185562134, + 0.6685999631881714, + 0.6900999546051025, + 0.6962000131607056, + 0.729699969291687, + 0.7916001081466675, + 0.7944999933242798, + 0.8633999824523926, + 0.8834999799728394, + 2.0017000436782837, + 2.560499906539917, + 2.8264000415802 + ], + "middleValue": 0.17589998245239258, + "timestamp": "2023-10-28T23:31:42.137Z" + }, + { + "algorithm": "TimeDistribution impproved distribution proccess", + "version": "v3", + "numIterations": 1000, + "executionTimes": [ + 0.16639995574951172, + 0.16650009155273438, + 0.1670999526977539, + 0.16729998588562012, + 0.16729998588562012, + 0.16740000247955322, + 0.16749989986419678, + 0.16750001907348633, + 0.16759991645812988, + 0.16759991645812988, + 0.1677999496459961, + 0.1677999496459961, + 0.1677999496459961, + 0.16780006885528564, + 0.16780006885528564, + 0.1678999662399292, + 0.1678999662399292, + 0.16790008544921875, + 0.1679999828338623, + 0.1679999828338623, + 0.1679999828338623, + 0.1679999828338623, + 0.1680999994277954, + 0.1680999994277954, + 0.1680999994277954, + 0.1680999994277954, + 0.1680999994277954, + 0.16819989681243896, + 0.16820001602172852, + 0.16820001602172852, + 0.16829991340637207, + 0.16830003261566162, + 0.16830003261566162, + 0.16830003261566162, + 0.16830003261566162, + 0.16840004920959473, + 0.16840004920959473, + 0.16840004920959473, + 0.16840004920959473, + 0.16840004920959473, + 0.16849994659423828, + 0.16849994659423828, + 0.16850006580352783, + 0.16850006580352783, + 0.1685999631881714, + 0.1685999631881714, + 0.16860008239746094, + 0.16860008239746094, + 0.1686999797821045, + 0.1686999797821045, + 0.1686999797821045, + 0.16870009899139404, + 0.16870009899139404, + 0.16870009899139404, + 0.16870009899139404, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.1687999963760376, + 0.16889989376068115, + 0.16889989376068115, + 0.1689000129699707, + 0.1689000129699707, + 0.1689000129699707, + 0.16899991035461426, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.16909992694854736, + 0.16909992694854736, + 0.16910004615783691, + 0.16910004615783691, + 0.16910004615783691, + 0.16910004615783691, + 0.16910004615783691, + 0.16919994354248047, + 0.16919994354248047, + 0.16919994354248047, + 0.16919994354248047, + 0.16920006275177002, + 0.16920006275177002, + 0.16920006275177002, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16929996013641357, + 0.16930007934570312, + 0.16930007934570312, + 0.16930007934570312, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16939997673034668, + 0.16940009593963623, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.16949999332427979, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.1696000099182129, + 0.16969990730285645, + 0.16969990730285645, + 0.16969990730285645, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.169700026512146, + 0.16979992389678955, + 0.16979992389678955, + 0.16979992389678955, + 0.16979992389678955, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.1698000431060791, + 0.16989994049072266, + 0.1699000597000122, + 0.1699000597000122, + 0.1699000597000122, + 0.1699000597000122, + 0.1699000597000122, + 0.1699000597000122, + 0.1699000597000122, + 0.1699000597000122, + 0.16999995708465576, + 0.16999995708465576, + 0.16999995708465576, + 0.16999995708465576, + 0.16999995708465576, + 0.16999995708465576, + 0.1700000762939453, + 0.1700000762939453, + 0.1700000762939453, + 0.1700000762939453, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17009997367858887, + 0.17010009288787842, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17019999027252197, + 0.17029988765716553, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17039990425109863, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17049992084503174, + 0.17049992084503174, + 0.17049992084503174, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.1705000400543213, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.17059993743896484, + 0.1706000566482544, + 0.1706000566482544, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17069995403289795, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.17079997062683105, + 0.1708000898361206, + 0.1708000898361206, + 0.1708000898361206, + 0.1708000898361206, + 0.1708000898361206, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.1709001064300537, + 0.1709001064300537, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17109990119934082, + 0.17109990119934082, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17110002040863037, + 0.17119991779327393, + 0.17119991779327393, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17120003700256348, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17129993438720703, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17130005359649658, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.17139995098114014, + 0.1714000701904297, + 0.1714000701904297, + 0.1714000701904297, + 0.17149996757507324, + 0.17149996757507324, + 0.1715000867843628, + 0.1715000867843628, + 0.1715000867843628, + 0.1715000867843628, + 0.1715000867843628, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.17159998416900635, + 0.1716001033782959, + 0.1716001033782959, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.17180001735687256, + 0.1718999147415161, + 0.1718999147415161, + 0.1718999147415161, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17190003395080566, + 0.17199993133544922, + 0.17199993133544922, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17200005054473877, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17209994792938232, + 0.17210006713867188, + 0.17210006713867188, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17219996452331543, + 0.17220008373260498, + 0.17220008373260498, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17229998111724854, + 0.17230010032653809, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.17239999771118164, + 0.1724998950958252, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.17250001430511475, + 0.1725999116897583, + 0.1725999116897583, + 0.1725999116897583, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.17260003089904785, + 0.1726999282836914, + 0.1726999282836914, + 0.1726999282836914, + 0.17270004749298096, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.1727999448776245, + 0.17280006408691406, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17289996147155762, + 0.17290008068084717, + 0.17290008068084717, + 0.17299997806549072, + 0.17299997806549072, + 0.17300009727478027, + 0.17300009727478027, + 0.17300009727478027, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17309999465942383, + 0.17310011386871338, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.17320001125335693, + 0.1732999086380005, + 0.1732999086380005, + 0.1732999086380005, + 0.1732999086380005, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.17330002784729004, + 0.1733999252319336, + 0.1733999252319336, + 0.17340004444122314, + 0.17340004444122314, + 0.17340004444122314, + 0.1734999418258667, + 0.17350006103515625, + 0.17350006103515625, + 0.17350006103515625, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1735999584197998, + 0.1736999750137329, + 0.1736999750137329, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17379999160766602, + 0.17389988899230957, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17390000820159912, + 0.17399990558624268, + 0.17400002479553223, + 0.17410004138946533, + 0.1741999387741089, + 0.1741999387741089, + 0.1741999387741089, + 0.17420005798339844, + 0.17420005798339844, + 0.17420005798339844, + 0.174299955368042, + 0.174299955368042, + 0.174299955368042, + 0.17430007457733154, + 0.17430007457733154, + 0.1743999719619751, + 0.1743999719619751, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.1744999885559082, + 0.17459988594055176, + 0.1746000051498413, + 0.1746000051498413, + 0.17470002174377441, + 0.17470002174377441, + 0.17479991912841797, + 0.17479991912841797, + 0.17479991912841797, + 0.17480003833770752, + 0.17480003833770752, + 0.17480003833770752, + 0.17489993572235107, + 0.17490005493164062, + 0.17490005493164062, + 0.17499995231628418, + 0.17499995231628418, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.17509996891021729, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.1751999855041504, + 0.17520010471343994, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1753000020980835, + 0.1754000186920166, + 0.1754000186920166, + 0.17549991607666016, + 0.17549991607666016, + 0.1755000352859497, + 0.17559993267059326, + 0.1756000518798828, + 0.17570006847381592, + 0.17570006847381592, + 0.17579996585845947, + 0.17589998245239258, + 0.17589998245239258, + 0.17589998245239258, + 0.17599999904632568, + 0.17599999904632568, + 0.17609989643096924, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.1761000156402588, + 0.17619991302490234, + 0.17619991302490234, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.1762000322341919, + 0.17629992961883545, + 0.176300048828125, + 0.17639994621276855, + 0.17639994621276855, + 0.1764000654220581, + 0.1764000654220581, + 0.17649996280670166, + 0.17649996280670166, + 0.1765000820159912, + 0.1765000820159912, + 0.1765000820159912, + 0.17659997940063477, + 0.17660009860992432, + 0.17669999599456787, + 0.17669999599456787, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17680001258850098, + 0.17689990997314453, + 0.17689990997314453, + 0.17689990997314453, + 0.17689990997314453, + 0.17690002918243408, + 0.17699992656707764, + 0.17699992656707764, + 0.17709994316101074, + 0.1771000623703003, + 0.1771000623703003, + 0.17719995975494385, + 0.17719995975494385, + 0.1772000789642334, + 0.17729997634887695, + 0.1773000955581665, + 0.1773000955581665, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.17739999294281006, + 0.1774998903274536, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17750000953674316, + 0.17779994010925293, + 0.17779994010925293, + 0.17779994010925293, + 0.17779994010925293, + 0.17780005931854248, + 0.17789995670318604, + 0.17789995670318604, + 0.17790007591247559, + 0.17799997329711914, + 0.1780000925064087, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.17809998989105225, + 0.1781001091003418, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17820000648498535, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.17830002307891846, + 0.17840003967285156, + 0.17840003967285156, + 0.17840003967285156, + 0.17849993705749512, + 0.17850005626678467, + 0.17859995365142822, + 0.17859995365142822, + 0.17870008945465088, + 0.17879998683929443, + 0.17879998683929443, + 0.17880010604858398, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17890000343322754, + 0.17900002002716064, + 0.1790999174118042, + 0.1791999340057373, + 0.17920005321502686, + 0.1792999505996704, + 0.1792999505996704, + 0.17930006980895996, + 0.17930006980895996, + 0.17930006980895996, + 0.17939996719360352, + 0.17949998378753662, + 0.17949998378753662, + 0.17949998378753662, + 0.17960000038146973, + 0.17960000038146973, + 0.17970001697540283, + 0.17970001697540283, + 0.17980003356933594, + 0.17980003356933594, + 0.17980003356933594, + 0.1798999309539795, + 0.1798999309539795, + 0.17990005016326904, + 0.1800999641418457, + 0.18029999732971191, + 0.18029999732971191, + 0.18029999732971191, + 0.18039989471435547, + 0.18040001392364502, + 0.18040001392364502, + 0.18040001392364502, + 0.18049991130828857, + 0.18049991130828857, + 0.18050003051757812, + 0.18059992790222168, + 0.18060004711151123, + 0.18069994449615479, + 0.1807999610900879, + 0.1807999610900879, + 0.18080008029937744, + 0.18080008029937744, + 0.18080008029937744, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1811000108718872, + 0.1811000108718872, + 0.1812000274658203, + 0.18129992485046387, + 0.18130004405975342, + 0.18139994144439697, + 0.18139994144439697, + 0.18149995803833008, + 0.18150007724761963, + 0.18159997463226318, + 0.18159997463226318, + 0.1816999912261963, + 0.1818000078201294, + 0.1819000244140625, + 0.18199992179870605, + 0.18209993839263916, + 0.18219995498657227, + 0.18220007419586182, + 0.18229997158050537, + 0.18230009078979492, + 0.18239998817443848, + 0.18250000476837158, + 0.18250000476837158, + 0.18269991874694824, + 0.1827000379562378, + 0.18279993534088135, + 0.18279993534088135, + 0.1828000545501709, + 0.18289995193481445, + 0.18289995193481445, + 0.182900071144104, + 0.182900071144104, + 0.18299996852874756, + 0.18299996852874756, + 0.18299996852874756, + 0.18309998512268066, + 0.18309998512268066, + 0.18309998512268066, + 0.18309998512268066, + 0.18329989910125732, + 0.18349993228912354, + 0.18359994888305664, + 0.18359994888305664, + 0.1836000680923462, + 0.1836000680923462, + 0.1837000846862793, + 0.1837000846862793, + 0.18389999866485596, + 0.18409991264343262, + 0.18410003185272217, + 0.18429994583129883, + 0.18449997901916504, + 0.18449997901916504, + 0.18449997901916504, + 0.1845000982284546, + 0.18459999561309814, + 0.1846998929977417, + 0.18470001220703125, + 0.18470001220703125, + 0.18470001220703125, + 0.18480002880096436, + 0.18490004539489746, + 0.18529999256134033, + 0.18529999256134033, + 0.18540000915527344, + 0.18550002574920654, + 0.18550002574920654, + 0.1856999397277832, + 0.18570005893707275, + 0.18570005893707275, + 0.1864999532699585, + 0.1866999864578247, + 0.18700003623962402, + 0.18719995021820068, + 0.1873999834060669, + 0.1875, + 0.1877000331878662, + 0.1877000331878662, + 0.1883000135421753, + 0.18839991092681885, + 0.18849992752075195, + 0.18869996070861816, + 0.18929994106292725, + 0.1894000768661499, + 0.189500093460083, + 0.19000005722045898, + 0.19029998779296875, + 0.19029998779296875, + 0.19040000438690186, + 0.19070005416870117, + 0.19070005416870117, + 0.19079995155334473, + 0.19079995155334473, + 0.19080007076263428, + 0.19089996814727783, + 0.19099998474121094, + 0.19099998474121094, + 0.19110000133514404, + 0.19120001792907715, + 0.1912999153137207, + 0.19130003452301025, + 0.1913999319076538, + 0.1913999319076538, + 0.19140005111694336, + 0.19150006771087646, + 0.19159996509552002, + 0.19159996509552002, + 0.19169998168945312, + 0.19179999828338623, + 0.19190001487731934, + 0.19230008125305176, + 0.19249999523162842, + 0.19260001182556152, + 0.1930999755859375, + 0.1930999755859375, + 0.1931999921798706, + 0.1933000087738037, + 0.1933000087738037, + 0.19340002536773682, + 0.19350004196166992, + 0.19359993934631348, + 0.19360005855560303, + 0.19369995594024658, + 0.1938999891281128, + 0.19399988651275635, + 0.19429993629455566, + 0.19430005550384521, + 0.19470000267028809, + 0.19470000267028809, + 0.19499993324279785, + 0.19529998302459717, + 0.19529998302459717, + 0.19539999961853027, + 0.19560003280639648, + 0.19579994678497314, + 0.19579994678497314, + 0.19609999656677246, + 0.19679999351501465, + 0.19679999351501465, + 0.19690001010894775, + 0.19709992408752441, + 0.1976999044418335, + 0.19780004024505615, + 0.1979999542236328, + 0.1985999345779419, + 0.198699951171875, + 0.1994999647140503, + 0.20119988918304443, + 0.20120000839233398, + 0.20260000228881836, + 0.2031000852584839, + 0.2043999433517456, + 0.20440006256103516, + 0.20469999313354492, + 0.20490002632141113, + 0.20500004291534424, + 0.20520007610321045, + 0.20520007610321045, + 0.2063000202178955, + 0.20789992809295654, + 0.20859992504119873, + 0.2090998888015747, + 0.20920002460479736, + 0.20940005779266357, + 0.21000003814697266, + 0.21029996871948242, + 0.21090006828308105, + 0.21139991283416748, + 0.2117999792098999, + 0.21309995651245117, + 0.21399998664855957, + 0.214400053024292, + 0.21849989891052246, + 0.22039997577667236, + 0.22089993953704834, + 0.22150003910064697, + 0.22329998016357422, + 0.22370004653930664, + 0.22450006008148193, + 0.2245999574661255, + 0.22569990158081055, + 0.22699999809265137, + 0.22950005531311035, + 0.22980010509490967, + 0.23000001907348633, + 0.23010003566741943, + 0.23259997367858887, + 0.23389995098114014, + 0.2343999147415161, + 0.23649990558624268, + 0.2386000156402588, + 0.24090003967285156, + 0.24100005626678467, + 0.243399977684021, + 0.24369990825653076, + 0.2461000680923462, + 0.24670004844665527, + 0.2470000982284546, + 0.24849998950958252, + 0.2518000602722168, + 0.25950002670288086, + 0.2609999179840088, + 0.2615000009536743, + 0.2617999315261841, + 0.26399993896484375, + 0.26419997215270996, + 0.26979994773864746, + 0.2711000442504883, + 0.27230000495910645, + 0.274399995803833, + 0.2772001028060913, + 0.27769994735717773, + 0.2792999744415283, + 0.2809000015258789, + 0.2833000421524048, + 0.29559993743896484, + 0.29830002784729004, + 0.30119991302490234, + 0.3068000078201294, + 0.3069000244140625, + 0.3075000047683716, + 0.30809998512268066, + 0.3144000768661499, + 0.31509995460510254, + 0.3156999349594116, + 0.3194000720977783, + 0.3208000659942627, + 0.32200002670288086, + 0.3273000717163086, + 0.3292999267578125, + 0.32940006256103516, + 0.3342999219894409, + 0.33570003509521484, + 0.3372000455856323, + 0.3374999761581421, + 0.3381999731063843, + 0.33980000019073486, + 0.34220004081726074, + 0.3424999713897705, + 0.3445000648498535, + 0.3449000120162964, + 0.34609997272491455, + 0.3470999002456665, + 0.34790003299713135, + 0.3492000102996826, + 0.35329997539520264, + 0.35339999198913574, + 0.3544999361038208, + 0.3578000068664551, + 0.3586999177932739, + 0.3645000457763672, + 0.36640000343322754, + 0.3711000680923462, + 0.37119996547698975, + 0.3904000520706177, + 0.40749990940093994, + 0.40859997272491455, + 0.4114999771118164, + 0.41919994354248047, + 0.43379998207092285, + 0.4449000358581543, + 0.45139992237091064, + 0.4555000066757202, + 0.46880006790161133, + 0.47659993171691895, + 0.4848001003265381, + 0.48680007457733154, + 0.5348999500274658, + 0.5450999736785889, + 0.5499000549316406, + 0.5500000715255737, + 0.5559999942779541, + 0.5606000423431396, + 0.5613000392913818, + 0.5647000074386597, + 0.5704998970031738, + 0.5799000263214111, + 0.5895000696182251, + 0.5908000469207764, + 0.6008000373840332, + 0.6024999618530273, + 0.6116000413894653, + 0.614300012588501, + 0.618399977684021, + 0.6207000017166138, + 0.6335999965667725, + 0.6377999782562256, + 0.641800045967102, + 0.6652998924255371, + 0.6678999662399292, + 0.6731998920440674, + 0.684999942779541, + 0.7005000114440918, + 0.7471998929977417, + 1.846000075340271, + 2.0020999908447266, + 2.868000030517578 + ], + "middleValue": 0.17430001497268677, + "timestamp": "2023-10-28T23:32:04.351Z" + }, + { + "algorithm": "TimeDistribution impproved distribution proccess + small per updates", + "version": "v3.1", + "numIterations": 1000, + "executionTimes": [ + 0.1520000696182251, + 0.15349996089935303, + 0.15369999408721924, + 0.15369999408721924, + 0.15369999408721924, + 0.15369999408721924, + 0.15369999408721924, + 0.1537998914718628, + 0.15390002727508545, + 0.15390002727508545, + 0.15400004386901855, + 0.1540999412536621, + 0.15410006046295166, + 0.15410006046295166, + 0.15429997444152832, + 0.15430009365081787, + 0.15439999103546143, + 0.15440011024475098, + 0.15450000762939453, + 0.15450000762939453, + 0.15450000762939453, + 0.15460002422332764, + 0.15460002422332764, + 0.15460002422332764, + 0.15460002422332764, + 0.15460002422332764, + 0.15460002422332764, + 0.15470004081726074, + 0.15470004081726074, + 0.15470004081726074, + 0.15480005741119385, + 0.15480005741119385, + 0.15480005741119385, + 0.15480005741119385, + 0.15480005741119385, + 0.1548999547958374, + 0.1548999547958374, + 0.1548999547958374, + 0.1549999713897705, + 0.1549999713897705, + 0.1549999713897705, + 0.1549999713897705, + 0.15500009059906006, + 0.1550999879837036, + 0.1550999879837036, + 0.1550999879837036, + 0.1550999879837036, + 0.1550999879837036, + 0.1550999879837036, + 0.15519988536834717, + 0.15520000457763672, + 0.15520000457763672, + 0.15520000457763672, + 0.15520000457763672, + 0.15520000457763672, + 0.15520000457763672, + 0.15529990196228027, + 0.15529990196228027, + 0.15529990196228027, + 0.15529990196228027, + 0.15529990196228027, + 0.15530002117156982, + 0.15530002117156982, + 0.15530002117156982, + 0.15530002117156982, + 0.15530002117156982, + 0.15539991855621338, + 0.15539991855621338, + 0.15540003776550293, + 0.15540003776550293, + 0.15540003776550293, + 0.15540003776550293, + 0.15540003776550293, + 0.15540003776550293, + 0.15549993515014648, + 0.15549993515014648, + 0.15550005435943604, + 0.15550005435943604, + 0.15550005435943604, + 0.15550005435943604, + 0.15550005435943604, + 0.1555999517440796, + 0.1555999517440796, + 0.1555999517440796, + 0.1555999517440796, + 0.1555999517440796, + 0.1555999517440796, + 0.15560007095336914, + 0.15560007095336914, + 0.15560007095336914, + 0.15560007095336914, + 0.15560007095336914, + 0.1556999683380127, + 0.1556999683380127, + 0.1556999683380127, + 0.1556999683380127, + 0.1556999683380127, + 0.1556999683380127, + 0.1556999683380127, + 0.1556999683380127, + 0.15570008754730225, + 0.1557999849319458, + 0.1557999849319458, + 0.1557999849319458, + 0.1557999849319458, + 0.1557999849319458, + 0.1557999849319458, + 0.1557999849319458, + 0.15580010414123535, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.1559000015258789, + 0.156000018119812, + 0.156000018119812, + 0.156000018119812, + 0.156000018119812, + 0.156000018119812, + 0.156000018119812, + 0.156000018119812, + 0.156000018119812, + 0.156000018119812, + 0.15609991550445557, + 0.15609991550445557, + 0.15609991550445557, + 0.15609991550445557, + 0.15609991550445557, + 0.15609991550445557, + 0.15609991550445557, + 0.15609991550445557, + 0.15610003471374512, + 0.15610003471374512, + 0.15610003471374512, + 0.15610003471374512, + 0.15610003471374512, + 0.15610003471374512, + 0.15619993209838867, + 0.15619993209838867, + 0.15619993209838867, + 0.15620005130767822, + 0.15620005130767822, + 0.15620005130767822, + 0.15629994869232178, + 0.15629994869232178, + 0.15629994869232178, + 0.15629994869232178, + 0.15629994869232178, + 0.15629994869232178, + 0.15630006790161133, + 0.15630006790161133, + 0.15630006790161133, + 0.15639996528625488, + 0.15639996528625488, + 0.15639996528625488, + 0.15640008449554443, + 0.15640008449554443, + 0.15640008449554443, + 0.15640008449554443, + 0.156499981880188, + 0.156499981880188, + 0.156499981880188, + 0.156499981880188, + 0.156499981880188, + 0.156499981880188, + 0.156499981880188, + 0.156499981880188, + 0.15650010108947754, + 0.15650010108947754, + 0.1565999984741211, + 0.1565999984741211, + 0.1565999984741211, + 0.1565999984741211, + 0.1565999984741211, + 0.1565999984741211, + 0.1565999984741211, + 0.1567000150680542, + 0.1567000150680542, + 0.1567000150680542, + 0.1567000150680542, + 0.15679991245269775, + 0.15679991245269775, + 0.15679991245269775, + 0.1568000316619873, + 0.1568000316619873, + 0.1568000316619873, + 0.1568000316619873, + 0.15689992904663086, + 0.1569000482559204, + 0.15699994564056396, + 0.15699994564056396, + 0.15699994564056396, + 0.15699994564056396, + 0.15699994564056396, + 0.15699994564056396, + 0.15699994564056396, + 0.15699994564056396, + 0.15700006484985352, + 0.15700006484985352, + 0.15700006484985352, + 0.15700006484985352, + 0.15700006484985352, + 0.15700006484985352, + 0.15709996223449707, + 0.15709996223449707, + 0.15709996223449707, + 0.15709996223449707, + 0.15710008144378662, + 0.15710008144378662, + 0.15719997882843018, + 0.15719997882843018, + 0.15719997882843018, + 0.15720009803771973, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15739989280700684, + 0.1574000120162964, + 0.1574000120162964, + 0.1574000120162964, + 0.1574000120162964, + 0.1574000120162964, + 0.15749990940093994, + 0.15749990940093994, + 0.1575000286102295, + 0.1575000286102295, + 0.1575000286102295, + 0.1575000286102295, + 0.1575000286102295, + 0.1575000286102295, + 0.1575000286102295, + 0.1575000286102295, + 0.15759992599487305, + 0.15759992599487305, + 0.1576000452041626, + 0.1576000452041626, + 0.1576000452041626, + 0.15769994258880615, + 0.15779995918273926, + 0.15779995918273926, + 0.15779995918273926, + 0.15789997577667236, + 0.15789997577667236, + 0.15789997577667236, + 0.15789997577667236, + 0.15789997577667236, + 0.15789997577667236, + 0.15790009498596191, + 0.15790009498596191, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15809988975524902, + 0.15809988975524902, + 0.15810000896453857, + 0.15810000896453857, + 0.15810000896453857, + 0.15810000896453857, + 0.15819990634918213, + 0.15819990634918213, + 0.15820002555847168, + 0.15820002555847168, + 0.15820002555847168, + 0.15829992294311523, + 0.15829992294311523, + 0.15829992294311523, + 0.15830004215240479, + 0.15839993953704834, + 0.15839993953704834, + 0.15839993953704834, + 0.1584000587463379, + 0.1584000587463379, + 0.1584000587463379, + 0.1584000587463379, + 0.15849995613098145, + 0.15849995613098145, + 0.15849995613098145, + 0.15849995613098145, + 0.15849995613098145, + 0.15849995613098145, + 0.158500075340271, + 0.158500075340271, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.1586000919342041, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.1587001085281372, + 0.15880000591278076, + 0.15880000591278076, + 0.15889990329742432, + 0.15889990329742432, + 0.15889990329742432, + 0.15890002250671387, + 0.15890002250671387, + 0.15890002250671387, + 0.15890002250671387, + 0.15890002250671387, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15909993648529053, + 0.15910005569458008, + 0.15910005569458008, + 0.15910005569458008, + 0.15919995307922363, + 0.15919995307922363, + 0.15919995307922363, + 0.15920007228851318, + 0.15920007228851318, + 0.15920007228851318, + 0.15929996967315674, + 0.15929996967315674, + 0.1593000888824463, + 0.1593000888824463, + 0.15939998626708984, + 0.15939998626708984, + 0.15939998626708984, + 0.15939998626708984, + 0.15939998626708984, + 0.15939998626708984, + 0.1594998836517334, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.1596999168395996, + 0.1596999168395996, + 0.1596999168395996, + 0.1596999168395996, + 0.15970003604888916, + 0.15970003604888916, + 0.15970003604888916, + 0.15979993343353271, + 0.15980005264282227, + 0.15980005264282227, + 0.15980005264282227, + 0.15980005264282227, + 0.15980005264282227, + 0.15989995002746582, + 0.15989995002746582, + 0.15990006923675537, + 0.15990006923675537, + 0.15999996662139893, + 0.15999996662139893, + 0.15999996662139893, + 0.15999996662139893, + 0.16000008583068848, + 0.16000008583068848, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16010010242462158, + 0.16010010242462158, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16030001640319824, + 0.16030001640319824, + 0.16030001640319824, + 0.16030001640319824, + 0.16030001640319824, + 0.16030001640319824, + 0.1603999137878418, + 0.1603999137878418, + 0.1603999137878418, + 0.16040003299713135, + 0.16040003299713135, + 0.16040003299713135, + 0.16040003299713135, + 0.1604999303817749, + 0.16050004959106445, + 0.16050004959106445, + 0.16050004959106445, + 0.160599946975708, + 0.160599946975708, + 0.160599946975708, + 0.160599946975708, + 0.16060006618499756, + 0.1606999635696411, + 0.1606999635696411, + 0.16070008277893066, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16100001335144043, + 0.16100001335144043, + 0.16100001335144043, + 0.16109991073608398, + 0.16109991073608398, + 0.16109991073608398, + 0.16110002994537354, + 0.16110002994537354, + 0.16110002994537354, + 0.16110002994537354, + 0.1611999273300171, + 0.1611999273300171, + 0.1611999273300171, + 0.1611999273300171, + 0.16120004653930664, + 0.16120004653930664, + 0.16120004653930664, + 0.1612999439239502, + 0.1612999439239502, + 0.1612999439239502, + 0.16130006313323975, + 0.16130006313323975, + 0.16130006313323975, + 0.1613999605178833, + 0.1613999605178833, + 0.1613999605178833, + 0.1613999605178833, + 0.1613999605178833, + 0.1613999605178833, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.1614999771118164, + 0.1614999771118164, + 0.16150009632110596, + 0.16150009632110596, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.16170001029968262, + 0.16170001029968262, + 0.16170001029968262, + 0.16170001029968262, + 0.16179990768432617, + 0.16179990768432617, + 0.16180002689361572, + 0.16180002689361572, + 0.16180002689361572, + 0.16180002689361572, + 0.16180002689361572, + 0.16189992427825928, + 0.16189992427825928, + 0.16190004348754883, + 0.16199994087219238, + 0.16200006008148193, + 0.1620999574661255, + 0.1620999574661255, + 0.1620999574661255, + 0.1620999574661255, + 0.16210007667541504, + 0.16210007667541504, + 0.16210007667541504, + 0.16210007667541504, + 0.16210007667541504, + 0.16210007667541504, + 0.1621999740600586, + 0.1621999740600586, + 0.1621999740600586, + 0.16220009326934814, + 0.16220009326934814, + 0.1622999906539917, + 0.1622999906539917, + 0.1622999906539917, + 0.1622999906539917, + 0.16230010986328125, + 0.16230010986328125, + 0.1624000072479248, + 0.1624000072479248, + 0.1624000072479248, + 0.1624000072479248, + 0.1625000238418579, + 0.16259992122650146, + 0.16259992122650146, + 0.16260004043579102, + 0.16260004043579102, + 0.16269993782043457, + 0.16269993782043457, + 0.16269993782043457, + 0.16270005702972412, + 0.16270005702972412, + 0.16279995441436768, + 0.16279995441436768, + 0.16279995441436768, + 0.16280007362365723, + 0.16289997100830078, + 0.16289997100830078, + 0.16289997100830078, + 0.16290009021759033, + 0.1629999876022339, + 0.1629999876022339, + 0.1629999876022339, + 0.1629999876022339, + 0.16300010681152344, + 0.163100004196167, + 0.163100004196167, + 0.163100004196167, + 0.163100004196167, + 0.163100004196167, + 0.1632000207901001, + 0.1632000207901001, + 0.1633000373840332, + 0.1633000373840332, + 0.1633000373840332, + 0.1633000373840332, + 0.16339993476867676, + 0.1634000539779663, + 0.1634000539779663, + 0.1634000539779663, + 0.16349995136260986, + 0.16349995136260986, + 0.16349995136260986, + 0.16349995136260986, + 0.16349995136260986, + 0.16350007057189941, + 0.16359996795654297, + 0.16359996795654297, + 0.16359996795654297, + 0.16359996795654297, + 0.16359996795654297, + 0.16360008716583252, + 0.16369998455047607, + 0.16369998455047607, + 0.16380000114440918, + 0.16380000114440918, + 0.16380000114440918, + 0.16380000114440918, + 0.16380000114440918, + 0.16380000114440918, + 0.16380000114440918, + 0.16390001773834229, + 0.16390001773834229, + 0.16390001773834229, + 0.16390001773834229, + 0.16390001773834229, + 0.16390001773834229, + 0.16399991512298584, + 0.1640000343322754, + 0.1640000343322754, + 0.16409993171691895, + 0.1641000509262085, + 0.1641000509262085, + 0.1641000509262085, + 0.16419994831085205, + 0.16419994831085205, + 0.1642000675201416, + 0.1642000675201416, + 0.16429996490478516, + 0.16429996490478516, + 0.16429996490478516, + 0.1643000841140747, + 0.1643000841140747, + 0.16439998149871826, + 0.16439998149871826, + 0.16439998149871826, + 0.16439998149871826, + 0.1644001007080078, + 0.16449999809265137, + 0.16460001468658447, + 0.16460001468658447, + 0.16460001468658447, + 0.16460001468658447, + 0.16469991207122803, + 0.16469991207122803, + 0.16470003128051758, + 0.16470003128051758, + 0.16470003128051758, + 0.16480004787445068, + 0.16480004787445068, + 0.16480004787445068, + 0.16489994525909424, + 0.16489994525909424, + 0.1649000644683838, + 0.16499996185302734, + 0.16499996185302734, + 0.1650000810623169, + 0.1650000810623169, + 0.1650000810623169, + 0.16509997844696045, + 0.16509997844696045, + 0.16510009765625, + 0.16510009765625, + 0.16519999504089355, + 0.16519999504089355, + 0.16519999504089355, + 0.1652998924255371, + 0.16530001163482666, + 0.16530001163482666, + 0.16530001163482666, + 0.16539990901947021, + 0.16540002822875977, + 0.16540002822875977, + 0.16540002822875977, + 0.16540002822875977, + 0.16550004482269287, + 0.16559994220733643, + 0.16560006141662598, + 0.16560006141662598, + 0.16569995880126953, + 0.16579997539520264, + 0.16579997539520264, + 0.16579997539520264, + 0.16579997539520264, + 0.16589999198913574, + 0.16589999198913574, + 0.16589999198913574, + 0.16610002517700195, + 0.16610002517700195, + 0.1661999225616455, + 0.16620004177093506, + 0.1662999391555786, + 0.16639995574951172, + 0.16640007495880127, + 0.16649997234344482, + 0.16649997234344482, + 0.16659998893737793, + 0.16670000553131104, + 0.16670000553131104, + 0.16670000553131104, + 0.16680002212524414, + 0.1668999195098877, + 0.16690003871917725, + 0.1669999361038208, + 0.1669999361038208, + 0.1670999526977539, + 0.1670999526977539, + 0.16710007190704346, + 0.167199969291687, + 0.167199969291687, + 0.167199969291687, + 0.16730010509490967, + 0.16740000247955322, + 0.16740000247955322, + 0.16749989986419678, + 0.16750001907348633, + 0.16750001907348633, + 0.16750001907348633, + 0.16750001907348633, + 0.16750001907348633, + 0.16760003566741943, + 0.16760003566741943, + 0.167699933052063, + 0.1677999496459961, + 0.16780006885528564, + 0.1678999662399292, + 0.1678999662399292, + 0.16790008544921875, + 0.1679999828338623, + 0.1679999828338623, + 0.16800010204315186, + 0.1680999994277954, + 0.1680999994277954, + 0.16819989681243896, + 0.16820001602172852, + 0.16820001602172852, + 0.16830003261566162, + 0.16830003261566162, + 0.16839993000030518, + 0.16840004920959473, + 0.16840004920959473, + 0.16849994659423828, + 0.1685999631881714, + 0.1686999797821045, + 0.1687999963760376, + 0.1689000129699707, + 0.1690000295639038, + 0.1690000295639038, + 0.1690000295639038, + 0.16909992694854736, + 0.16910004615783691, + 0.16910004615783691, + 0.16919994354248047, + 0.16929996013641357, + 0.16939997673034668, + 0.16939997673034668, + 0.16949999332427979, + 0.169700026512146, + 0.16999995708465576, + 0.17010009288787842, + 0.17010009288787842, + 0.17019999027252197, + 0.17030000686645508, + 0.17030000686645508, + 0.17030000686645508, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17040002346038818, + 0.17049992084503174, + 0.17079997062683105, + 0.1708000898361206, + 0.1708000898361206, + 0.17089998722076416, + 0.17089998722076416, + 0.17119991779327393, + 0.17120003700256348, + 0.17129993438720703, + 0.17170000076293945, + 0.17180001735687256, + 0.17200005054473877, + 0.17209994792938232, + 0.17209994792938232, + 0.17220008373260498, + 0.17230010032653809, + 0.17250001430511475, + 0.17260003089904785, + 0.17260003089904785, + 0.17270004749298096, + 0.1727999448776245, + 0.17299997806549072, + 0.17330002784729004, + 0.17330002784729004, + 0.17350006103515625, + 0.1736999750137329, + 0.17379999160766602, + 0.1741999387741089, + 0.17420005798339844, + 0.17430007457733154, + 0.1744999885559082, + 0.1746000051498413, + 0.17470002174377441, + 0.1751999855041504, + 0.17539989948272705, + 0.1755000352859497, + 0.1762000322341919, + 0.1762000322341919, + 0.176300048828125, + 0.17639994621276855, + 0.17680001258850098, + 0.17729997634887695, + 0.17739999294281006, + 0.17809998989105225, + 0.17850005626678467, + 0.1792999505996704, + 0.17930006980895996, + 0.17930006980895996, + 0.1799999475479126, + 0.1801999807357788, + 0.18029999732971191, + 0.18049991130828857, + 0.180899977684021, + 0.180899977684021, + 0.1809999942779541, + 0.1809999942779541, + 0.1809999942779541, + 0.1811000108718872, + 0.18119990825653076, + 0.18129992485046387, + 0.18130004405975342, + 0.18130004405975342, + 0.18140006065368652, + 0.18149995803833008, + 0.1818000078201294, + 0.18199992179870605, + 0.1820000410079956, + 0.18220007419586182, + 0.18229997158050537, + 0.18229997158050537, + 0.1826000213623047, + 0.18299996852874756, + 0.18330001831054688, + 0.18340003490447998, + 0.1836000680923462, + 0.1837000846862793, + 0.1838001012802124, + 0.18409991264343262, + 0.18409991264343262, + 0.18410003185272217, + 0.18419992923736572, + 0.18430006504058838, + 0.18430006504058838, + 0.18439996242523193, + 0.18449997901916504, + 0.18449997901916504, + 0.18459999561309814, + 0.18470001220703125, + 0.1848999261856079, + 0.18519997596740723, + 0.18519997596740723, + 0.18519997596740723, + 0.18540000915527344, + 0.1857999563217163, + 0.18580007553100586, + 0.18610000610351562, + 0.18610000610351562, + 0.18619990348815918, + 0.18620002269744873, + 0.1863999366760254, + 0.18640005588531494, + 0.1865999698638916, + 0.1865999698638916, + 0.18700003623962402, + 0.18709993362426758, + 0.18710005283355713, + 0.18719995021820068, + 0.1876000165939331, + 0.18779993057250977, + 0.1883000135421753, + 0.18849992752075195, + 0.1886000633239746, + 0.18879997730255127, + 0.18880009651184082, + 0.18900001049041748, + 0.1892000436782837, + 0.18939995765686035, + 0.18959999084472656, + 0.18980002403259277, + 0.19029998779296875, + 0.19059991836547852, + 0.19099998474121094, + 0.19110000133514404, + 0.19220006465911865, + 0.19279992580413818, + 0.1929999589920044, + 0.19459998607635498, + 0.1948000192642212, + 0.19630002975463867, + 0.19700002670288086, + 0.19710004329681396, + 0.19760000705718994, + 0.19790005683898926, + 0.19910001754760742, + 0.20249998569488525, + 0.20369994640350342, + 0.20430004596710205, + 0.20469999313354492, + 0.205299973487854, + 0.2059999704360962, + 0.20619988441467285, + 0.20649993419647217, + 0.20770001411437988, + 0.20859992504119873, + 0.20860004425048828, + 0.21070003509521484, + 0.21070003509521484, + 0.21090006828308105, + 0.2128000259399414, + 0.21329998970031738, + 0.21329998970031738, + 0.2136000394821167, + 0.21510004997253418, + 0.21600008010864258, + 0.21679997444152832, + 0.2239999771118164, + 0.22550010681152344, + 0.22720003128051758, + 0.22729992866516113, + 0.22759997844696045, + 0.22769999504089355, + 0.22850000858306885, + 0.22920000553131104, + 0.229699969291687, + 0.23280000686645508, + 0.2333000898361206, + 0.23350000381469727, + 0.23370003700256348, + 0.2352999448776245, + 0.23570001125335693, + 0.23740005493164062, + 0.2395000457763672, + 0.24180006980895996, + 0.24279999732971191, + 0.24759995937347412, + 0.24759995937347412, + 0.25849997997283936, + 0.25940001010894775, + 0.26479995250701904, + 0.27649998664855957, + 0.2766000032424927, + 0.2783999443054199, + 0.28179991245269775, + 0.2858999967575073, + 0.2868000268936157, + 0.28839993476867676, + 0.28939998149871826, + 0.28949999809265137, + 0.30340003967285156, + 0.30490005016326904, + 0.3052999973297119, + 0.3076000213623047, + 0.30849993228912354, + 0.30959999561309814, + 0.31150007247924805, + 0.3118000030517578, + 0.3126000165939331, + 0.3127000331878662, + 0.31459999084472656, + 0.31470000743865967, + 0.31770002841949463, + 0.31780004501342773, + 0.32200002670288086, + 0.32330000400543213, + 0.32340002059936523, + 0.33249998092651367, + 0.33610010147094727, + 0.3361999988555908, + 0.3371999263763428, + 0.340999960899353, + 0.34589993953704834, + 0.35159993171691895, + 0.36660003662109375, + 0.3682999610900879, + 0.3693000078201294, + 0.38040006160736084, + 0.3811999559402466, + 0.39549994468688965, + 0.3996000289916992, + 0.40099990367889404, + 0.40699994564056396, + 0.40769994258880615, + 0.42890000343322754, + 0.430899977684021, + 0.46050000190734863, + 0.465999960899353, + 0.46720004081726074, + 0.47450006008148193, + 0.4749000072479248, + 0.5065999031066895, + 0.5218000411987305, + 0.5289000272750854, + 0.5420999526977539, + 0.5468000173568726, + 0.5558000802993774, + 0.5575000047683716, + 0.5638000965118408, + 0.5757999420166016, + 0.5760999917984009, + 0.5778000354766846, + 0.5916999578475952, + 0.6046000719070435, + 0.6067999601364136, + 0.6376999616622925, + 0.6549999713897705, + 0.6586000919342041, + 0.6762000322341919, + 0.709399938583374, + 0.7208999395370483, + 0.7279999256134033, + 0.7633000612258911, + 0.7955000400543213, + 0.8044999837875366, + 0.8571000099182129, + 0.9033000469207764, + 0.9289000034332275, + 2.5824999809265137, + 2.742400050163269, + 3.6851999759674072 + ], + "middleValue": 0.1620999574661255, + "timestamp": "2023-10-28T23:34:01.626Z" + }, + { + "algorithm": "TimeDistribution impproved distribution proccess + small per updates", + "version": "v3.1", + "numIterations": 1000, + "executionTimes": [ + 0.15609991550445557, + 0.15610003471374512, + 0.1565999984741211, + 0.15660011768341064, + 0.15679991245269775, + 0.1568000316619873, + 0.1568000316619873, + 0.15699994564056396, + 0.15699994564056396, + 0.15709996223449707, + 0.15709996223449707, + 0.15709996223449707, + 0.15709996223449707, + 0.15710008144378662, + 0.15719997882843018, + 0.15719997882843018, + 0.15719997882843018, + 0.15719997882843018, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15729999542236328, + 0.15730011463165283, + 0.1574000120162964, + 0.1574000120162964, + 0.1574000120162964, + 0.1574000120162964, + 0.15749990940093994, + 0.1575000286102295, + 0.15759992599487305, + 0.15759992599487305, + 0.15759992599487305, + 0.1576000452041626, + 0.1576000452041626, + 0.15769994258880615, + 0.15769994258880615, + 0.15769994258880615, + 0.1577000617980957, + 0.1577000617980957, + 0.15779995918273926, + 0.15779995918273926, + 0.15779995918273926, + 0.15779995918273926, + 0.15779995918273926, + 0.15779995918273926, + 0.15789997577667236, + 0.15789997577667236, + 0.15789997577667236, + 0.15789997577667236, + 0.15789997577667236, + 0.15789997577667236, + 0.15790009498596191, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15799999237060547, + 0.15800011157989502, + 0.15809988975524902, + 0.15810000896453857, + 0.15810000896453857, + 0.15810000896453857, + 0.15810000896453857, + 0.15810000896453857, + 0.15810000896453857, + 0.15820002555847168, + 0.15820002555847168, + 0.15820002555847168, + 0.15820002555847168, + 0.15820002555847168, + 0.15820002555847168, + 0.15820002555847168, + 0.15820002555847168, + 0.15829992294311523, + 0.15829992294311523, + 0.15829992294311523, + 0.15829992294311523, + 0.15829992294311523, + 0.15829992294311523, + 0.15829992294311523, + 0.15830004215240479, + 0.15830004215240479, + 0.15830004215240479, + 0.15830004215240479, + 0.15839993953704834, + 0.15839993953704834, + 0.15839993953704834, + 0.15839993953704834, + 0.15839993953704834, + 0.15839993953704834, + 0.15839993953704834, + 0.1584000587463379, + 0.1584000587463379, + 0.1584000587463379, + 0.1584000587463379, + 0.15849995613098145, + 0.15849995613098145, + 0.15849995613098145, + 0.15849995613098145, + 0.158500075340271, + 0.158500075340271, + 0.158500075340271, + 0.158500075340271, + 0.158500075340271, + 0.158500075340271, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.15859997272491455, + 0.1586000919342041, + 0.1586000919342041, + 0.1586000919342041, + 0.1586000919342041, + 0.1586000919342041, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.15869998931884766, + 0.1587001085281372, + 0.1587001085281372, + 0.15880000591278076, + 0.15880000591278076, + 0.15880000591278076, + 0.15880000591278076, + 0.15880000591278076, + 0.15880000591278076, + 0.15880000591278076, + 0.15880000591278076, + 0.15880000591278076, + 0.15880000591278076, + 0.15889990329742432, + 0.15889990329742432, + 0.15889990329742432, + 0.15889990329742432, + 0.15890002250671387, + 0.15890002250671387, + 0.15890002250671387, + 0.15890002250671387, + 0.15890002250671387, + 0.15890002250671387, + 0.15890002250671387, + 0.15890002250671387, + 0.15899991989135742, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15900003910064697, + 0.15909993648529053, + 0.15909993648529053, + 0.15909993648529053, + 0.15909993648529053, + 0.15909993648529053, + 0.15909993648529053, + 0.15910005569458008, + 0.15910005569458008, + 0.15910005569458008, + 0.15910005569458008, + 0.15910005569458008, + 0.15910005569458008, + 0.15910005569458008, + 0.15919995307922363, + 0.15919995307922363, + 0.15919995307922363, + 0.15919995307922363, + 0.15919995307922363, + 0.15919995307922363, + 0.15919995307922363, + 0.15919995307922363, + 0.15919995307922363, + 0.15920007228851318, + 0.15920007228851318, + 0.15920007228851318, + 0.15920007228851318, + 0.15929996967315674, + 0.15929996967315674, + 0.15929996967315674, + 0.15929996967315674, + 0.15929996967315674, + 0.15929996967315674, + 0.1593000888824463, + 0.1593000888824463, + 0.15939998626708984, + 0.15939998626708984, + 0.15939998626708984, + 0.15939998626708984, + 0.15939998626708984, + 0.15939998626708984, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.15950000286102295, + 0.1595999002456665, + 0.1595999002456665, + 0.1595999002456665, + 0.1595999002456665, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.15960001945495605, + 0.1596999168395996, + 0.1596999168395996, + 0.1596999168395996, + 0.1596999168395996, + 0.15970003604888916, + 0.15970003604888916, + 0.15970003604888916, + 0.15970003604888916, + 0.15970003604888916, + 0.15970003604888916, + 0.15970003604888916, + 0.15979993343353271, + 0.15979993343353271, + 0.15979993343353271, + 0.15979993343353271, + 0.15979993343353271, + 0.15980005264282227, + 0.15980005264282227, + 0.15980005264282227, + 0.15980005264282227, + 0.15980005264282227, + 0.15980005264282227, + 0.15980005264282227, + 0.15989995002746582, + 0.15989995002746582, + 0.15989995002746582, + 0.15989995002746582, + 0.15989995002746582, + 0.15989995002746582, + 0.15990006923675537, + 0.15990006923675537, + 0.15990006923675537, + 0.15990006923675537, + 0.15990006923675537, + 0.15990006923675537, + 0.15990006923675537, + 0.15999996662139893, + 0.15999996662139893, + 0.15999996662139893, + 0.15999996662139893, + 0.16000008583068848, + 0.16000008583068848, + 0.16000008583068848, + 0.16000008583068848, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16009998321533203, + 0.16010010242462158, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.16019999980926514, + 0.1602998971939087, + 0.1602998971939087, + 0.1602998971939087, + 0.16030001640319824, + 0.16030001640319824, + 0.16030001640319824, + 0.16030001640319824, + 0.16030001640319824, + 0.16030001640319824, + 0.16030001640319824, + 0.1603999137878418, + 0.1603999137878418, + 0.1603999137878418, + 0.1603999137878418, + 0.16040003299713135, + 0.16040003299713135, + 0.16040003299713135, + 0.16040003299713135, + 0.16040003299713135, + 0.16040003299713135, + 0.16040003299713135, + 0.1604999303817749, + 0.1604999303817749, + 0.1604999303817749, + 0.1604999303817749, + 0.1604999303817749, + 0.1604999303817749, + 0.1604999303817749, + 0.16050004959106445, + 0.16050004959106445, + 0.16050004959106445, + 0.16050004959106445, + 0.16050004959106445, + 0.16050004959106445, + 0.160599946975708, + 0.160599946975708, + 0.160599946975708, + 0.160599946975708, + 0.160599946975708, + 0.160599946975708, + 0.16060006618499756, + 0.16060006618499756, + 0.1606999635696411, + 0.1606999635696411, + 0.1606999635696411, + 0.1606999635696411, + 0.1606999635696411, + 0.1606999635696411, + 0.16070008277893066, + 0.16070008277893066, + 0.16070008277893066, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16079998016357422, + 0.16080009937286377, + 0.16080009937286377, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16089999675750732, + 0.16099989414215088, + 0.16099989414215088, + 0.16100001335144043, + 0.16100001335144043, + 0.16100001335144043, + 0.16100001335144043, + 0.16100001335144043, + 0.16100001335144043, + 0.16100001335144043, + 0.16100001335144043, + 0.16100001335144043, + 0.16100001335144043, + 0.16109991073608398, + 0.16110002994537354, + 0.16110002994537354, + 0.16110002994537354, + 0.16110002994537354, + 0.1611999273300171, + 0.1611999273300171, + 0.1611999273300171, + 0.1611999273300171, + 0.1611999273300171, + 0.1611999273300171, + 0.16120004653930664, + 0.16120004653930664, + 0.16120004653930664, + 0.16120004653930664, + 0.16120004653930664, + 0.16120004653930664, + 0.16120004653930664, + 0.16120004653930664, + 0.16120004653930664, + 0.1612999439239502, + 0.1612999439239502, + 0.1612999439239502, + 0.1612999439239502, + 0.1612999439239502, + 0.16130006313323975, + 0.16130006313323975, + 0.16130006313323975, + 0.16130006313323975, + 0.16130006313323975, + 0.1613999605178833, + 0.1613999605178833, + 0.1613999605178833, + 0.1613999605178833, + 0.1613999605178833, + 0.1613999605178833, + 0.1613999605178833, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.16140007972717285, + 0.1614999771118164, + 0.1614999771118164, + 0.1614999771118164, + 0.1614999771118164, + 0.1614999771118164, + 0.1614999771118164, + 0.1614999771118164, + 0.16150009632110596, + 0.16150009632110596, + 0.16150009632110596, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.1615999937057495, + 0.16169989109039307, + 0.16169989109039307, + 0.16170001029968262, + 0.16170001029968262, + 0.16170001029968262, + 0.16170001029968262, + 0.16170001029968262, + 0.16170001029968262, + 0.16170001029968262, + 0.16180002689361572, + 0.16180002689361572, + 0.16180002689361572, + 0.16180002689361572, + 0.16180002689361572, + 0.16189992427825928, + 0.16189992427825928, + 0.16189992427825928, + 0.16189992427825928, + 0.16189992427825928, + 0.16189992427825928, + 0.16190004348754883, + 0.16190004348754883, + 0.16190004348754883, + 0.16190004348754883, + 0.16190004348754883, + 0.16199994087219238, + 0.16199994087219238, + 0.16200006008148193, + 0.1620999574661255, + 0.1620999574661255, + 0.1620999574661255, + 0.1620999574661255, + 0.1620999574661255, + 0.1620999574661255, + 0.16210007667541504, + 0.1621999740600586, + 0.1621999740600586, + 0.1621999740600586, + 0.1621999740600586, + 0.16220009326934814, + 0.1622999906539917, + 0.1622999906539917, + 0.1622999906539917, + 0.1622999906539917, + 0.1622999906539917, + 0.1624000072479248, + 0.1624000072479248, + 0.1624000072479248, + 0.1624000072479248, + 0.1624000072479248, + 0.1624000072479248, + 0.1624000072479248, + 0.1624000072479248, + 0.16249990463256836, + 0.16249990463256836, + 0.1625000238418579, + 0.1625000238418579, + 0.1625000238418579, + 0.1625000238418579, + 0.1625000238418579, + 0.16259992122650146, + 0.16259992122650146, + 0.16260004043579102, + 0.16270005702972412, + 0.16270005702972412, + 0.16270005702972412, + 0.16279995441436768, + 0.16279995441436768, + 0.16280007362365723, + 0.16280007362365723, + 0.16289997100830078, + 0.16289997100830078, + 0.16289997100830078, + 0.16289997100830078, + 0.16289997100830078, + 0.16289997100830078, + 0.16289997100830078, + 0.16289997100830078, + 0.16289997100830078, + 0.16290009021759033, + 0.16290009021759033, + 0.16290009021759033, + 0.1629999876022339, + 0.1629999876022339, + 0.1629999876022339, + 0.1629999876022339, + 0.1629999876022339, + 0.1629999876022339, + 0.16300010681152344, + 0.16300010681152344, + 0.163100004196167, + 0.163100004196167, + 0.163100004196167, + 0.163100004196167, + 0.16319990158081055, + 0.1632000207901001, + 0.1632000207901001, + 0.1632000207901001, + 0.1632000207901001, + 0.1632000207901001, + 0.1632000207901001, + 0.16329991817474365, + 0.1633000373840332, + 0.16339993476867676, + 0.16339993476867676, + 0.16339993476867676, + 0.1634000539779663, + 0.16349995136260986, + 0.16349995136260986, + 0.16349995136260986, + 0.16350007057189941, + 0.16350007057189941, + 0.16350007057189941, + 0.16359996795654297, + 0.16360008716583252, + 0.16369998455047607, + 0.16369998455047607, + 0.16369998455047607, + 0.16369998455047607, + 0.16370010375976562, + 0.16380000114440918, + 0.16389989852905273, + 0.16390001773834229, + 0.16390001773834229, + 0.16399991512298584, + 0.1640000343322754, + 0.1640000343322754, + 0.1640000343322754, + 0.1640000343322754, + 0.1640000343322754, + 0.16409993171691895, + 0.1641000509262085, + 0.1641000509262085, + 0.1641000509262085, + 0.16419994831085205, + 0.16419994831085205, + 0.16419994831085205, + 0.1642000675201416, + 0.1642000675201416, + 0.1642000675201416, + 0.16429996490478516, + 0.1643000841140747, + 0.1643000841140747, + 0.16439998149871826, + 0.16439998149871826, + 0.16449999809265137, + 0.16449999809265137, + 0.16449999809265137, + 0.16459989547729492, + 0.16459989547729492, + 0.16459989547729492, + 0.16460001468658447, + 0.16460001468658447, + 0.16460001468658447, + 0.16470003128051758, + 0.16470003128051758, + 0.16470003128051758, + 0.16470003128051758, + 0.16470003128051758, + 0.16480004787445068, + 0.16480004787445068, + 0.16480004787445068, + 0.16480004787445068, + 0.16489994525909424, + 0.1649000644683838, + 0.1649000644683838, + 0.16499996185302734, + 0.16499996185302734, + 0.1650000810623169, + 0.16509997844696045, + 0.16509997844696045, + 0.16510009765625, + 0.16510009765625, + 0.16519999504089355, + 0.16519999504089355, + 0.16519999504089355, + 0.16530001163482666, + 0.16540002822875977, + 0.16550004482269287, + 0.16550004482269287, + 0.16559994220733643, + 0.16559994220733643, + 0.16560006141662598, + 0.16569995880126953, + 0.16569995880126953, + 0.16569995880126953, + 0.16570007801055908, + 0.16570007801055908, + 0.16579997539520264, + 0.16579997539520264, + 0.16579997539520264, + 0.16579997539520264, + 0.16579997539520264, + 0.16579997539520264, + 0.16579997539520264, + 0.1658000946044922, + 0.16589999198913574, + 0.16589999198913574, + 0.16589999198913574, + 0.16589999198913574, + 0.16589999198913574, + 0.1659001111984253, + 0.16600000858306885, + 0.16600000858306885, + 0.16600000858306885, + 0.1660999059677124, + 0.1660999059677124, + 0.16610002517700195, + 0.1661999225616455, + 0.1661999225616455, + 0.16620004177093506, + 0.1662999391555786, + 0.16630005836486816, + 0.16639995574951172, + 0.16649997234344482, + 0.16649997234344482, + 0.16649997234344482, + 0.16650009155273438, + 0.16659998893737793, + 0.16659998893737793, + 0.16659998893737793, + 0.16659998893737793, + 0.16660010814666748, + 0.16670000553131104, + 0.16670000553131104, + 0.16680002212524414, + 0.16680002212524414, + 0.16680002212524414, + 0.16680002212524414, + 0.16680002212524414, + 0.1668999195098877, + 0.16690003871917725, + 0.16690003871917725, + 0.1669999361038208, + 0.16700005531311035, + 0.16700005531311035, + 0.1670999526977539, + 0.1670999526977539, + 0.1670999526977539, + 0.167199969291687, + 0.167199969291687, + 0.16720008850097656, + 0.16729998588562012, + 0.16729998588562012, + 0.16729998588562012, + 0.16740000247955322, + 0.16740000247955322, + 0.16740000247955322, + 0.16759991645812988, + 0.16760003566741943, + 0.16760003566741943, + 0.167699933052063, + 0.16770005226135254, + 0.16770005226135254, + 0.16780006885528564, + 0.16780006885528564, + 0.1678999662399292, + 0.16790008544921875, + 0.16790008544921875, + 0.1679999828338623, + 0.1679999828338623, + 0.1679999828338623, + 0.1680999994277954, + 0.1680999994277954, + 0.16820001602172852, + 0.16820001602172852, + 0.16820001602172852, + 0.16829991340637207, + 0.16830003261566162, + 0.16830003261566162, + 0.16830003261566162, + 0.16830003261566162, + 0.16840004920959473, + 0.16849994659423828, + 0.16849994659423828, + 0.16849994659423828, + 0.16850006580352783, + 0.1685999631881714, + 0.1686999797821045, + 0.1687999963760376, + 0.16909992694854736, + 0.16910004615783691, + 0.16919994354248047, + 0.16919994354248047, + 0.16919994354248047, + 0.16920006275177002, + 0.16939997673034668, + 0.16939997673034668, + 0.16949999332427979, + 0.16949999332427979, + 0.1700000762939453, + 0.17009997367858887, + 0.17010009288787842, + 0.17010009288787842, + 0.17010009288787842, + 0.17019999027252197, + 0.17019999027252197, + 0.17030000686645508, + 0.1705000400543213, + 0.1705000400543213, + 0.17059993743896484, + 0.1707000732421875, + 0.1708000898361206, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17089998722076416, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17100000381469727, + 0.17110002040863037, + 0.17119991779327393, + 0.1714000701904297, + 0.17149996757507324, + 0.17159998416900635, + 0.17159998416900635, + 0.17170000076293945, + 0.17170000076293945, + 0.17170000076293945, + 0.17180001735687256, + 0.17190003395080566, + 0.17199993133544922, + 0.1726999282836914, + 0.17299997806549072, + 0.17309999465942383, + 0.17310011386871338, + 0.17320001125335693, + 0.17340004444122314, + 0.1735999584197998, + 0.174299955368042, + 0.17430007457733154, + 0.1744999885559082, + 0.1744999885559082, + 0.17480003833770752, + 0.17489993572235107, + 0.17499995231628418, + 0.1754000186920166, + 0.17579996585845947, + 0.17599999904632568, + 0.17639994621276855, + 0.17659997940063477, + 0.17669999599456787, + 0.1772000789642334, + 0.17739999294281006, + 0.1774001121520996, + 0.17779994010925293, + 0.17799997329711914, + 0.17890000343322754, + 0.1799999475479126, + 0.18069994449615479, + 0.1811000108718872, + 0.1818000078201294, + 0.1821000576019287, + 0.18259990215301514, + 0.1827000379562378, + 0.1828000545501709, + 0.18309998512268066, + 0.18320000171661377, + 0.18359994888305664, + 0.18379998207092285, + 0.18400001525878906, + 0.18400001525878906, + 0.18400001525878906, + 0.18419992923736572, + 0.18420004844665527, + 0.18439996242523193, + 0.18449997901916504, + 0.18459999561309814, + 0.18459999561309814, + 0.18499994277954102, + 0.18500006198883057, + 0.18510007858276367, + 0.18519997596740723, + 0.18519997596740723, + 0.18550002574920654, + 0.18560004234313965, + 0.18560004234313965, + 0.1856999397277832, + 0.18599998950958252, + 0.18610000610351562, + 0.18620002269744873, + 0.18620002269744873, + 0.18650007247924805, + 0.1865999698638916, + 0.18709993362426758, + 0.18719995021820068, + 0.18790006637573242, + 0.1883000135421753, + 0.18870007991790771, + 0.18879997730255127, + 0.18879997730255127, + 0.18889999389648438, + 0.1892000436782837, + 0.1893000602722168, + 0.18970000743865967, + 0.18990004062652588, + 0.19000005722045898, + 0.19019997119903564, + 0.1902000904083252, + 0.19029998779296875, + 0.19059991836547852, + 0.19110000133514404, + 0.19130003452301025, + 0.19130003452301025, + 0.19130003452301025, + 0.1913999319076538, + 0.19149994850158691, + 0.19159996509552002, + 0.19179999828338623, + 0.1919999122619629, + 0.19360005855560303, + 0.1938999891281128, + 0.19459998607635498, + 0.19529998302459717, + 0.19550001621246338, + 0.19620001316070557, + 0.19700002670288086, + 0.19700002670288086, + 0.19809997081756592, + 0.19910001754760742, + 0.2003999948501587, + 0.20159995555877686, + 0.2023000717163086, + 0.2031000852584839, + 0.20450007915496826, + 0.20459997653961182, + 0.20530009269714355, + 0.20560002326965332, + 0.20939993858337402, + 0.21050000190734863, + 0.21090006828308105, + 0.21130001544952393, + 0.21130001544952393, + 0.2135000228881836, + 0.21510004997253418, + 0.21919989585876465, + 0.21960008144378662, + 0.22089993953704834, + 0.22249996662139893, + 0.22280001640319824, + 0.22339999675750732, + 0.22360002994537354, + 0.2238999605178833, + 0.22630000114440918, + 0.23009991645812988, + 0.23010003566741943, + 0.2310999631881714, + 0.23350000381469727, + 0.23469996452331543, + 0.23559999465942383, + 0.23580002784729004, + 0.23959994316101074, + 0.24030005931854248, + 0.24160003662109375, + 0.2452000379562378, + 0.24650001525878906, + 0.24900007247924805, + 0.25189995765686035, + 0.25400006771087646, + 0.25440001487731934, + 0.25710010528564453, + 0.25989997386932373, + 0.26590001583099365, + 0.27400004863739014, + 0.274899959564209, + 0.2868000268936157, + 0.28859996795654297, + 0.2979999780654907, + 0.30119991302490234, + 0.30139994621276855, + 0.30169999599456787, + 0.3019000291824341, + 0.3044999837875366, + 0.30670011043548584, + 0.307400107383728, + 0.3075000047683716, + 0.3086000680923462, + 0.30879998207092285, + 0.31080007553100586, + 0.3114999532699585, + 0.3116999864578247, + 0.3116999864578247, + 0.31499993801116943, + 0.3180999755859375, + 0.3186999559402466, + 0.3190000057220459, + 0.32450008392333984, + 0.3263000249862671, + 0.32749998569488525, + 0.32990002632141113, + 0.3329000473022461, + 0.3377000093460083, + 0.3442000150680542, + 0.3511000871658325, + 0.3574000597000122, + 0.3661000728607178, + 0.37940001487731934, + 0.3852999210357666, + 0.38680005073547363, + 0.3913000822067261, + 0.4007999897003174, + 0.4017000198364258, + 0.42159998416900635, + 0.42180001735687256, + 0.4247000217437744, + 0.4373999834060669, + 0.44599997997283936, + 0.4521000385284424, + 0.5166999101638794, + 0.5379999876022339, + 0.5414000749588013, + 0.5415999889373779, + 0.547700047492981, + 0.5533000230789185, + 0.5535999536514282, + 0.5551999807357788, + 0.5552999973297119, + 0.5585999488830566, + 0.559999942779541, + 0.5721999406814575, + 0.5973999500274658, + 0.5995000600814819, + 0.6072999238967896, + 0.6270999908447266, + 0.6296999454498291, + 0.6327000856399536, + 0.6365000009536743, + 0.6449999809265137, + 0.6625000238418579, + 0.6634999513626099, + 0.6676000356674194, + 0.6762000322341919, + 0.697700023651123, + 0.8144000768661499, + 1.1109000444412231, + 1.9749000072479248, + 2.2173999547958374, + 2.6092000007629395 + ], + "middleValue": 0.16220003366470337, + "timestamp": "2023-10-28T23:35:11.981Z" } ] \ No newline at end of file diff --git a/src/alg/TimeDistribution.ts b/src/alg/TimeDistribution.ts index 628bb72..62bafd7 100644 --- a/src/alg/TimeDistribution.ts +++ b/src/alg/TimeDistribution.ts @@ -1,5 +1,5 @@ import { Group, Groups } from '../Class/Groups'; -import { PriorityQueue } from '../Class/PriorityQueue'; +// import { PriorityQueue } from '../Class/PriorityQueue'; import PollQuestion from '../types/Polls'; import Student from '../types/Student'; import createGraph from './TimeDistribution/CreateGraph'; @@ -21,14 +21,6 @@ function buildGroupsByPaths( return groups.getAll(); } -function createPQ(groups: Group[]): PriorityQueue { - const pq = new PriorityQueue(); - groups.forEach((group) => { - pq.enqueue(group, group.paths.length); - }); - return pq; -} - function main( items: Item[], students: Student[], @@ -38,9 +30,7 @@ function main( let groups = buildGroupsByPaths(polls, students); const g = createGraph(items); groups = findPathsForTheGroups(groups, items, g, project); - const pq: PriorityQueue = createPQ(groups); - distributeStudentsToPaths(pq, items, groups); - + distributeStudentsToPaths(items, groups); allocateGroupsToItems(items, groups); return items; diff --git a/src/alg/TimeDistribution/DistributeStudents.ts b/src/alg/TimeDistribution/DistributeStudents.ts index 53ef76f..1ce239e 100644 --- a/src/alg/TimeDistribution/DistributeStudents.ts +++ b/src/alg/TimeDistribution/DistributeStudents.ts @@ -1,116 +1,79 @@ -import { PriorityQueue } from '../../Class/PriorityQueue'; -import Group from '../../types/Group'; import Item from '../../types/Item'; -import { getMaxAvailableCapacity } from './FindPaths'; +import Group from './../../types/Group'; -const MAX_ITERATIONS = 2000; -let currentIterationCount = 0; -let failed = false; +function distributeStudentsToPaths(items: Item[], groups: Group[]) { + setGroupsWithOnePath(groups, items); + const changableGroups = groups.filter((group) => group.paths.length > 1); + let relevantItems = findRelevantItems(items, changableGroups); -function createRecordOfCurrentUsedCapacity( - groups: Group[] -): Record { - const record: Record = {}; - groups.forEach((group) => { - group.paths.forEach((path) => { - path.path.forEach((pathItem) => { - record[pathItem._id] = - (record[pathItem._id] || 0) + - path.valueForTestingStudentDistribution; - }); - }); - }); - return record; + relevantItems = filterOutItemsWithoutCapacityProblems( + relevantItems, + amountRelevantStudents(changableGroups) + ); + distributeWithMinimumCapacity(changableGroups, relevantItems); } -function distributeStudentsToPaths( - pq: PriorityQueue, - items: Item[], - groups: Group[] -): void { - while (!pq.isEmpty()) { - const group = pq.dequeue(); - let amountStudentsRemaining = group.studentIds.length; - +function distributeWithMinimumCapacity( + changableGroups: Group[], + relevantItems: Item[] +) { + changableGroups.forEach((group) => { group.paths.forEach((path) => { - const min = Math.min( - getMaxAvailableCapacity(path.path) - - path.valueForTestingStudentDistribution, - amountStudentsRemaining + const minCapacity = Math.min( + ...path.path.map((pathItem) => pathItem.updatedGroupCapacity) ); - amountStudentsRemaining -= min; - path.valueForTestingStudentDistribution - ? (path.valueForTestingStudentDistribution = min) - : (path.valueForTestingStudentDistribution += min); + path.valueForTestingStudentDistribution = minCapacity; + relevantItems.forEach((item) => { + if (path.path.includes(item)) { + item.updatedGroupCapacity -= minCapacity; + } + }); }); - } + }); +} - checkForExceedingGroupCapacities(groups, items); +function amountRelevantStudents(changableGroups: Group[]) { + return changableGroups.reduce( + (total, group) => total + group.studentIds.length, + 0 + ); } -function checkForExceedingGroupCapacities( - groups: Group[], - items: Item[] -): void { - const record = createRecordOfCurrentUsedCapacity(groups); - items.forEach((item) => { - if (record[item._id] > item.groupCapazity) { - redistribute( - item, - record[item._id] - item.groupCapazity, - items, - groups - ); - } +function findRelevantItems(items: Item[], changableGroups: Group[]): Item[] { + return items.filter((item) => { + let counter = 0; + changableGroups.forEach((group) => { + group.paths.forEach((path) => { + if (path.path.includes(item)) { + counter++; + } + }); + }); + return counter > 0; }); } -function redistribute( - failedId: Item, - excessStudents: number, - items: Item[], - groups: Group[] -): boolean { - groups.forEach((group) => { - const alternativePaths = group.paths.filter( - (pathItem) => !pathItem.path.includes(failedId) - ); - - const failedGroupPaths = group.paths.filter((pathItem) => - pathItem.path.includes(failedId) - ); - - if (failedGroupPaths.length !== 0 && excessStudents !== 0) { - failedGroupPaths.sort( - (a, b) => - b.valueForTestingStudentDistribution - - a.valueForTestingStudentDistribution - ); - - failedGroupPaths.forEach((failedPath) => { - const removeCount = - failedPath.valueForTestingStudentDistribution - - excessStudents; - failedPath.valueForTestingStudentDistribution = removeCount; - - let remainingExcessStudentsCount = excessStudents; - alternativePaths.forEach((alternativePath) => { - alternativePath.valueForTestingStudentDistribution += - remainingExcessStudentsCount; - remainingExcessStudentsCount = 0; - }); +function filterOutItemsWithoutCapacityProblems( + relevantItems: Item[], + amountRelevantStudents: number +) { + return relevantItems.filter( + (item) => item.updatedGroupCapacity < amountRelevantStudents + ); +} - excessStudents = remainingExcessStudentsCount; +function setGroupsWithOnePath(groups: Group[], items: Item[]) { + groups.forEach((group) => { + if (group.paths.length === 1) { + group.paths[0].valueForTestingStudentDistribution = + group.studentIds.length; + items.forEach((item) => { + if (group.paths[0].path.includes(item)) { + item.updatedGroupCapacity -= group.studentIds.length; + } }); } }); - currentIterationCount++; - if (currentIterationCount > MAX_ITERATIONS) { - failed = true; - } else { - checkForExceedingGroupCapacities(groups, items); - } - return failed; } export { distributeStudentsToPaths }; diff --git a/src/data/Items.ts b/src/data/Items.ts index 8392a84..f2e16eb 100644 --- a/src/data/Items.ts +++ b/src/data/Items.ts @@ -9,6 +9,7 @@ const items: Item[] = [ eventId: 'group1', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id2', @@ -18,6 +19,7 @@ const items: Item[] = [ eventId: 'group2', studentIds: [], groupCapazity: 2, + updatedGroupCapacity: 2, }, { _id: 'id3', @@ -27,6 +29,7 @@ const items: Item[] = [ eventId: 'group3', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id4', @@ -36,6 +39,7 @@ const items: Item[] = [ eventId: 'solo3', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id5', @@ -45,6 +49,7 @@ const items: Item[] = [ eventId: 'group2', studentIds: [], groupCapazity: 98, + updatedGroupCapacity: 98, }, { _id: 'id6', @@ -54,6 +59,7 @@ const items: Item[] = [ eventId: 'group1', studentIds: [], groupCapazity: 50, + updatedGroupCapacity: 50, }, { _id: 'poll1', @@ -63,6 +69,7 @@ const items: Item[] = [ eventId: 'poll1', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id7', @@ -72,6 +79,7 @@ const items: Item[] = [ eventId: 'solo4', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id8', @@ -81,6 +89,7 @@ const items: Item[] = [ eventId: 'solo5', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { @@ -91,6 +100,7 @@ const items: Item[] = [ eventId: 'solo2', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id10', @@ -100,6 +110,7 @@ const items: Item[] = [ eventId: 'group3', studentIds: [], groupCapazity: 98, + updatedGroupCapacity: 98, }, { _id: 'id11', @@ -109,6 +120,7 @@ const items: Item[] = [ eventId: 'poll2', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, ]; diff --git a/src/index.ts b/src/index.ts index 8d6e041..b22d60d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,7 +20,10 @@ console.timeEnd(); // O(n * m); // getStudents(projectId).forEach((student) => { -// const length = findItemsByStudentId(student._id, getItems(projectId)).length; -// if (length != 0) return; -// console.log("\n" + student._id + ": " + length); +// const length = findItemsByStudentId( +// student._id, +// getItems(projectId) +// ).length; +// if (length != 0) return; +// console.log('\n' + student._id + ': ' + length); // }); diff --git a/src/types/Item.ts b/src/types/Item.ts index 5f20122..8bdbc4b 100644 --- a/src/types/Item.ts +++ b/src/types/Item.ts @@ -1,11 +1,12 @@ interface Item { - _id: string; - title: string; - startTime: Date; - endTime: Date; - eventId: string; - studentIds: string[]; - groupCapazity: number; + _id: string; + title: string; + startTime: Date; + endTime: Date; + eventId: string; + studentIds: string[]; + groupCapazity: number; + updatedGroupCapacity: number; } export default Item; diff --git a/test/data.ts b/test/data.ts index 343d9be..49687e0 100644 --- a/test/data.ts +++ b/test/data.ts @@ -12,6 +12,7 @@ const items: Item[] = [ eventId: 'group1', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id2', @@ -21,6 +22,7 @@ const items: Item[] = [ eventId: 'group2', studentIds: [], groupCapazity: 50, + updatedGroupCapacity: 50, }, { _id: 'id3', @@ -30,6 +32,7 @@ const items: Item[] = [ eventId: 'group3', studentIds: [], groupCapazity: 50, + updatedGroupCapacity: 50, }, { _id: 'id4', @@ -39,6 +42,7 @@ const items: Item[] = [ eventId: 'solo3', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id5', @@ -48,6 +52,7 @@ const items: Item[] = [ eventId: 'group2', studentIds: [], groupCapazity: 50, + updatedGroupCapacity: 50, }, { _id: 'id6', @@ -57,6 +62,7 @@ const items: Item[] = [ eventId: 'group1', studentIds: [], groupCapazity: 50, + updatedGroupCapacity: 50, }, { _id: 'poll1', @@ -66,6 +72,7 @@ const items: Item[] = [ eventId: 'poll1', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id7', @@ -75,6 +82,7 @@ const items: Item[] = [ eventId: 'solo4', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id8', @@ -84,6 +92,7 @@ const items: Item[] = [ eventId: 'solo5', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { @@ -94,6 +103,7 @@ const items: Item[] = [ eventId: 'solo2', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, { _id: 'id10', @@ -103,6 +113,7 @@ const items: Item[] = [ eventId: 'group3', studentIds: [], groupCapazity: 50, + updatedGroupCapacity: 50, }, { _id: 'id11', @@ -112,6 +123,7 @@ const items: Item[] = [ eventId: 'poll2', studentIds: [], groupCapazity: 100, + updatedGroupCapacity: 100, }, ];