m2m模型翻译
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.

15 lines
293 B

6 months ago
  1. """ Unification in SymPy
  2. See sympy.unify.core docstring for algorithmic details
  3. See http://matthewrocklin.com/blog/work/2012/11/01/Unification/ for discussion
  4. """
  5. from .usympy import unify, rebuild
  6. from .rewrite import rewriterule
  7. __all__ = [
  8. 'unify', 'rebuild',
  9. 'rewriterule',
  10. ]