From e6b33cb542c2edfbf2be64a0aca169f18477fd58 Mon Sep 17 00:00:00 2001 From: Sudipta Basak <41054678+sudiptab2100@users.noreply.github.com> Date: Fri, 16 Feb 2024 15:42:52 +0530 Subject: [PATCH] Fixed results string in shape.py --- DAS/shape.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DAS/shape.py b/DAS/shape.py index 0af4c10..c8ace30 100644 --- a/DAS/shape.py +++ b/DAS/shape.py @@ -29,9 +29,9 @@ class Shape: """Returns a printable representation of the shape""" shastr = "" shastr += "bsrn-"+str(self.blockSizeR) - shastr += "bsrk-"+str(self.blockSizeRK) - shastr += "bscn-"+str(self.blockSizeC) - shastr += "bsck-"+str(self.blockSizeCK) + shastr += "-bsrk-"+str(self.blockSizeRK) + shastr += "-bscn-"+str(self.blockSizeC) + shastr += "-bsck-"+str(self.blockSizeCK) shastr += "-nn-"+str(self.numberNodes) shastr += "-fm-"+str(self.failureModel) shastr += "-fr-"+str(self.failureRate)