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.

12 lines
348 B

6 months ago
  1. from sympy.utilities.exceptions import sympy_deprecation_warning
  2. sympy_deprecation_warning(
  3. """
  4. sympy.core.trace is deprecated. Use sympy.physics.quantum.trace
  5. instead.
  6. """,
  7. deprecated_since_version="1.10",
  8. active_deprecations_target="sympy-core-trace-deprecated",
  9. )
  10. from sympy.physics.quantum.trace import Tr # noqa:F401