File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed
Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 11# cython: language_level=3
22# -*- coding: utf-8 -*-
33
4+ # Note: docstring is flowed in documentation. Line breaks in the docstring will appear in the
5+ # printed output, so be carful not to add then mid-sentence.
46
57"""
6- Numeric Evaluation
8+ Numeric Evaluation and Precision
79
8- Support for numeric evaluation with arbitrary precision is just a
9- proof-of-concept.
10- Precision is not "guarded" through the evaluation process. Only
11- integer precision is supported.
10+ Support for numeric evaluation with arbitrary precision is just a proof-of-concept.
11+
12+ Precision is not "guarded" through the evaluation process. Only integer precision is supported.
1213However, things like 'N[Pi, 100]' should work as expected.
1314"""
1415from mathics .version import __version__ # noqa used in loading to check consistency.
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22
33"""
4- Patterns and Rules
4+ Rules and Patterns
5+
6+ The concept of transformation rules for arbitrary symbolic patterns is key in Mathics.
7+
8+ Also, functions can get applied or transformed depending on whether or not functions arguments match.
59
610Some examples:
711>> a + b + c /. a + b -> t
You can’t perform that action at this time.
0 commit comments