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

Commit

Permalink
updated the new doctests to be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
stumpc5 committed Jul 6, 2016
1 parent f17422a commit 6e97757
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/sage/combinat/subword_complex_c.pyx
Expand Up @@ -18,13 +18,13 @@ cpdef int _flip_c(W, set positions, list extended_root_conf_indices,
EXAMPLES::
sage: from sage.combinat.subword_complex_c import _flip_c
sage: W = ReflectionGroup(['A',2])
sage: w = W.from_reduced_word([1,2,1])
sage: SC = SubwordComplex([1,2,1,2,1], w)
sage: F = SC([0, 1])
sage: _flip_c(W, set([0,1]), F._extended_root_configuration_indices(), 1)
sage: W = ReflectionGroup(['A',2]) # optional - gap3
sage: w = W.from_reduced_word([1,2,1]) # optional - gap3
sage: SC = SubwordComplex([1,2,1,2,1], w) # optional - gap3
sage: F = SC([0, 1]) # optional - gap3
sage: _flip_c(W, set([0,1]), F._extended_root_configuration_indices(), 1) # optional - gap3
4
sage: _flip_c(W, set([0,1]), F._extended_root_configuration_indices(), 0)
sage: _flip_c(W, set([0,1]), F._extended_root_configuration_indices(), 0) # optional - gap3
3
sage: W = CoxeterGroup(['A',2])
Expand Down

0 comments on commit 6e97757

Please sign in to comment.