You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ticket add chain homotopies, chain contractions, and duals of chain
maps and chain homotopies. This is a dependency for #6101 and #6102.
URL: http://trac.sagemath.org/19179
Reported by: jhpalmieri
Ticket author(s): John Palmieri
Reviewer(s): Frédéric Chapoton
Copy file name to clipboardexpand all lines: src/sage/homology/chain_complex_homspace.py
+9-3
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,9 @@
23
23
sage: i = H.identity()
24
24
sage: x = i.associated_chain_complex_morphism(augmented=True)
25
25
sage: x
26
-
Chain complex morphism from Chain complex with at most 4 nonzero terms over Integer Ring to Chain complex with at most 4 nonzero terms over Integer Ring
26
+
Chain complex morphism
27
+
From: Chain complex with at most 4 nonzero terms over Integer Ring
28
+
To: Chain complex with at most 4 nonzero terms over Integer Ring
27
29
sage: x._matrix_dictionary
28
30
{-1: [1], 0: [1 0 0 0 0 0 0 0 0]
29
31
[0 1 0 0 0 0 0 0 0]
@@ -62,11 +64,15 @@
62
64
sage: i = A.identity()
63
65
sage: x = i.associated_chain_complex_morphism()
64
66
sage: x
65
-
Chain complex morphism from Chain complex with at most 3 nonzero terms over Integer Ring to Chain complex with at most 3 nonzero terms over Integer Ring
67
+
Chain complex morphism
68
+
From: Chain complex with at most 3 nonzero terms over Integer Ring
69
+
To: Chain complex with at most 3 nonzero terms over Integer Ring
66
70
sage: y = x*4
67
71
sage: z = y*y
68
72
sage: (y+z)
69
-
Chain complex morphism from Chain complex with at most 3 nonzero terms over Integer Ring to Chain complex with at most 3 nonzero terms over Integer Ring
73
+
Chain complex morphism
74
+
From: Chain complex with at most 3 nonzero terms over Integer Ring
75
+
To: Chain complex with at most 3 nonzero terms over Integer Ring
Copy file name to clipboardexpand all lines: src/sage/homology/chain_complex_morphism.py
+124-34
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,9 @@
27
27
sage: G = Hom(C,C)
28
28
sage: x = G(f)
29
29
sage: x
30
-
Chain complex morphism from Chain complex with at most 2 nonzero terms over Integer Ring to Chain complex with at most 2 nonzero terms over Integer Ring
30
+
Chain complex morphism
31
+
From: Chain complex with at most 2 nonzero terms over Integer Ring
32
+
To: Chain complex with at most 2 nonzero terms over Integer Ring
31
33
sage: x._matrix_dictionary
32
34
{0: [0 0 0]
33
35
[0 0 0]
@@ -71,8 +73,9 @@ def is_ChainComplexMorphism(x):
71
73
sage: i = H.identity()
72
74
sage: x = i.associated_chain_complex_morphism()
73
75
sage: x # indirect doctest
74
-
Chain complex morphism from Chain complex with at most 7 nonzero terms over
75
-
Integer Ring to Chain complex with at most 7 nonzero terms over Integer Ring
76
+
Chain complex morphism
77
+
From: Chain complex with at most 7 nonzero terms over Integer Ring
78
+
To: Chain complex with at most 7 nonzero terms over Integer Ring
ValueError: matrix in degree 0 is not the right size
132
135
sage: Hom(C,D)({0: matrix(2, 1, [1, 1])}) # 2x1 is right.
133
-
Chain complex morphism from Chain complex with at most 1 nonzero terms over Integer Ring to Chain complex with at most 1 nonzero terms over Integer Ring
136
+
Chain complex morphism
137
+
From: Chain complex with at most 1 nonzero terms over Integer Ring
138
+
To: Chain complex with at most 1 nonzero terms over Integer Ring
134
139
"""
135
140
ifnotC.base_ring() ==D.base_ring():
136
141
raiseNotImplementedError('morphisms between chain complexes of different'
Chain complex morphism from Chain complex with at most 1 nonzero terms over Integer Ring to Chain complex with at most 1 nonzero terms over Integer Ring
426
+
Chain complex morphism
427
+
From: Chain complex with at most 1 nonzero terms over Integer Ring
428
+
To: Chain complex with at most 1 nonzero terms over Integer Ring
0 commit comments