Skip to content

Commit a4aab67

Browse files
committed
add check=False twice
1 parent 5c0d5ea commit a4aab67

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/sage/combinat/root_system/reflection_group_real.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ def right_coset_representatives(self, J):
695695
from sage.combinat.root_system.reflection_group_element import _gap_return
696696
J_inv = [self._index_set_inverse[j] + 1 for j in J]
697697
S = str(gap3('ReducedRightCosetRepresentatives(%s,ReflectionSubgroup(%s,%s))' % (self._gap_group._name, self._gap_group._name, J_inv)))
698-
return [self(w) for w in _gap_return(S)]
698+
return [self(w, check=False) for w in _gap_return(S)]
699699

700700
def simple_root_index(self, i):
701701
r"""
@@ -820,7 +820,7 @@ def right_coset_representatives(self):
820820
if self.fix_space().is_subspace(T[i].fix_space())]
821821
S = str(gap3('ReducedRightCosetRepresentatives(%s,ReflectionSubgroup(%s,%s))' % (W._gap_group._name, W._gap_group._name, T_fix)))
822822
from sage.combinat.root_system.reflection_group_element import _gap_return
823-
return [W(w) for w in _gap_return(S)]
823+
return [W(w, check=False) for w in _gap_return(S)]
824824

825825
def left_coset_representatives(self):
826826
r"""

0 commit comments

Comments
 (0)