From 1019a4d786bf0c55cc6c56f4c6b757095dc5b637 Mon Sep 17 00:00:00 2001 From: Les De Ridder Date: Thu, 23 Feb 2017 20:05:34 +0100 Subject: [PATCH] Input data: part 4 --- input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input.py b/input.py index 0d40646..6c53625 100755 --- a/input.py +++ b/input.py @@ -15,7 +15,7 @@ requestDescriptionCount = int(tokenised[0][2]) cacheCount = int(tokenised[0][3]) cacheSize = int(tokenised[0][4]) -videoSizes = tokenised[1] +videoSizes = [int(video) for video in tokenised[1]] endpointDatacenterLatencies = [] endpointCacheLatencies = []