Skip to content

Commit 11684c2

Browse files
author
Release Manager
committed
Trac #32708: sage.tensor.modules: remove dependency on sage.manifolds
In view of Sage modularization, this ticket removes the only import from `sage.manifolds` in the module `sage.tensor.modules`. This was an import of `Chart` in `FreeModuleTensor._preparse_display`. This is avoided by reimplementing `_preparse_display` in `TensorFieldParal`. URL: https://trac.sagemath.org/32708 Reported by: egourgoulhon Ticket author(s): Eric Gourgoulhon Reviewer(s): Matthias Koeppe
2 parents a8e7da2 + 1635bd3 commit 11684c2

File tree

2 files changed

+32
-11
lines changed

2 files changed

+32
-11
lines changed

src/sage/manifolds/differentiable/tensorfield_paral.py

+32
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@
304304
# *****************************************************************************
305305

306306
from sage.tensor.modules.free_module_tensor import FreeModuleTensor
307+
from sage.manifolds.chart import Chart
307308
from sage.manifolds.differentiable.tensorfield import TensorField
308309
from sage.parallel.decorate import parallel
309310
from sage.parallel.parallelism import Parallelism
@@ -727,6 +728,37 @@ def _del_derived(self, del_restrictions=True):
727728
if del_restrictions:
728729
self._del_restrictions()
729730

731+
def _preparse_display(self, basis=None, format_spec=None):
732+
r"""
733+
Helper function, to be used by FreeModuleTensor.display.
734+
735+
TESTS::
736+
737+
sage: M = Manifold(2, 'M')
738+
sage: X.<x,y> = M.chart()
739+
sage: t = M.tensor_field(1, 1)
740+
sage: t._preparse_display()
741+
(Coordinate frame (M, (∂/∂x,∂/∂y)), None)
742+
sage: t._preparse_display(X.frame())
743+
(Coordinate frame (M, (∂/∂x,∂/∂y)), None)
744+
sage: t._preparse_display(X.frame(), X)
745+
(Coordinate frame (M, (∂/∂x,∂/∂y)), Chart (M, (x, y)))
746+
sage: t._preparse_display(X) # passing a chart instead of a frame
747+
(Coordinate frame (M, (∂/∂x,∂/∂y)), Chart (M, (x, y)))
748+
749+
"""
750+
if basis is None:
751+
basis = self._fmodule._def_basis
752+
elif isinstance(basis, Chart):
753+
# a coordinate chart has been passed instead of a vector frame;
754+
# the frame is then assumed to be the coordinate frame
755+
# associated to the chart:
756+
if format_spec is None:
757+
format_spec = basis
758+
basis = basis.frame()
759+
return (basis, format_spec)
760+
761+
730762
def _set_comp_unsafe(self, basis=None):
731763
r"""
732764
Return the components of the tensor field in a given vector frame

src/sage/tensor/modules/free_module_tensor.py

-11
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,6 @@ class being:
200200
from sage.tensor.modules.tensor_with_indices import TensorWithIndices
201201
from sage.parallel.decorate import parallel
202202
from sage.parallel.parallelism import Parallelism
203-
from sage.manifolds.chart import Chart
204-
205-
# TODO: remove the import of Chart after _preparse_display has been redefined
206-
# in tensor fields
207203

208204
class FreeModuleTensor(ModuleElementWithMutability):
209205
r"""
@@ -583,13 +579,6 @@ def _preparse_display(self, basis=None, format_spec=None):
583579
"""
584580
if basis is None:
585581
basis = self._fmodule._def_basis
586-
elif isinstance(basis, Chart):
587-
# a coordinate chart has been passed instead of a basis;
588-
# the basis is then assumed to be the coordinate frame
589-
# associated to the chart:
590-
if format_spec is None:
591-
format_spec = basis
592-
basis = basis.frame()
593582
return (basis, format_spec)
594583

595584
def display(self, basis=None, format_spec=None):

0 commit comments

Comments
 (0)