Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/modules/all.py
4036 views
1
#*****************************************************************************
2
# Copyright (C) 2005 William Stein <[email protected]>
3
#
4
# Distributed under the terms of the GNU General Public License (GPL)
5
#
6
# This code is distributed in the hope that it will be useful,
7
# but WITHOUT ANY WARRANTY; without even the implied warranty of
8
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9
# General Public License for more details.
10
#
11
# The full text of the GPL is available at:
12
#
13
# http://www.gnu.org/licenses/
14
#*****************************************************************************
15
16
from free_module import FreeModule, VectorSpace, span, is_FreeModule
17
18
from free_quadratic_module import FreeQuadraticModule, QuadraticSpace, InnerProductSpace, is_FreeQuadraticModule
19
20
from free_module_element import is_FreeModuleElement, vector, free_module_element, zero_vector, random_vector
21
22
from free_module_homspace import is_FreeModuleHomspace
23
24
from free_module_morphism import is_FreeModuleMorphism
25
26
from module import is_Module, is_VectorSpace
27
28
from module_element import ModuleElement, is_ModuleElement
29
30
import vector_callable_symbolic_dense
31
32
from vector_space_homspace import is_VectorSpaceHomspace
33
34
from vector_space_morphism import is_VectorSpaceMorphism, linear_transformation
35
36
import vector_symbolic_dense
37
38