From 9bd3a698e4abb679be1d47cf88fb9214d6472b01 Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Wed, 12 Jul 2023 14:03:32 +0200 Subject: [PATCH] visualizer: workaround for R/C separation Signed-off-by: Csaba Kiraly --- DAS/visualizer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DAS/visualizer.py b/DAS/visualizer.py index cf095c1..8aa0c91 100644 --- a/DAS/visualizer.py +++ b/DAS/visualizer.py @@ -32,12 +32,12 @@ class Visualizer: tree = ET.parse(os.path.join(self.folderPath, filename)) root = tree.getroot() run = int(root.find('run').text) - blockSize = int(root.find('blockSize').text) + blockSize = int(root.find('blockSizeR').text) # TODO: maybe we want both dimensions failureRate = int(root.find('failureRate').text) numberNodes = int(root.find('numberNodes').text) class1ratio = float(root.find('class1ratio').text) netDegree = int(root.find('netDegree').text) - chi = int(root.find('chi').text) + chi = int(root.find('chiR').text) # TODO: maybe we want both dimensions vpn1 = int(root.find('vpn1').text) vpn2 = int(root.find('vpn2').text) bwUplinkProd = int(root.find('bwUplinkProd').text)