From 012c9d315c8dd88459c55d8874fe3f5b9d1d8313 Mon Sep 17 00:00:00 2001 From: "Johan S. R. Nielsen" Date: Sat, 30 Jul 2016 19:06:23 +0200 Subject: [PATCH] rm non-general sanity check --- src/sage/rings/polynomial/skew_polynomial_ring.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sage/rings/polynomial/skew_polynomial_ring.py b/src/sage/rings/polynomial/skew_polynomial_ring.py index bf5146d5c2b..6c9f7dbc70d 100644 --- a/src/sage/rings/polynomial/skew_polynomial_ring.py +++ b/src/sage/rings/polynomial/skew_polynomial_ring.py @@ -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)):