You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mathematical Constants is now its own module/section. Contants have been filled out.
46
+
These constants have been added:
47
+
48
+
- ``Catalan``
49
+
- ``Glaisher``
50
+
- ``Khinchin``
51
+
- ``Degree``
52
+
- ``GoldenRatio``
53
+
- ``Khinchin``
54
+
55
+
56
+
Many of these and the existing constants are computable via mpmath, numpy, or sympy.
57
+
58
+
59
+
Settings through WL variables
60
+
-----------------------------
61
+
62
+
Certain aspects of the configuration of the kernel are now controlled by variables, defined in /autoad/settings.m
63
+
64
+
- ``$GetTrace`` (``False`` by default). Defines if when a WL module is load through ``Get``, definitions will be traced (for debug).
65
+
- ``$PreferredBackendMethod`` Set this do whether to use mpmath, numpy or Sympy for numeric and symbolic constants and methods when there is s choice (``"sympy"`` by default) (see #1124)
66
+
67
+
68
+
Enhancements
69
+
------------
70
+
71
+
- Add ``Method`` option "mpmath" to compute ``Eignevalues`` using mpmath (#1115).
72
+
- Improving the support for OptionValue and OptionsPattern (#1113)
73
+
74
+
75
+
Bug Fixes
76
+
---------
77
+
78
+
There have been numerous bug is driven by working on Combinatorica V0.9 and CellsToTeX.
Copy file name to clipboardExpand all lines: mathics/autoload/settings.m
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,3 +5,8 @@
5
5
Settings`$TraceGet::usage="If this Boolean variable is set True, 'Get' traces the lines it reads that start a new expression";
6
6
Settings`$TraceGet=False
7
7
Unprotect[Settings`$TraceGet]
8
+
9
+
10
+
Settings`$PreferredBackendMethod::usage="Set this do whether to use mpmath, numpy or Sympy for numeric and symbolic constants and methods when there is s choice";
0 commit comments