Source code for sympy.polys.polyerrors

"""Definitions of common exceptions for `polys` module. """

from __future__ import print_function, division

from sympy.utilities import public

@public
[docs]class BasePolynomialError(Exception): """Base class for polynomial related exceptions. """ def new(self, *args): raise NotImplementedError("abstract base class")
@public
[docs]class ExactQuotientFailed(BasePolynomialError): def __init__(self, f, g, dom=None): self.f, self.g, self.dom = f, g, dom def __str__(self): # pragma: no cover from sympy.printing.str import sstr if self.dom is None: return "%s does not divide %s" % (sstr(self.g), sstr(self.f)) else: return "%s does not divide %s in %s" % (sstr(self.g), sstr(self.f), sstr(self.dom)) def new(self, f, g): return self.__class__(f, g, self.dom)
@public class PolynomialDivisionFailed(BasePolynomialError): def __init__(self, f, g, domain): self.f = f self.g = g self.domain = domain def __str__(self): if self.domain.is_EX: msg = "You may want to use a different simplification algorithm. Note " \ "that in general it's not possible to guarantee to detect zero " \ "in this domain." elif not self.domain.is_Exact: msg = "Your working precision or tolerance of computations may be set " \ "improperly. Adjust those parameters of the coefficient domain " \ "and try again." else: msg = "Zero detection is guaranteed in this coefficient domain. This " \ "may indicate a bug in SymPy or the domain is user defined and " \ "doesn't implement zero detection properly." return "couldn't reduce degree in a polynomial division algorithm when " \ "dividing %s by %s. This can happen when it's not possible to " \ "detect zero in the coefficient domain. The domain of computation " \ "is %s. %s" % (self.f, self.g, self.domain, msg) @public
[docs]class OperationNotSupported(BasePolynomialError): def __init__(self, poly, func): self.poly = poly self.func = func def __str__(self): # pragma: no cover return "`%s` operation not supported by %s representation" % (self.func, self.poly.rep.__class__.__name__)
@public
[docs]class HeuristicGCDFailed(BasePolynomialError): pass
class ModularGCDFailed(BasePolynomialError): pass @public
[docs]class HomomorphismFailed(BasePolynomialError): pass
@public
[docs]class IsomorphismFailed(BasePolynomialError): pass
@public
[docs]class ExtraneousFactors(BasePolynomialError): pass
@public
[docs]class EvaluationFailed(BasePolynomialError): pass
@public
[docs]class RefinementFailed(BasePolynomialError): pass
@public
[docs]class CoercionFailed(BasePolynomialError): pass
@public
[docs]class NotInvertible(BasePolynomialError): pass
@public
[docs]class NotReversible(BasePolynomialError): pass
@public
[docs]class NotAlgebraic(BasePolynomialError): pass
@public
[docs]class DomainError(BasePolynomialError): pass
@public
[docs]class PolynomialError(BasePolynomialError): pass
@public
[docs]class UnificationFailed(BasePolynomialError): pass
@public
[docs]class GeneratorsError(BasePolynomialError): pass
@public
[docs]class GeneratorsNeeded(GeneratorsError): pass
@public
[docs]class ComputationFailed(BasePolynomialError): def __init__(self, func, nargs, exc): self.func = func self.nargs = nargs self.exc = exc def __str__(self): return "%s(%s) failed without generators" % (self.func, ', '.join(map(str, self.exc.exprs[:self.nargs])))
@public
[docs]class UnivariatePolynomialError(PolynomialError): pass
@public
[docs]class MultivariatePolynomialError(PolynomialError): pass
@public
[docs]class PolificationFailed(PolynomialError): def __init__(self, opt, origs, exprs, seq=False): if not seq: self.orig = origs self.expr = exprs self.origs = [origs] self.exprs = [exprs] else: self.origs = origs self.exprs = exprs self.opt = opt self.seq = seq def __str__(self): # pragma: no cover if not self.seq: return "can't construct a polynomial from %s" % str(self.orig) else: return "can't construct polynomials from %s" % ', '.join(map(str, self.origs))
@public
[docs]class OptionError(BasePolynomialError): pass
@public
[docs]class FlagError(OptionError): pass