Viewing File: /home/ubuntu/combine_ai/combine/lib/python3.10/site-packages/sympy/core/coreerrors.py

"""Definitions of common exceptions for :mod:`sympy.core` module. """


class BaseCoreError(Exception):
    """Base class for core related exceptions. """


class NonCommutativeExpression(BaseCoreError):
    """Raised when expression didn't have commutative property. """
Back to Directory File Manager