|
304 | 304 | # *****************************************************************************
|
305 | 305 |
|
306 | 306 | from sage.tensor.modules.free_module_tensor import FreeModuleTensor
|
| 307 | +from sage.manifolds.chart import Chart |
307 | 308 | from sage.manifolds.differentiable.tensorfield import TensorField
|
308 | 309 | from sage.parallel.decorate import parallel
|
309 | 310 | from sage.parallel.parallelism import Parallelism
|
@@ -727,6 +728,37 @@ def _del_derived(self, del_restrictions=True):
|
727 | 728 | if del_restrictions:
|
728 | 729 | self._del_restrictions()
|
729 | 730 |
|
| 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 | + |
730 | 762 | def _set_comp_unsafe(self, basis=None):
|
731 | 763 | r"""
|
732 | 764 | Return the components of the tensor field in a given vector frame
|
|
0 commit comments