Skip to content

Commit e207052

Browse files
committed
Add some notes regarding the coercion model
1 parent 7d83063 commit e207052

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

src/doc/en/reference/coercion/index.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -189,17 +189,17 @@ Basic Arithmetic Rules
189189
Suppose we want to add two element, a and b, whose parents are A and B
190190
respectively. When we type ``a+b`` then
191191

192-
1. If A ``is`` B, call a._add_(b)
192+
1. If A ``is`` B, call ``a._add_(b)``
193193

194-
2. If there is a coercion `\phi: B \rightarrow A`, call a._add_( `\phi` (b))
194+
2. If there is a coercion `\phi\colon B \rightarrow A`, call ``a._add_(`` `\phi` ``(b))``
195195

196-
3. If there is a coercion `\phi: A \rightarrow B`, call `\phi` (a)._add_(b)
196+
3. If there is a coercion `\phi\colon A \rightarrow B`, call `\phi` ``(a)._add_(b)``
197197

198-
4. Look for `Z` such that there is a coercion `\phi_A: A \rightarrow Z` and
199-
`\phi_B: B \rightarrow Z`, call `\phi_A` (a)._add_( `\phi_B` (b))
198+
4. Look for `Z` such that there is a coercion `\phi_A\colon A \rightarrow Z` and
199+
`\phi_B\colon B \rightarrow Z`, call `\phi_A` ``(a)._add_(`` `\phi_B` ``(b))``
200200

201201
These rules are evaluated in order; therefore if there are coercions
202-
in both directions, then the parent of a._add_b is A -- the parent
202+
in both directions, then the parent of ``a._add_(b)`` is A -- the parent
203203
of the left-hand operand is used in such cases.
204204

205205
The same rules are used for subtraction, multiplication, and

src/doc/en/thematic_tutorials/coercion_and_categories.rst

+12-3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ Outline
4343
must not be overridden. Instead, the actual implementation should be in
4444
*single underscore* methods, such as ``_add_`` or ``_mul_``.
4545

46+
Exceptions are ``__lshift__``, ``__rshift__``, ``__invert__``,
47+
where no default implementation is provided.
48+
49+
Also note that if the class is implemented in Cython, currently
50+
SageMath uses a legacy behavior with ``c_api_binop_methods=True``,
51+
so the ``self`` argument may not have the correct type
52+
in ``__lshift__`` and ``__rshift__``. See
53+
`Cython documentation <https://docs.cython.org/en/latest/src/userguide/special_methods.html#arithmetic-methods>`_.
54+
4655
- Turn your parent structure into an object of a category
4756

4857
Declare the category during initialisation\---Your parent structure will
@@ -177,8 +186,8 @@ This basic implementation is formed by the following steps:
177186

178187
- Python uses double\--underscore methods for arithmetic methods and string
179188
representations. Sage's base classes often have a default implementation,
180-
and it is requested to **implement SINGLE underscore methods _repr_, and
181-
similarly _add_, _mul_ etc.**
189+
and it is requested to **implement SINGLE underscore methods ``_repr_``, and
190+
similarly ``_add_``, ``_mul_`` etc.**
182191

183192
- You are encouraged to **make your parent "unique"**. That's to say, parents
184193
should only evaluate equal if they are identical. Sage provides frameworks
@@ -261,7 +270,7 @@ considerations:
261270
from those already present in Sage, we use a different string representation.
262271

263272
- Arithmetic is implemented in single\--underscore method ``_add_``, ``_mul_``,
264-
etc. **We do not override the default double underscore __add__, __mul__**,
273+
etc. **We do not override the default double underscore ``__add__``, ``__mul__``**,
265274
since otherwise, we could not use Sage's coercion model.
266275

267276
- Comparisons can be implemented using ``_richcmp_``.

0 commit comments

Comments
 (0)