You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
""" Unification in SymPy
|
|
|
|
See sympy.unify.core docstring for algorithmic details
|
|
|
|
See http://matthewrocklin.com/blog/work/2012/11/01/Unification/ for discussion
|
|
"""
|
|
|
|
from .usympy import unify, rebuild
|
|
from .rewrite import rewriterule
|
|
|
|
__all__ = [
|
|
'unify', 'rebuild',
|
|
|
|
'rewriterule',
|
|
]
|