Skip to content

Commit 375611b

Browse files
authored
Merge pull request #868 from romanovzky/fix-sympy-mappings-order
fix: change sympy mappings ordering
2 parents 871a710 + 3757174 commit 375611b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pysr/export_sympy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ def pysr2sympy(
8888
feature_names_in = []
8989
local_sympy_mappings = {
9090
**create_sympy_symbols_map(feature_names_in),
91-
**(extra_sympy_mappings if extra_sympy_mappings is not None else {}),
9291
**sympy_mappings,
92+
**(extra_sympy_mappings if extra_sympy_mappings is not None else {}),
9393
}
9494

9595
try:

0 commit comments

Comments
 (0)