Skip to content

Commit

Permalink
fix missing super()._simplified() in Mod
Browse files Browse the repository at this point in the history
  • Loading branch information
joostvanzwieten committed Mar 13, 2024
1 parent 43b9439 commit 4b18eb3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nutils/evaluable.py
Original file line number Diff line number Diff line change
Expand Up @@ -2416,6 +2416,7 @@ def _simplified(self):
lower_dividend, upper_dividend = dividend._intbounds
if 0 <= lower_dividend and upper_dividend < lower_divisor:
return dividend
return super()._simplified()


class ArcTan2(Pointwise):
Expand Down

0 comments on commit 4b18eb3

Please sign in to comment.