|
25 | 25 | """
|
26 | 26 | # install the docstring of this module to the containing package
|
27 | 27 | from sage.misc.namespace_package import install_doc
|
28 |
| - |
29 | 28 | install_doc(__package__, __doc__)
|
30 | 29 |
|
| 30 | +from sage.categories import primer |
| 31 | + |
| 32 | +from sage.misc.lazy_import import lazy_import |
31 | 33 |
|
32 | 34 | from sage.categories.all__sagemath_objects import *
|
| 35 | + |
33 | 36 | from sage.categories.basic import *
|
34 | 37 |
|
| 38 | +from sage.categories.chain_complexes import ChainComplexes, HomologyFunctor |
| 39 | + |
| 40 | +from sage.categories.simplicial_complexes import SimplicialComplexes |
| 41 | + |
| 42 | +from sage.categories.tensor import tensor |
| 43 | +from sage.categories.signed_tensor import tensor_signed |
| 44 | + |
| 45 | +from sage.categories.g_sets import GSets |
| 46 | +from sage.categories.pointed_sets import PointedSets |
| 47 | + |
| 48 | +from sage.categories.sets_with_grading import SetsWithGrading |
| 49 | + |
| 50 | +from sage.categories.groupoid import Groupoid |
| 51 | +from sage.categories.permutation_groups import PermutationGroups |
| 52 | + |
35 | 53 | # enumerated sets
|
| 54 | +from sage.categories.finite_sets import FiniteSets |
| 55 | +from sage.categories.enumerated_sets import EnumeratedSets |
| 56 | +from sage.categories.finite_enumerated_sets import FiniteEnumeratedSets |
| 57 | +from sage.categories.infinite_enumerated_sets import InfiniteEnumeratedSets |
| 58 | + |
36 | 59 | # posets
|
| 60 | +from sage.categories.posets import Posets |
| 61 | +from sage.categories.finite_posets import FinitePosets |
| 62 | +from sage.categories.lattice_posets import LatticePosets |
| 63 | +from sage.categories.finite_lattice_posets import FiniteLatticePosets |
| 64 | + |
37 | 65 | # finite groups/...
|
| 66 | +from sage.categories.finite_semigroups import FiniteSemigroups |
| 67 | +from sage.categories.finite_monoids import FiniteMonoids |
| 68 | +from sage.categories.finite_groups import FiniteGroups |
| 69 | +from sage.categories.finite_permutation_groups import FinitePermutationGroups |
| 70 | + |
38 | 71 | # fields
|
| 72 | +from sage.categories.number_fields import NumberFields |
| 73 | +from sage.categories.function_fields import FunctionFields |
| 74 | + |
39 | 75 | # modules
|
40 |
| -from sage.categories.modules import Modules |
41 |
| -from sage.misc.lazy_import import lazy_import |
| 76 | +from sage.categories.left_modules import LeftModules |
| 77 | +from sage.categories.right_modules import RightModules |
| 78 | +from sage.categories.bimodules import Bimodules |
42 | 79 |
|
| 80 | +from sage.categories.modules import Modules |
43 | 81 | RingModules = Modules
|
| 82 | +from sage.categories.vector_spaces import VectorSpaces |
44 | 83 |
|
45 | 84 | # (hopf) algebra structures
|
| 85 | +from sage.categories.algebras import Algebras |
| 86 | +from sage.categories.commutative_algebras import CommutativeAlgebras |
| 87 | +from sage.categories.coalgebras import Coalgebras |
| 88 | +from sage.categories.bialgebras import Bialgebras |
| 89 | +from sage.categories.hopf_algebras import HopfAlgebras |
| 90 | +from sage.categories.lie_algebras import LieAlgebras |
46 | 91 |
|
47 | 92 | # specific algebras
|
| 93 | +from sage.categories.monoid_algebras import MonoidAlgebras |
| 94 | +from sage.categories.group_algebras import GroupAlgebras |
| 95 | +from sage.categories.matrix_algebras import MatrixAlgebras |
48 | 96 |
|
49 | 97 | # ideals
|
50 | 98 | from sage.categories.ring_ideals import RingIdeals
|
51 |
| - |
52 | 99 | Ideals = RingIdeals
|
| 100 | +from sage.categories.commutative_ring_ideals import CommutativeRingIdeals |
| 101 | +from sage.categories.algebra_modules import AlgebraModules |
| 102 | +from sage.categories.algebra_ideals import AlgebraIdeals |
| 103 | +from sage.categories.commutative_algebra_ideals import CommutativeAlgebraIdeals |
53 | 104 |
|
54 | 105 | # schemes and varieties
|
| 106 | +from sage.categories.modular_abelian_varieties import ModularAbelianVarieties |
| 107 | +from sage.categories.schemes import Schemes |
55 | 108 |
|
56 | 109 | # * with basis
|
57 | 110 | from sage.categories.modules_with_basis import ModulesWithBasis
|
58 |
| - |
59 | 111 | FreeModules = ModulesWithBasis
|
| 112 | +from sage.categories.hecke_modules import HeckeModules |
| 113 | +from sage.categories.algebras_with_basis import AlgebrasWithBasis |
| 114 | +from sage.categories.coalgebras_with_basis import CoalgebrasWithBasis |
| 115 | +from sage.categories.bialgebras_with_basis import BialgebrasWithBasis |
| 116 | +from sage.categories.hopf_algebras_with_basis import HopfAlgebrasWithBasis |
60 | 117 |
|
61 | 118 | # finite dimensional * with basis
|
| 119 | +from sage.categories.finite_dimensional_modules_with_basis import FiniteDimensionalModulesWithBasis |
| 120 | +from sage.categories.finite_dimensional_algebras_with_basis import FiniteDimensionalAlgebrasWithBasis |
| 121 | +from sage.categories.finite_dimensional_coalgebras_with_basis import FiniteDimensionalCoalgebrasWithBasis |
| 122 | +from sage.categories.finite_dimensional_bialgebras_with_basis import FiniteDimensionalBialgebrasWithBasis |
| 123 | +from sage.categories.finite_dimensional_hopf_algebras_with_basis import FiniteDimensionalHopfAlgebrasWithBasis |
62 | 124 |
|
63 | 125 | # graded *
|
| 126 | +from sage.categories.graded_modules import GradedModules |
| 127 | +from sage.categories.graded_algebras import GradedAlgebras |
| 128 | +from sage.categories.graded_coalgebras import GradedCoalgebras |
| 129 | +from sage.categories.graded_bialgebras import GradedBialgebras |
| 130 | +from sage.categories.graded_hopf_algebras import GradedHopfAlgebras |
64 | 131 |
|
65 | 132 | # graded * with basis
|
| 133 | +from sage.categories.graded_modules_with_basis import GradedModulesWithBasis |
| 134 | +from sage.categories.graded_algebras_with_basis import GradedAlgebrasWithBasis |
| 135 | +from sage.categories.graded_coalgebras_with_basis import GradedCoalgebrasWithBasis |
| 136 | +from sage.categories.graded_bialgebras_with_basis import GradedBialgebrasWithBasis |
| 137 | +from sage.categories.graded_hopf_algebras_with_basis import GradedHopfAlgebrasWithBasis |
66 | 138 |
|
67 | 139 | # Coxeter groups
|
| 140 | +from sage.categories.coxeter_groups import CoxeterGroups |
68 | 141 | lazy_import('sage.categories.finite_coxeter_groups', 'FiniteCoxeterGroups')
|
| 142 | +from sage.categories.weyl_groups import WeylGroups |
| 143 | +from sage.categories.finite_weyl_groups import FiniteWeylGroups |
| 144 | +from sage.categories.affine_weyl_groups import AffineWeylGroups |
69 | 145 |
|
70 | 146 | # crystal bases
|
| 147 | +from sage.categories.crystals import Crystals |
| 148 | +from sage.categories.highest_weight_crystals import HighestWeightCrystals |
| 149 | +from sage.categories.regular_crystals import RegularCrystals |
| 150 | +from sage.categories.finite_crystals import FiniteCrystals |
| 151 | +from sage.categories.classical_crystals import ClassicalCrystals |
71 | 152 |
|
72 | 153 | # polyhedra
|
73 | 154 | lazy_import('sage.categories.polyhedra', 'PolyhedralSets')
|
|
0 commit comments