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

Commit

Permalink
rm non-general sanity check
Browse files Browse the repository at this point in the history
  • Loading branch information
johanrosenkilde committed Jul 30, 2016
1 parent b683f55 commit 012c9d3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/sage/rings/polynomial/skew_polynomial_ring.py
Original file line number Diff line number Diff line change
Expand Up @@ -800,8 +800,6 @@ def interpolation_polynomial(self, eval_pts, values, check=True):
x + t
"""
l = len(eval_pts)
if l > log(self.base_ring().order(), self.base_ring().characteristic()):
raise TypeError("number of evaluation points cannot be more than dimension of base field")
if l != len(values):
raise TypeError("number of evaluation points and values must be equal")
if l > len(set(eval_pts)):
Expand Down

0 comments on commit 012c9d3

Please sign in to comment.