From e8c27531bd9a44cec786465f2701422250d7ee62 Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Thu, 7 Dec 2023 12:39:15 +0100 Subject: [PATCH] not all nodes sample in both dimensions Signed-off-by: Csaba Kiraly --- DAS/validator.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/DAS/validator.py b/DAS/validator.py index 2b489b8..5c9b0d5 100644 --- a/DAS/validator.py +++ b/DAS/validator.py @@ -55,9 +55,7 @@ class Validator: self.sendQueue = deque() self.amIproposer = amIproposer self.logger = logger - if self.shape.chiR < 1 and self.shape.chiC < 1: - self.logger.error("Chi has to be greater than 0", extra=self.format) - elif self.shape.chiC > self.shape.blockSizeR: + if self.shape.chiC > self.shape.blockSizeR: self.logger.error("ChiC has to be smaller than %d" % self.shape.blockSizeR, extra=self.format) elif self.shape.chiR > self.shape.blockSizeC: self.logger.error("ChiR has to be smaller than %d" % self.shape.blockSizeC, extra=self.format)