Skip to content

Commit

Permalink
Merge pull request IBM#27 from IBM/patch-issue26
Browse files Browse the repository at this point in the history
FIX, ADD: kwds catchall for Negation node
  • Loading branch information
NaweedAghmad authored Jun 24, 2022
2 parents 780a1ff + 6a09c6d commit e58db69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lnn/symbolic/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,7 @@ def upward(self, **kwds) -> torch.Tensor:
None, _utils.negate_bounds(self.operand.get_facts(*groundings))
)

def downward(self) -> torch.Tensor:
def downward(self, **kwds) -> torch.Tensor:
if self.propositional:
groundings = {None}
else:
Expand Down

0 comments on commit e58db69

Please sign in to comment.