-
Notifications
You must be signed in to change notification settings - Fork 63
/
YoungTabs.jl
905 lines (750 loc) · 23.2 KB
/
YoungTabs.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
##############################################################################
#
# Partition type, AbstractVector interface
#
##############################################################################
@doc raw"""
size(p::Partition)
Return the size of the vector which represents the partition.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> p = Partition([4,3,1]); size(p)
(3,)
```
"""
size(p::Partition) = size(p.part)
@doc raw"""
getindex(p::Partition, i::Integer)
Return the `i`-th part (in non-increasing order) of the partition.
"""
getindex(p::Partition, i::Integer) = p.part[i]
Base.sum(p::Partition) = p.n
==(p::Partition, m::Partition) = sum(p) == sum(m) && p.part == m.part
hash(p::Partition, h::UInt) = hash(p.part, hash(Partition, h))
##############################################################################
#
# IO for Partition
#
##############################################################################
function subscriptify(n::Int)
subscript_0 = Int(0x2080) # Char(0x2080) -> subscript 0
return join([Char(subscript_0 + i) for i in reverse(digits(n))])
end
function show(io::IO, p::Partition)
uniq = unique(p.part)
mults = [count(i -> i == u, p.part) for u in uniq]
str = join((string(u)*subscriptify(m) for (u,m) in zip(uniq, mults)))
print(io, str)
end
show(io::IO, ::MIME"text/plain", p::Partition) = show(io, p)
##############################################################################
#
# Iterator interface for Integer AllParts
#
##############################################################################
const _numPartsTable = Dict{Int, Int}(0 => 1, 1 => 1, 2 => 2)
const _numPartsTableBig = Dict{Int, BigInt}()
@doc raw"""
_numpart(n::Integer)
Return the number of all distinct integer partitions of `n`. The function
uses Euler pentagonal number theorem for recursive formula. For more details
see OEIS sequence [A000041](https://oeis.org/A000041). Note that
`_numpart(0) = 1` by convention.
"""
function _numpart(n::Integer)
if n < 0
return 0
elseif n < 395
return _numpart(Int(n), _numPartsTable)
else
return _numpart(BigInt(n), _numPartsTableBig)
end
end
function _numpart(n::T, lookuptable::Dict{Int, T}) where T<:Integer
s = zero(T)
if !haskey(lookuptable, n)
for j in 1:floor(T, (1 + Base.sqrt(1 + 24n))/6)
p1 = _numpart(n - div(j*(3j - 1), 2))
p2 = _numpart(n - div(j*(3j + 1), 2))
s += (-1)^(j - 1)*(p1 + p2)
end
lookuptable[n] = s
end
return lookuptable[n]
end
# Implemented following RuleAsc (Algorithm 3.1) from
# "Generating All Partitions: A Comparison Of Two Encodings"
# by Jerome Kelleher and Barry O’Sullivan, ArXiv:0909.2331
@inline function Base.iterate(A::AllParts)
resize!(A.part, A.n)
resize!(A.tmp, A.n)
A.tmp .= 1
A.part .= 1
return A.part, max(A.n, one(A.n))
end
@inline function Base.iterate(A::AllParts, k)
isone(k) && return nothing
k = @inbounds nextpart_asc!(A.tmp, k)
resize!(A.part, k)
for i in 1:k
A.part[i] = A.tmp[k-i+1]
end
return A.part, k
end
Base.length(A::AllParts) = _numpart(A.n)
Base.eltype(::Type{AllParts{T}}) where T = Vector{T}
@inline function nextpart_asc!(part, k)
iszero(k) && return one(k)
y = part[k] - one(k)
k -= one(k)
x = part[k] + one(k)
while x <= y
part[k] = x
y -= x
k += one(k)
end
part[k] = x + y
return k
end
@doc raw"""
partitions(n::Integer)
Return the vector of all permutations of `n`. For an unsafe generator version
see `partitions!`.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> Generic.partitions(5)
7-element Vector{AbstractAlgebra.Generic.Partition{Int64}}:
1₅
2₁1₃
3₁1₂
2₂1₁
4₁1₁
3₁2₁
5₁
```
"""
partitions(n::Integer) = [Partition(n, copy(p), false) for p in AllParts(n)]
partitions!(n::Integer) = (Partition(n, p, false) for p in AllParts(n))
@doc raw"""
conj(part::Partition)
Return the conjugated partition of `part`, i.e. the partition corresponding
to the Young diagram of `part` reflected through the main diagonal.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> p = Partition([4,2,1,1,1])
4₁2₁1₃
julia> conj(p)
5₁2₁1₂
```
"""
function Base.conj(part::Partition)
p = Vector{Int}(undef, maximum(part))
for i in 1:sum(part)
for j in length(part):-1:1
if part[j] >= i
p[i] = j
break
end
end
end
return Partition(p, false)
end
@doc raw"""
conj(part::Partition, v::Vector)
Return the conjugated partition of `part` together with permuted vector `v`.
"""
function Base.conj(part::Partition, v::Vector)
w = zeros(eltype(part), size(v))
acc = Vector{Int}(undef, length(part)+1)
acc[1] = 0
for i in 1:length(part)
acc[i+1] = acc[i] + part[i]
end
new_idx = 1
cpart = conj(part)
for (i, p) in enumerate(cpart)
for j in 1:p
w[new_idx] = (v[acc[j]+i])
new_idx += 1
end
end
return cpart, w
end
##############################################################################
#
# Partition sequences and Murnaghan-Nakayama formula
#
##############################################################################
@doc raw"""
partitionseq(lambda::Partition)
Return a sequence (as `BitVector`) of `false`s and `true`s constructed from
`lambda`: tracing the lower contour of the Young Diagram associated to
`lambda` from left to right a `true` is inserted for every horizontal and
`false` for every vertical step. The sequence always starts with `true` and
ends with `false`.
"""
function partitionseq(lambda::Partition)
seq = trues(maximum(lambda) + length(lambda))
j = lambda[end]
for i in (length(lambda)-1):-1:1
seq[j+1] = false
j += lambda[i] - lambda[i+1] + 1
end
seq[j+1] = false
return seq
end
partitionseq(v::Vector{T}) where T<:Integer = partitionseq(Partition(v))
@doc raw"""
partitionseq(seq::BitVector)
Return the essential part of the sequence `seq`, i.e. a subsequence starting
at first `true` and ending at last `false`.
"""
partitionseq(seq::BitVector) = seq[something(findfirst(isequal(true), seq), 0):something(findlast(isequal(false), seq), 0)]
@doc raw"""
is_rimhook(R::BitVector, idx::Integer, len::Integer)
`R[idx:idx+len]` forms a rim hook in the Young Diagram of partition
corresponding to `R` iff `R[idx] == true` and `R[idx+len] == false`.
"""
function is_rimhook(R::BitVector, idx::Integer, len::Integer)
return (R[idx+len] == false) && (R[idx] == true)
end
@doc raw"""
MN1inner(R::BitVector, mu::Partition, t::Integer, charvals)
Return the value of $\lambda$-th irreducible character on conjugacy class of
permutations represented by partition `mu`, where `R` is the (binary)
partition sequence representing $\lambda$. Values already computed are stored
in `charvals::Dict{Tuple{BitVector,Vector{Int}}, Int}`.
This is an implementation (with slight modifications) of the
Murnaghan-Nakayama formula as described in
Dan Bernstein,
"The computational complexity of rules for the character table of Sn"
_Journal of Symbolic Computation_, 37(6), 2004, p. 727-748.
"""
function MN1inner(R::BitVector, mu::Partition, t::Integer, charvals)
if t > length(mu)
chi = 1
elseif mu[t] > length(R)
chi = 0
else
chi = 0
sgn = false
for j in 1:mu[t]-1
if R[j] == false
sgn = !sgn
end
end
for i in 1:length(R)-mu[t]
if R[i] != R[i+mu[t]-1]
sgn = !sgn
end
if is_rimhook(R, i, mu[t])
R[i], R[i+mu[t]] = R[i+mu[t]], R[i]
essR = (partitionseq(R), mu[t+1:end])
if !haskey(charvals, essR)
charvals[essR] = MN1inner(R, mu, t+1, charvals)
end
chi += (-1)^Int(sgn)*charvals[essR]
R[i], R[i+mu[t]] = R[i+mu[t]], R[i]
end
end
end
return chi
end
##############################################################################
#
# YoungTableau type, AbstractArray interface
#
##############################################################################
YoungTableau(p::Vector{T}, fill=collect(1:sum(p))) where T<:Integer = YoungTableau(Partition(p), fill)
@doc raw"""
size(Y::YoungTableau)
Return `size` of the smallest array containing `Y`, i.e. the tuple of the
number of rows and the number of columns of `Y`.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> y = YoungTableau([4,3,1]); size(y)
(3, 4)
```
"""
size(Y::YoungTableau) = (length(Y.part), Y.part[1])
Base.IndexStyle(::Type{<:YoungTableau}) = Base.IndexLinear()
function inyoungtab(t::Tuple{Integer,Integer}, Y::YoungTableau)
i,j = t
i > length(Y.part) && return false
Y.part[i] < j && return false
return true
end
@doc raw"""
getindex(Y::YoungTableau, n::Integer)
Return the column-major linear index into the `size(Y)`-array. If a box is
outside of the array return `0`.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> y = YoungTableau([4,3,1])
┌───┬───┬───┬───┐
│ 1 │ 2 │ 3 │ 4 │
├───┼───┼───┼───┘
│ 5 │ 6 │ 7 │
├───┼───┴───┘
│ 8 │
└───┘
julia> y[1]
1
julia> y[2]
5
julia> y[4]
2
julia> y[6]
0
```
"""
function getindex(Y::YoungTableau, n::Integer)
if n < 1 #|| n > length(Y)
throw(BoundsError(Y.fill, n))
else
i, j = Tuple(CartesianIndices(Y)[n])
if inyoungtab((i,j), Y)
k = sum(Y.part[1:i-1]) + j
return Y.fill[k]
else
return 0
end
end
end
function ==(Y1::YoungTableau,Y2::YoungTableau)
Y1.part == Y2.part || return false
Y1.fill == Y2.fill || return false
return true
end
hash(Y::YoungTableau, h::UInt) = hash(Y.part, hash(Y.fill, hash(typeof(Y), h)))
Base.copy(Y::YoungTableau) = YoungTableau(Y.part, copy(Y.fill))
##############################################################################
#
# String I/O for YoungTableaux
#
##############################################################################
function Base.replace_in_print_matrix(Y::YoungTableau, i::Integer, j::Integer, s::AbstractString)
inyoungtab((i,j), Y) ? s : Base.replace_with_centered_mark(s, c=' ')
end
const _border = Dict{Symbol,String}(
:vertical => "│",
:horizontal => "─",
:topleft => "┌", # corners
:topright => "┐",
:bottomleft => "└",
:bottomright => "┘",
:downstem => "┬", #top edge
:upstem => "┴", #bottom edge
:rightstem => "├", # left edge
:leftstem => "┤", # right edge
:cross => "┼")
function boxed_str(Y::YoungTableau, fill=Y.fill)
r,c = size(Y)
w = max(length(string(maximum(fill))), 3)
horizontal = repeat(_border[:horizontal], w)
diagram = String[]
s = String("")
counter = 1
for i in 1:r
if i == 1 # top rule:
s =_border[:topleft]*
join(Iterators.repeated(horizontal, c), _border[:downstem])*
_border[:topright]
else # upper rule:
s = _border[:rightstem]
if Y.part[i-1] - Y.part[i] > 0
s *= join(Iterators.repeated(horizontal, Y.part[i]),
_border[:cross])
s *=_border[:cross]
s *= join(Iterators.repeated(horizontal,
Y.part[i-1] - Y.part[i]),
_border[:upstem])
s *= _border[:bottomright]
else
s *= join(Iterators.repeated(horizontal, Y.part[i]),
_border[:cross])
s *= _border[:leftstem]
end
end
push!(diagram, s)
# contents of each row:
s = _border[:vertical]
for j in 1:Y.part[i]
s *= rpad(lpad(fill[counter], div(w, 2) + 1), w) *_border[:vertical]
counter += 1
end
push!(diagram, s)
end
# bottom rule
s = _border[:bottomleft]
s *= join(Iterators.repeated(horizontal, Y.part[r]), _border[:upstem])
s *= _border[:bottomright]
push!(diagram, s)
return join(diagram, "\n")
end
mutable struct YoungTabDisplayStyle
format::Symbol
end
const _youngtabstyle = YoungTabDisplayStyle(:diagram)
@doc raw"""
setyoungtabstyle(format::Symbol)
Select the style in which Young tableaux are displayed (in REPL or in general
as string). This can be either
* `:array` - as matrices of integers, or
* `:diagram` - as filled Young diagrams (the default).
The difference is purely esthetical.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> Generic.setyoungtabstyle(:array)
:array
julia> p = Partition([4,3,1]); YoungTableau(p)
1 2 3 4
5 6 7
8
julia> Generic.setyoungtabstyle(:diagram)
:diagram
julia> YoungTableau(p)
┌───┬───┬───┬───┐
│ 1 │ 2 │ 3 │ 4 │
├───┼───┼───┼───┘
│ 5 │ 6 │ 7 │
├───┼───┴───┘
│ 8 │
└───┘
```
"""
function setyoungtabstyle(s::Symbol)
@assert s in (:diagram, :array)
_youngtabstyle.format = s
_youngtabstyle.format
end
function Base.show(io::IO, ::MIME"text/plain", Y::YoungTableau)
if _youngtabstyle.format == :array
Base.print_matrix(io, Y)
elseif _youngtabstyle.format == :diagram
print(io, boxed_str(Y))
end
end
##############################################################################
#
# Misc functions for YoungTableaux
#
##############################################################################
@doc raw"""
matrix_repr(Y::YoungTableau)
Construct sparse integer matrix representing the tableau.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> y = YoungTableau([4,3,1]);
julia> matrix_repr(y)
3×4 SparseArrays.SparseMatrixCSC{Int64, Int64} with 8 stored entries:
1 2 3 4
5 6 7 ⋅
8 ⋅ ⋅ ⋅
```
"""
function matrix_repr(Y::YoungTableau{T}) where T
tab = spzeros(T, length(Y.part), Y.part[1])
k=1
for (idx, p) in enumerate(Y.part)
tab[idx, 1:p] = Y.fill[k:k+p-1]
k += p
end
return tab
end
@doc raw"""
fill!(Y::YoungTableaux, V::Vector{<:Integer})
Replace the fill vector `Y.fill` by `V`. No check if the resulting tableau is
standard (i.e. increasing along rows and columns) is performed.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> y = YoungTableau([4,3,1])
┌───┬───┬───┬───┐
│ 1 │ 2 │ 3 │ 4 │
├───┼───┼───┼───┘
│ 5 │ 6 │ 7 │
├───┼───┴───┘
│ 8 │
└───┘
julia> fill!(y, [2:9...])
┌───┬───┬───┬───┐
│ 2 │ 3 │ 4 │ 5 │
├───┼───┼───┼───┘
│ 6 │ 7 │ 8 │
├───┼───┴───┘
│ 9 │
└───┘
```
"""
function Base.fill!(Y::YoungTableau, V::AbstractVector{<:Integer})
length(V) == sum(Y.part) || throw(ArgumentError("Length of fill vector must match the size of partition"))
Y.fill .= V
return Y
end
@doc raw"""
conj(Y::YoungTableau)
Return the conjugated tableau, i.e. the tableau reflected through the main
diagonal.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> y = YoungTableau([4,3,1])
┌───┬───┬───┬───┐
│ 1 │ 2 │ 3 │ 4 │
├───┼───┼───┼───┘
│ 5 │ 6 │ 7 │
├───┼───┴───┘
│ 8 │
└───┘
julia> conj(y)
┌───┬───┬───┐
│ 1 │ 5 │ 8 │
├───┼───┼───┘
│ 2 │ 6 │
├───┼───┤
│ 3 │ 7 │
├───┼───┘
│ 4 │
└───┘
```
"""
Base.conj(Y::YoungTableau) = YoungTableau(conj(Y.part, Y.fill)...)
@doc raw"""
rowlength(Y::YoungTableau, i, j)
Return the row length of `Y` at box `(i,j)`, i.e. the number of boxes in the
`i`-th row of the diagram of `Y` located to the right of the `(i,j)`-th box.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> y = YoungTableau([4,3,1])
┌───┬───┬───┬───┐
│ 1 │ 2 │ 3 │ 4 │
├───┼───┼───┼───┘
│ 5 │ 6 │ 7 │
├───┼───┴───┘
│ 8 │
└───┘
julia> Generic.rowlength(y, 1,2)
2
julia> Generic.rowlength(y, 2,3)
0
julia> Generic.rowlength(y, 3,3)
0
```
"""
rowlength(Y::YoungTableau, i::Integer, j::Integer) = Y.part[i] < j ? 0 : Y.part[i]-j
@doc raw"""
collength(Y::YoungTableau, i, j)
Return the column length of `Y` at box `(i,j)`, i.e. the number of boxes in
the `j`-th column of the diagram of `Y` located below of the `(i,j)`-th box.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> y = YoungTableau([4,3,1])
┌───┬───┬───┬───┐
│ 1 │ 2 │ 3 │ 4 │
├───┼───┼───┼───┘
│ 5 │ 6 │ 7 │
├───┼───┴───┘
│ 8 │
└───┘
julia> Generic.collength(y, 1,1)
2
julia> Generic.collength(y, 1,3)
1
julia> Generic.collength(y, 2,4)
0
```
"""
collength(Y::YoungTableau, i::Integer, j::Integer) = count(x -> x>=j, view(Y.part, i+1:lastindex(Y.part)))
@doc raw"""
hooklength(Y::YoungTableau, i, j)
Return the hook-length of an element in `Y` at position `(i,j)`, i.e the
number of cells in the `i`-th row to the right of `(i,j)`-th box, plus the
number of cells in the `j`-th column below the `(i,j)`-th box, plus `1`.
Return `0` for `(i,j)` not in the tableau `Y`.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> y = YoungTableau([4,3,1])
┌───┬───┬───┬───┐
│ 1 │ 2 │ 3 │ 4 │
├───┼───┼───┼───┘
│ 5 │ 6 │ 7 │
├───┼───┴───┘
│ 8 │
└───┘
julia> hooklength(y, 1,1)
6
julia> hooklength(y, 1,3)
3
julia> hooklength(y, 2,4)
0
```
"""
function hooklength(Y::YoungTableau, i::Integer, j::Integer)
if inyoungtab((i,j), Y)
return rowlength(Y, i, j) + collength(Y, i, j) + 1
else
return 0
end
end
@doc raw"""
dim(Y::YoungTableau) -> BigInt
Return the dimension (using hook-length formula) of the irreducible
representation of permutation group $S_n$ associated the partition `Y.part`.
Since the computation overflows easily `BigInt` is returned. You may perform
the computation of the dimension in different type by calling `dim(Int, Y)`.
# Examples
```jldoctest; setup = :(using AbstractAlgebra)
julia> dim(YoungTableau([4,3,1]))
70
julia> dim(YoungTableau([3,1])) # the regular representation of S_4
3
```
"""
dim(Y::YoungTableau) = dim(BigInt, Y)
function dim(::Type{T}, Y::YoungTableau) where T<:Integer
n, m = size(Y)
num = factorial(T(sum(Y.part)))
den = reduce(*, (hooklength(Y,i,j) for i in 1:n, j in 1:m if j <= Y.part[i]), init=one(T))
return divexact(num, den)::T
end
##############################################################################
#
# SkewDiagrams
#
##############################################################################
SkewDiagram(lambda::AbstractVector{<:Integer}, mu::AbstractVector{<:Integer}) = SkewDiagram(Partition(lambda), Partition(mu))
/(lambda::Partition, mu::Partition) = SkewDiagram(lambda, mu)
@doc raw"""
size(xi::SkewDiagram)
Return the size of array where `xi` is minimally contained.
See `size(Y::YoungTableau)` for more details.
"""
Base.size(xi::SkewDiagram) = (length(xi.lam), xi.lam[1])
Base.IndexStyle(::Type{<:SkewDiagram}) = Base.IndexLinear()
@doc raw"""
in(t::Tuple{Integer,Integer}, xi::SkewDiagram)
Check if box at position `(i,j)` belongs to the skew diagram `xi`.
"""
function Base.in(t::Tuple{Integer, Integer}, xi::SkewDiagram)
i,j = t
if i <= 0 || j <= 0
return false
elseif i > length(xi.lam) || j > xi.lam[1]
return false
elseif length(xi.mu) >= i
return xi.mu[i] < j <= xi.lam[i]
else
return j <= xi.lam[i]
end
end
@doc raw"""
getindex(xi::SkewDiagram, n::Integer)
Return `1` if linear index `n` corresponds to (column-major) entry in
`xi.lam` which is not contained in `xi.mu`. Otherwise return `0`.
"""
function getindex(xi::SkewDiagram, n::Integer)
i, j = Tuple(CartesianIndices(xi)[n])
(i,j) in xi && return 1
return 0
end
==(xi::SkewDiagram, psi::SkewDiagram) = xi.lam == psi.lam && xi.mu == psi.mu
hash(xi::SkewDiagram, h::UInt) = hash(xi.lam, hash(xi.mu, hash(typeof(xi), h)))
###############################################################################
#
# String I/O
#
###############################################################################
function Base.replace_in_print_matrix(xi::SkewDiagram, i::Integer, j::Integer, s::AbstractString)
if j > xi.lam[i]
Base.replace_with_centered_mark(s, c=' ')
elseif i <= length(xi.mu)
j > xi.mu[i] ? s : Base.replace_with_centered_mark(s)
else
s
end
end
##############################################################################
#
# Misc functions for SkewDiagrams
#
##############################################################################
@doc raw"""
matrix_repr(xi::SkewDiagram)
Return a sparse representation of the diagram `xi`, i.e. a sparse array `A`
where `A[i,j] == 1` if and only if `(i,j)` is in `xi.lam` but not in `xi.mu`.
"""
function matrix_repr(xi::SkewDiagram)
skdiag = spzeros(eltype(xi), size(xi)...)
for i in 1:length(xi.mu)
skdiag[i, xi.mu[i]+1:xi.lam[i]] .= 1
end
for i in length(xi.mu)+1:length(xi.lam)
skdiag[i,1:xi.lam[i]] .= 1
end
return skdiag
end
@doc raw"""
has_left_neighbor(xi::SkewDiagram, i::Integer, j::Integer)
Check if box at position `(i,j)` has neighbour in `xi` to the left.
"""
function has_left_neighbor(xi::SkewDiagram, i::Integer, j::Integer)
if j == 1
return false
else
return (i,j) in xi && (i,j-1) in xi
end
end
@doc raw"""
has_bottom_neighbor(xi::SkewDiagram, i::Integer, j::Integer)
Check if box at position `(i,j)` has neighbour in `xi` below.
"""
function has_bottom_neighbor(xi::SkewDiagram, i::Integer, j::Integer)
if i == length(xi.lam)
return false
else
return (i,j) in xi && (i+1,j) in xi
end
end
@doc raw"""
is_rimhook(xi::SkewDiagram)
Check if `xi` represents a rim-hook diagram, i.e. its diagram is
edge-connected and contains no $2\times 2$ squares.
"""
function is_rimhook(xi::SkewDiagram{T}) where T
i = 1
j = xi.lam[1]
while i != length(xi.lam) && j != 1
left = has_left_neighbor(xi, i,j)
bottom = has_bottom_neighbor(xi, i,j)
if left && bottom # there is 2×2 square in xi
return false
elseif left
j -= 1
elseif bottom
i += 1
else
lam_tail = xi.lam[i+1:end]
mu_tail = zeros(T, length(lam_tail))
mu_tail[1:length(xi.mu)-i] = xi.mu[i+1:end]
if any(lam_tail .- mu_tail .> 0)
return false # xi is disconnected
else
return true # we arrived at the end of xi
end
end
end
return true
end
@doc raw"""
leglength(xi::SkewDiagram[, check::Bool=true])
Compute the leglength of a rim-hook `xi`, i.e. the number of rows with
non-zero entries minus one. If `check` is `false` function will not check
whether `xi` is actually a rim-hook.
"""
function leglength(xi::SkewDiagram, check::Bool=true)
if check
is_rimhook(xi) || throw(ArgumentError("$xi is not a rimhook. leglength is defined only for rim hooks"))
end
m = zeros(length(xi.lam))
m[1:length(xi.mu)] = xi.mu
return sum((xi.lam .- m) .> 0) - 1
end