This repository was archived by the owner on Jan 30, 2023. It is now read-only.
File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 14
14
# ****************************************************************************
15
15
16
16
from sage .categories .covariant_functorial_construction import CovariantFunctorialConstruction , CovariantConstructionCategory
17
+ from sage .typeset .unicode_characters import unicode_bigotimes
17
18
18
19
19
20
class SignedTensorProductFunctor (CovariantFunctorialConstruction ):
@@ -55,7 +56,7 @@ class SignedTensorProductFunctor(CovariantFunctorialConstruction):
55
56
_functor_name = "tensor"
56
57
_functor_category = "SignedTensorProducts"
57
58
symbol = " # "
58
- unicode_symbol = " ⨂ "
59
+ unicode_symbol = " " + unicode_bigotimes + " "
59
60
60
61
def _repr_ (self ):
61
62
"""
Original file line number Diff line number Diff line change 14
14
# ****************************************************************************
15
15
16
16
from sage .categories .covariant_functorial_construction import CovariantFunctorialConstruction , CovariantConstructionCategory
17
+ from sage .typeset .unicode_characters import unicode_bigotimes
17
18
18
19
19
20
class TensorProductFunctor (CovariantFunctorialConstruction ):
@@ -50,7 +51,7 @@ class TensorProductFunctor(CovariantFunctorialConstruction):
50
51
_functor_name = "tensor"
51
52
_functor_category = "TensorProducts"
52
53
symbol = " # "
53
- unicode_symbol = " ⨂ "
54
+ unicode_symbol = " " + unicode_bigotimes + " "
54
55
55
56
56
57
tensor = TensorProductFunctor ()
Original file line number Diff line number Diff line change 1
1
r"""
2
- Unicode characters
2
+ Unicode Characters
3
3
4
4
This module provides Python identifiers for Unicode characters corresponding
5
5
to various mathematical symbols.
You can’t perform that action at this time.
0 commit comments