@@ -8,7 +8,8 @@ using ITensorMPS: ITensorMPS, MPS, MPO, AbstractMPS
8
8
using ITensorMPS: findsite, linkinds, linkind, findsites
9
9
10
10
import Quantics: Quantics, _find_site_allplevs, combinesites, extractdiagonal, _asdiagonal
11
- import PartitionedMPSs: PartitionedMPSs, SubDomainMPS, PartitionedMPS, isprojectedat, project
11
+ import PartitionedMPSs: PartitionedMPSs, SubDomainMPS, PartitionedMPS, isprojectedat,
12
+ project
12
13
13
14
function Quantics. makesitediagonal (subdmps:: SubDomainMPS , site:: Index )
14
15
return _makesitediagonal (subdmps, site; baseplev= 0 )
@@ -18,7 +19,6 @@ function Quantics.makesitediagonal(subdmps::SubDomainMPS, sites::AbstractVector{
18
19
return _makesitediagonal (subdmps, sites; baseplev= 0 )
19
20
end
20
21
21
-
22
22
function Quantics. makesitediagonal (subdmps:: SubDomainMPS , tag:: String )
23
23
mps_diagonal = Quantics. makesitediagonal (MPS (subdmps), tag)
24
24
subdmps_diagonal = SubDomainMPS (mps_diagonal)
@@ -38,7 +38,7 @@ function Quantics.makesitediagonal(subdmps::SubDomainMPS, tag::String)
38
38
end
39
39
40
40
function _makesitediagonal (
41
- subdmps:: SubDomainMPS , sites:: AbstractVector{Index{IndsT}} ; baseplev= 0
41
+ subdmps:: SubDomainMPS , sites:: AbstractVector{Index{IndsT}} ; baseplev= 0
42
42
) where {IndsT}
43
43
M_ = deepcopy (MPO (collect (MPS (subdmps))))
44
44
for site in sites
@@ -52,9 +52,8 @@ function _makesitediagonal(subdmps::SubDomainMPS, site::Index; baseplev=0)
52
52
return _makesitediagonal (subdmps, [site]; baseplev= baseplev)
53
53
end
54
54
55
-
56
55
function Quantics. extractdiagonal (
57
- subdmps:: SubDomainMPS , sites:: AbstractVector{Index{IndsT}}
56
+ subdmps:: SubDomainMPS , sites:: AbstractVector{Index{IndsT}}
58
57
) where {IndsT}
59
58
tensors = collect (subdmps. data)
60
59
for i in eachindex (tensors)
@@ -96,20 +95,17 @@ function Quantics.rearrange_siteinds(partmps::PartitionedMPS, sites)
96
95
return PartitionedMPSs. rearrange_siteinds (partmps, sites)
97
96
end
98
97
99
-
100
98
"""
101
99
Make the PartitionedMPS diagonal for a given site index `s` by introducing a dummy index `s'`.
102
100
"""
103
101
function Quantics. makesitediagonal (obj:: PartitionedMPS , site)
104
- return PartitionedMPS ([
105
- _makesitediagonal (prjmps, site; baseplev= baseplev) for prjmps in values (obj)
106
- ])
102
+ return PartitionedMPS ([_makesitediagonal (prjmps, site; baseplev= baseplev)
103
+ for prjmps in values (obj)])
107
104
end
108
105
109
106
function _makesitediagonal (obj:: PartitionedMPS , site; baseplev= 0 )
110
- return PartitionedMPS ([
111
- _makesitediagonal (prjmps, site; baseplev= baseplev) for prjmps in values (obj)
112
- ])
107
+ return PartitionedMPS ([_makesitediagonal (prjmps, site; baseplev= baseplev)
108
+ for prjmps in values (obj)])
113
109
end
114
110
115
111
"""
@@ -120,20 +116,19 @@ function Quantics.extractdiagonal(obj::PartitionedMPS, site)
120
116
return PartitionedMPS ([extractdiagonal (prjmps, site) for prjmps in values (obj)])
121
117
end
122
118
123
-
124
119
"""
125
120
By default, elementwise multiplication will be performed.
126
121
"""
127
122
function Quantics. automul (
128
- M1:: PartitionedMPS ,
129
- M2:: PartitionedMPS ;
130
- tag_row:: String = " " ,
131
- tag_shared:: String = " " ,
132
- tag_col:: String = " " ,
133
- alg= " naive" ,
134
- maxdim= typemax (Int),
135
- cutoff= 1e-25 ,
136
- kwargs... ,
123
+ M1:: PartitionedMPS ,
124
+ M2:: PartitionedMPS ;
125
+ tag_row:: String = " " ,
126
+ tag_shared:: String = " " ,
127
+ tag_col:: String = " " ,
128
+ alg= " naive" ,
129
+ maxdim= typemax (Int),
130
+ cutoff= 1e-25 ,
131
+ kwargs...
137
132
)
138
133
all (length .(siteinds (M1)) .== 1 ) || error (" M1 should have only 1 site index per site" )
139
134
all (length .(siteinds (M2)) .== 1 ) || error (" M2 should have only 1 site index per site" )
@@ -154,9 +149,11 @@ function Quantics.automul(
154
149
sites_M1_diag = [collect (x) for x in siteinds (M1)]
155
150
sites_M2_diag = [collect (x) for x in siteinds (M2)]
156
151
157
- M1 = Quantics. rearrange_siteinds (M1, combinesites (sites_M1_diag, sites_row, sites_shared))
152
+ M1 = Quantics. rearrange_siteinds (
153
+ M1, combinesites (sites_M1_diag, sites_row, sites_shared))
158
154
159
- M2 = Quantics. rearrange_siteinds (M2, combinesites (sites_M2_diag, sites_shared, sites_col))
155
+ M2 = Quantics. rearrange_siteinds (
156
+ M2, combinesites (sites_M2_diag, sites_shared, sites_col))
160
157
161
158
M = PartitionedMPSs. contract (M1, M2; alg= alg, kwargs... )
162
159
@@ -177,7 +174,8 @@ function Quantics.automul(
177
174
end
178
175
end
179
176
end
180
- return PartitionedMPSs. truncate (Quantics. rearrange_siteinds (M, ressites); cutoff= cutoff, maxdim= maxdim)
177
+ return PartitionedMPSs. truncate (
178
+ Quantics. rearrange_siteinds (M, ressites); cutoff= cutoff, maxdim= maxdim)
181
179
end
182
180
183
181
function _findallsiteinds_by_tag (M:: PartitionedMPS ; tag= tag)
0 commit comments