-
-
Notifications
You must be signed in to change notification settings - Fork 484
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matthias Koeppe
committed
Nov 8, 2023
1 parent
ebef87a
commit 79b1797
Showing
177 changed files
with
1,009 additions
and
768 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from sage.misc.lazy_import import lazy_import | ||
|
||
|
||
# Algebra base classes | ||
lazy_import('sage.algebras.free_algebra', 'FreeAlgebra') | ||
lazy_import('sage.algebras.free_algebra_quotient', 'FreeAlgebraQuotient') | ||
|
||
from .steenrod.all import * | ||
from .quantum_groups.all import * | ||
|
||
lazy_import('sage.algebras.iwahori_hecke_algebra', 'IwahoriHeckeAlgebra') | ||
lazy_import('sage.algebras.affine_nil_temperley_lieb', | ||
'AffineNilTemperleyLiebTypeA') | ||
lazy_import('sage.algebras.nil_coxeter_algebra', 'NilCoxeterAlgebra') | ||
lazy_import('sage.algebras.schur_algebra', ['SchurAlgebra', | ||
'SchurTensorModule']) | ||
|
||
lazy_import('sage.algebras.hall_algebra', 'HallAlgebra') | ||
|
||
lazy_import('sage.algebras.jordan_algebra', 'JordanAlgebra') | ||
|
||
lazy_import('sage.algebras.shuffle_algebra', 'ShuffleAlgebra') | ||
|
||
lazy_import('sage.algebras.commutative_dga', 'GradedCommutativeAlgebra') | ||
|
||
lazy_import('sage.algebras.rational_cherednik_algebra', | ||
'RationalCherednikAlgebra') | ||
|
||
lazy_import('sage.algebras.tensor_algebra', 'TensorAlgebra') | ||
|
||
lazy_import('sage.algebras.q_system', 'QSystem') | ||
|
||
lazy_import('sage.algebras.cluster_algebra', 'ClusterAlgebra') | ||
|
||
lazy_import('sage.algebras.yangian', 'Yangian') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from sage.misc.lazy_import import lazy_import | ||
|
||
lazy_import('sage.algebras.group_algebra', 'GroupAlgebra') | ||
|
||
from .algebra import Algebra | ||
from .finite_dimensional_algebras.all import FiniteDimensionalAlgebra | ||
from .clifford_algebra import CliffordAlgebra, ExteriorAlgebra | ||
from .weyl_algebra import DifferentialWeylAlgebra | ||
lazy_import('sage.algebras.octonion_algebra', 'OctonionAlgebra') | ||
|
||
import sage.algebras.catalog as algebras |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
""" | ||
The Steenrod algebra | ||
""" | ||
from .steenrod_algebra import SteenrodAlgebra, Sq | ||
from sage.misc.lazy_import import lazy_import | ||
lazy_import('sage.algebras.steenrod.steenrod_algebra', ['SteenrodAlgebra', 'Sq']) | ||
lazy_import('sage.algebras.steenrod.steenrod_algebra_bases', | ||
'steenrod_algebra_basis', | ||
deprecation=(32647, 'removed from namespace')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# The presence of this file ensures that sage_setup for sagemath-objects | ||
# considers this directory as a namespace package | ||
|
||
from sage.arith.power import generic_power as power |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .functional import diff, derivative, expand, simplify, taylor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from .all__sagemath_categories import * | ||
|
||
from .integration import numerical_integral, monte_carlo_integral | ||
integral_numerical = numerical_integral | ||
|
||
from .interpolation import spline, Spline | ||
|
||
from .functions import wronskian, jacobian | ||
|
||
from .ode import ode_solver, ode_system | ||
|
||
# We lazy_import the following modules since they import numpy which slows down sage startup | ||
from sage.misc.lazy_import import lazy_import | ||
lazy_import("sage.calculus.riemann", ["Riemann_Map"]) | ||
lazy_import("sage.calculus.interpolators", ["polygon_spline","complex_cubic_spline"]) | ||
|
||
from .transforms.all import * |
Empty file.
Empty file.
Oops, something went wrong.