Skip to content

Commit 2e46c20

Browse files
committed
Trac #31933. Item 85: BTerm.__init__: Replace >= by \ge in all TeX formatted code
1 parent 832c80f commit 2e46c20

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/sage/rings/asymptotic/term_monoid.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4032,11 +4032,11 @@ class BTerm(TermWithCoefficient):
40324032
given by ``valid_from``.
40334033
For example, we have terms that represent functions
40344034
4035-
- bounded by `5|x|^2` for `|x| >= 3`,
4035+
- bounded by `5|x|^2` for `|x| \ge 3`,
40364036
4037-
- bounded by `42|x|^3` for `|x| >= 15` and `|y| >= 15`, or
4037+
- bounded by `42|x|^3` for `|x| \ge 15` and `|y| \ge 15`, or
40384038
4039-
- bounded by `42 |x|^3 |y|^2` for `|x| >= 10` and `|y| >= 20` (see below for the actual examples).
4039+
- bounded by `42 |x|^3 |y|^2` for `|x| \ge 10` and `|y| \ge 20` (see below for the actual examples).
40404040
40414041
INPUT:
40424042
@@ -4063,19 +4063,19 @@ class BTerm(TermWithCoefficient):
40634063
sage: T(x^2, coefficient=5, valid_from={'x': 3})
40644064
B(5*x^2, x >= 3)
40654065
4066-
This is a term bounded by `5|x|^2` for `|x| >= 3`.
4066+
This is a term bounded by `5|x|^2` for `|x| \ge 3`.
40674067
::
40684068
40694069
sage: T(x^3, coefficient=42, valid_from={'x': 15, 'y': 15})
40704070
B(42*x^3, x >= 15, y >= 15)
40714071
4072-
This is a term bounded by `42|x|^3` for `|x| >= 15` and `|y| >= 15`.
4072+
This is a term bounded by `42|x|^3` for `|x| \ge 15` and `|y| \ge 15`.
40734073
::
40744074
40754075
sage: T(x^3*y^2, coefficient=42, valid_from={'x': 10, 'y': 20})
40764076
B(42*x^3*y^2, x >= 10, y >= 20)
40774077
4078-
This is a term bounded by `42 |x|^3 |y|^2` for `|x| >= 10` and `|y| >= 20`.
4078+
This is a term bounded by `42 |x|^3 |y|^2` for `|x| \ge 10` and `|y| \ge 20`.
40794079
40804080
"""
40814081
def __init__(self, parent, growth, coefficient, valid_from):

0 commit comments

Comments
 (0)