From 7ed441362440d63fd4a5dc8f494fa077275cf4f1 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 e545e28..bdb1ac3 100644 --- a/DAS/validator.py +++ b/DAS/validator.py @@ -55,9 +55,7 @@ class Node: 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)