Skip to content

Commit

Permalink
Merge pull request #1296 from skirpichev/univ-order
Browse files Browse the repository at this point in the history
Drop multivariate Order notion
  • Loading branch information
skirpichev committed Mar 4, 2023
2 parents 9289ae0 + 428d4b5 commit 24e5ab3
Show file tree
Hide file tree
Showing 28 changed files with 279 additions and 534 deletions.
2 changes: 1 addition & 1 deletion diofant/calculus/limits.py
Expand Up @@ -154,7 +154,7 @@ def doit(self, **hints):
if not e.has(z):
return e

if e.has(Order) and (order := e.getO()) and (z, z0) in order.args[1:]:
if e.has(Order) and (order := e.getO()) and z == order.var and z0 == order.point:
order = limit(order.expr, z, z0, dir)
e = e.removeO() + order

Expand Down

0 comments on commit 24e5ab3

Please sign in to comment.