Skip to content

Commit

Permalink
fix missing super()._simplified() in Mod (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
joostvanzwieten committed Mar 13, 2024
2 parents 43b9439 + 4b18eb3 commit 64c239f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion nutils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'Numerical Utilities for Finite Element Analysis'

__version__ = version = '9a20'
__version__ = version = '9a21'
version_name = 'jook-sing'
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 64c239f

Please sign in to comment.