Skip to content

Commit

Permalink
Test the leading monomial is correct
Browse files Browse the repository at this point in the history
  • Loading branch information
antonio-rojas committed Sep 22, 2024
1 parent 082e8dd commit 84dd3e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/libs/singular/option.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ By default, tail reductions are performed::
If we don't want this, we can create an option context, which disables
this::
sage: with opt_ctx(red_tail=False, red_sb=False): # random - depends on singular version
sage: with opt_ctx(red_tail=False, red_sb=False):
....: notred = std(I)[-1]; notred
d^2*e^6 + 8*c^3 + ...
d^2*e^6 + ...
sage: len(list(red)) < len(list(notred))
True
Expand Down

0 comments on commit 84dd3e5

Please sign in to comment.