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

Commit

Permalink
Initial commit, minimal change
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorkarn committed Jun 13, 2022
1 parent 3ab2bcd commit 3fd9f51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/algebras/clifford_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from sage.matrix.args import MatrixArgs
from sage.sets.family import Family
from sage.combinat.free_module import CombinatorialFreeModule
from sage.combinat.subset import SubsetsSorted
from sage.combinat.subset import SubsetsSorted_bits
from sage.quadratic_forms.quadratic_form import QuadraticForm
from sage.algebras.weyl_algebra import repr_from_monomials
from sage.misc.inherit_comparison import InheritComparisonClasscallMetaclass
Expand Down Expand Up @@ -551,7 +551,7 @@ def __init__(self, Q, names, category=None):
self._quadratic_form = Q
R = Q.base_ring()
category = AlgebrasWithBasis(R.category()).Super().Filtered().FiniteDimensional().or_subcategory(category)
indices = SubsetsSorted(range(Q.dim()))
indices = SubsetsSorted_bits(range(Q.dim()))
CombinatorialFreeModule.__init__(self, R, indices, category=category)
self._assign_names(names)

Expand Down

0 comments on commit 3fd9f51

Please sign in to comment.