Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit c2de94a

Browse files
committed
15346: sync to develop
1 parent cb78603 commit c2de94a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/sage/symbolic/expression.pyx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8185,8 +8185,7 @@ cdef class Expression(CommutativeRingElement):
81858185
def simplify_full(self):
81868186
"""
81878187
Apply :meth:`simplify_factorial`, :meth:`simplify_rectform`,
8188-
:meth:`simplify_trig`, :meth:`simplify_rational`,
8189-
:meth:`simplify_log`, again :meth:`simplify_rational`, and
8188+
:meth:`simplify_trig`, :meth:`simplify_rational`, and
81908189
then :meth:`expand_sum` to self (in that order).
81918190
81928191
ALIAS: ``simplify_full`` and ``full_simplify`` are the same.
@@ -8263,8 +8262,6 @@ cdef class Expression(CommutativeRingElement):
82638262
x = x.simplify_rectform()
82648263
x = x.simplify_trig()
82658264
x = x.simplify_rational()
8266-
x = x.simplify_log('one')
8267-
x = x.simplify_rational()
82688265
x = x.expand_sum()
82698266
return x
82708267

0 commit comments

Comments
 (0)