Skip to content

Commit 64ae148

Browse files
committed
ENH: export more aliases
1 parent 2cdfd3d commit 64ae148

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
"qrules.topology.EdgeType": "typing.TypeVar",
6363
"qrules.topology.NodeType": "typing.TypeVar",
6464
"sp.acos": "sympy.functions.elementary.trigonometric.acos",
65+
"sp.Basic": "sympy.core.basic.Basic",
6566
"sp.Expr": "sympy.core.expr.Expr",
6667
"sp.Indexed": "sympy.tensor.indexed.Indexed",
6768
"sp.Rational": "sympy.core.numbers.Rational",

src/ampform_dpd/io/cached.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import cloudpickle
99
from ampform.sympy._cache import cache_to_disk # noqa: PLC2701
10-
from ampform.sympy.cached import doit, unfold, xreplace
10+
from ampform.sympy.cached import doit, simplify, subs, trigsimp, unfold, xreplace
1111
from frozendict import frozendict
1212
from tensorwaves.function.sympy import create_function, create_parametrized_function
1313

@@ -24,6 +24,9 @@
2424
__all__ = [
2525
"doit",
2626
"lambdify",
27+
"simplify",
28+
"subs",
29+
"trigsimp",
2730
"unfold",
2831
"xreplace",
2932
]

0 commit comments

Comments
 (0)