Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
VectorFieldFreeModule.tensor_module: For (0,1), use the dual
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Sep 6, 2022
1 parent c7428e2 commit 8bfb9ff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sage/manifolds/differentiable/vectorfield_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -1794,6 +1794,8 @@ def tensor_module(self, k, l):
except KeyError:
if (k, l) == (1, 0):
T = self
elif (k, l) == (0, 1):
T = self.dual()
else:
from sage.manifolds.differentiable.tensorfield_module import \
TensorFieldFreeModule
Expand Down

0 comments on commit 8bfb9ff

Please sign in to comment.