@@ -139,42 +139,65 @@ function TensorMap(data::AbstractDict{<:Sector,<:DenseMatrix}, codom::ProductSpa
139
139
F₂ = fusiontreetype (I, N₂)
140
140
rowr = SectorDict {I, FusionTreeDict{F₁, UnitRange{Int}}} ()
141
141
colr = SectorDict {I, FusionTreeDict{F₂, UnitRange{Int}}} ()
142
- blockiterator = blocksectors (codom ← dom)
143
- for c in blockiterator
144
- rowrc = FusionTreeDict {F₁, UnitRange{Int}} ()
145
- colrc = FusionTreeDict {F₂, UnitRange{Int}} ()
146
- offset1 = 0
147
- for s1 in sectors (codom)
142
+ rowdims = SectorDict {I, Int} ()
143
+ coldims = SectorDict {I, Int} ()
144
+ if N₁ == 0 || N₂ == 0
145
+ blocksectoriterator = (one (I),)
146
+ elseif N₂ <= N₁
147
+ blocksectoriterator = blocksectors (dom)
148
+ else
149
+ blocksectoriterator = blocksectors (codom)
150
+ end
151
+ for s1 in sectors (codom)
152
+ for c in blocksectoriterator
153
+ offset1 = get! (rowdims, c, 0 )
154
+ rowrc = get! (rowr, c) do
155
+ FusionTreeDict {F₁, UnitRange{Int}} ()
156
+ end
148
157
for f1 in fusiontrees (s1, c, map (isdual, codom. spaces))
149
158
r = (offset1 + 1 ): (offset1 + dim (codom, s1))
150
159
push! (rowrc, f1 => r)
151
160
offset1 = last (r)
152
161
end
162
+ rowdims[c] = offset1
153
163
end
154
- offset2 = 0
155
- for s2 in sectors (dom)
164
+ end
165
+ for s2 in sectors (dom)
166
+ for c in blocksectoriterator
167
+ offset2 = get! (coldims, c, 0 )
168
+ colrc = get! (colr, c) do
169
+ FusionTreeDict {F₂, UnitRange{Int}} ()
170
+ end
156
171
for f2 in fusiontrees (s2, c, map (isdual, dom. spaces))
157
172
r = (offset2 + 1 ): (offset2 + dim (dom, s2))
158
173
push! (colrc, f2 => r)
159
174
offset2 = last (r)
160
175
end
176
+ coldims[c] = offset2
161
177
end
162
- (haskey (data, c) && size (data[c]) == (offset1, offset2)) ||
178
+ end
179
+ for c in blocksectoriterator
180
+ dim1 = get! (rowdims, c, 0 )
181
+ dim2 = get! (coldims, c, 0 )
182
+ if dim1 == 0 || dim2 == 0
183
+ delete! (rowr, c)
184
+ delete! (colr, c)
185
+ else
186
+ (haskey (data, c) && size (data[c]) == (dim1, dim2)) ||
163
187
throw (DimensionMismatch ())
164
- push! (rowr, c=> rowrc)
165
- push! (colr, c=> colrc)
188
+ end
166
189
end
167
190
if ! isreal (I) && eltype (valtype (data)) <: Real
168
191
b = valtype (data)(undef, (0 ,0 ))
169
192
V = typeof (complex (b))
170
193
K = keytype (data)
171
- data2 = SectorDict {K,V} ((c=> complex (data[c])) for c in blockiterator )
194
+ data2 = SectorDict {K,V} ((c=> complex (data[c])) for c in keys (rowr) )
172
195
A = typeof (data2)
173
196
return TensorMap {S, N₁, N₂, I, A, F₁, F₂} (data2, codom, dom, rowr, colr)
174
197
else
175
198
V = valtype (data)
176
199
K = keytype (data)
177
- data2 = SectorDict {K,V} ((c=> data[c]) for c in blockiterator )
200
+ data2 = SectorDict {K,V} ((c=> data[c]) for c in keys (rowr) )
178
201
A = typeof (data2)
179
202
return TensorMap {S, N₁, N₂, I, A, F₁, F₂} (data2, codom, dom, rowr, colr)
180
203
end
@@ -202,30 +225,52 @@ function TensorMap(f, codom::ProductSpace{S,N₁}, dom::ProductSpace{S,N₂}) wh
202
225
data = SectorDict {I,A} ()
203
226
rowr = SectorDict {I, FusionTreeDict{F₁, UnitRange{Int}}} ()
204
227
colr = SectorDict {I, FusionTreeDict{F₂, UnitRange{Int}}} ()
205
- for c in blocksectors (codom ← dom)
206
- rowrc = FusionTreeDict {F₁, UnitRange{Int}} ()
207
- colrc = FusionTreeDict {F₂, UnitRange{Int}} ()
208
- offset1 = 0
209
- for s1 in sectors (codom)
228
+ rowdims = SectorDict {I, Int} ()
229
+ coldims = SectorDict {I, Int} ()
230
+ if N₁ == 0 || N₂ == 0
231
+ blocksectoriterator = (one (I),)
232
+ elseif N₂ <= N₁
233
+ blocksectoriterator = blocksectors (dom)
234
+ else
235
+ blocksectoriterator = blocksectors (codom)
236
+ end
237
+ for s1 in sectors (codom)
238
+ for c in blocksectoriterator
239
+ offset1 = get! (rowdims, c, 0 )
240
+ rowrc = get! (rowr, c) do
241
+ FusionTreeDict {F₁, UnitRange{Int}} ()
242
+ end
210
243
for f1 in fusiontrees (s1, c, map (isdual, codom. spaces))
211
244
r = (offset1 + 1 ): (offset1 + dim (codom, s1))
212
245
push! (rowrc, f1 => r)
213
246
offset1 = last (r)
214
247
end
248
+ rowdims[c] = offset1
215
249
end
216
- dim1 = offset1
217
- offset2 = 0
218
- for s2 in sectors (dom)
250
+ end
251
+ for s2 in sectors (dom)
252
+ for c in blocksectoriterator
253
+ offset2 = get! (coldims, c, 0 )
254
+ colrc = get! (colr, c) do
255
+ FusionTreeDict {F₂, UnitRange{Int}} ()
256
+ end
219
257
for f2 in fusiontrees (s2, c, map (isdual, dom. spaces))
220
258
r = (offset2 + 1 ): (offset2 + dim (dom, s2))
221
259
push! (colrc, f2 => r)
222
260
offset2 = last (r)
223
261
end
262
+ coldims[c] = offset2
263
+ end
264
+ end
265
+ for c in blocksectoriterator
266
+ dim1 = get! (rowdims, c, 0 )
267
+ dim2 = get! (coldims, c, 0 )
268
+ if dim1 == 0 || dim2 == 0
269
+ delete! (rowr, c)
270
+ delete! (colr, c)
271
+ else
272
+ data[c] = f ((dim1, dim2))
224
273
end
225
- dim2 = offset2
226
- push! (data, c=> f ((dim1, dim2)))
227
- push! (rowr, c=> rowrc)
228
- push! (colr, c=> colrc)
229
274
end
230
275
return TensorMap {S, N₁, N₂, I, SectorDict{I,A}, F₁, F₂} (data, codom, dom, rowr, colr)
231
276
end
0 commit comments