Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Trac #27329: actually use **kwds as promised in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrenn committed Feb 20, 2019
1 parent 6abcb72 commit 1ca3e2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sage/geometry/polyhedron/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -5144,7 +5144,8 @@ def integrate(self, polynomial, **kwds):
raise NotImplementedError("The polytope must be full-dimensional.")
else:
from sage.interfaces.latte import integrate
return integrate(self.cdd_Hrepresentation(), polynomial, cdd=True)
return integrate(self.cdd_Hrepresentation(), polynomial,
cdd=True, **kwds)

def contains(self, point):
"""
Expand Down

0 comments on commit 1ca3e2c

Please sign in to comment.