diff --git a/desdeo/emo/hooks/archivers.py b/desdeo/emo/hooks/archivers.py index cf1744e..83e5d93 100644 --- a/desdeo/emo/hooks/archivers.py +++ b/desdeo/emo/hooks/archivers.py @@ -44,7 +44,7 @@ def update(self, message: Message) -> None: message (Message): Message from the publisher. """ data = message.value - feasible_mask = (data[self.cons_symb] < 0).to_numpy().all(axis=1) + feasible_mask = (data[self.cons_symb] <= 0).to_numpy().all(axis=1) feasible_data = data.filter(feasible_mask) if self.feasible_archive is None: self.feasible_archive = feasible_data