Skip to content

Commit a43c018

Browse files
committed
Add subcomplex extraction by edge set, add matrix column filtering, systolic cycles visualization
1 parent b35fe2d commit a43c018

16 files changed

+839
-453
lines changed

calg_cayley_expander.go

+30-27
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ import (
1010
// xxx rename CalGCayleyComplex?
1111
// xxx genericise to use any group with comparable element type?
1212
type CalGCayleyExpander struct {
13-
gens []ElementCalG
14-
maxDepth int
15-
curDepth int
16-
verbose bool
17-
modulus *F2Polynomial
18-
quotient bool
19-
attendance map[ElementCalG]vertexWrapper
20-
vertexBasis []ZVertex[ElementCalG]
21-
todo calGTodoQueue
22-
edgeSet map[ZEdge[ElementCalG]]any
23-
edgeBasis []ZEdge[ElementCalG]
13+
gens []ElementCalG
14+
maxDepth int
15+
curDepth int
16+
verbose bool
17+
modulus *F2Polynomial
18+
quotient bool
19+
attendance map[ElementCalG]vertexWrapper
20+
vertexBasis []ZVertex[ElementCalG]
21+
todo calGTodoQueue
22+
edgeSet map[ZEdge[ElementCalG]]any
23+
edgeBasis []ZEdge[ElementCalG]
2424
congruenceSubgroupElements []ElementCalG
25-
observer CalGObserver
25+
observer CalGObserver
2626
}
2727

2828
type CalGObserver interface {
@@ -35,7 +35,7 @@ type CalGObserver interface {
3535
}
3636

3737
type vertexWrapper struct {
38-
id int
38+
id int
3939
// when a new vertex is created (i.e. we compute a new group
4040
// element that has not yet been seen, i.e. is not in the
4141
// attendance map), we store the generator that was used to
@@ -98,15 +98,15 @@ func (E *CalGCayleyExpander) Expand() {
9898
E.observer.EndVertices()
9999
}
100100
// xxx experimental for debugging;
101-
// checkCongruenceConsistency1 := true
102-
// if checkCongruenceConsistency1 {
103-
// log.Printf("checking for multiple congruence subgroup identities")
104-
// for g, id := range E.attendance {
105-
// if g.IsIdentityModf(*E.modulus) {
106-
// log.Printf("found congruence subgroup identity: g=(%v) id=%d", g, id)
107-
// }
108-
// }
109-
// }
101+
// checkCongruenceConsistency1 := true
102+
// if checkCongruenceConsistency1 {
103+
// log.Printf("checking for multiple congruence subgroup identities")
104+
// for g, id := range E.attendance {
105+
// if g.IsIdentityModf(*E.modulus) {
106+
// log.Printf("found congruence subgroup identity: g=(%v) id=%d", g, id)
107+
// }
108+
// }
109+
// }
110110
}
111111

112112
func (E *CalGCayleyExpander) Complex() *ZComplex[ElementCalG] {
@@ -139,12 +139,12 @@ func (E *CalGCayleyExpander) getOrSetVertex(u ElementCalG, genIndex int, uDepth
139139
}
140140
uId = len(E.attendance)
141141
wrapper = vertexWrapper{
142-
id: uId,
142+
id: uId,
143143
generator: genIndex,
144144
}
145145
E.attendance[u] = wrapper
146146
E.vertexBasis = append(E.vertexBasis, u)
147-
147+
148148
// check for congruence subgroup element, unless we are doing a quotient
149149
if E.modulus != nil && !E.quotient && !u.IsIdentity() {
150150
c := u.Modf(*E.modulus)
@@ -361,12 +361,12 @@ func (E *CalGCayleyExpander) triangleToSortedVertexIndices(t ZTriangle[ElementCa
361361
func (E *CalGCayleyExpander) triangleBasis() []ZTriangle[ElementCalG] {
362362
if E.verbose {
363363
log.Printf("computing triangle basis")
364-
}
364+
}
365365
//
366366
// f g h
367367
// u --- v --- w --- x
368368
//
369-
basis := make([]ZTriangle[ElementCalG], 0)
369+
basis := make([]ZTriangle[ElementCalG], 0)
370370
triangleSet := make(map[ZTriangle[ElementCalG]]any)
371371
for _, u := range E.vertexBasis {
372372
u := u.(ElementCalG)
@@ -467,7 +467,10 @@ func NewZComplexElementCalGFromBasisFiles(vertexBasisFile, edgeBasisFile, triang
467467
if verbose {
468468
log.Printf("reading triangle basis file %s", triangleBasisFile)
469469
}
470-
triangleBasis := ReadElementCalGTriangleFile(triangleBasisFile)
470+
var triangleBasis []ZTriangle[ElementCalG]
471+
if triangleBasisFile != "" {
472+
triangleBasis = ReadElementCalGTriangleFile(triangleBasisFile)
473+
}
471474
sortBases := false
472475
return NewZComplex(vertexBasis, edgeBasis, triangleBasis, sortBases, verbose)
473476
}

cmd/calg-cayley/main.go

+17-17
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import (
88

99
// Usage:
1010
//
11-
// calg-cayley -truncate-generators=0 -max-depth=0 -modulus=111 -quotient
12-
//
11+
// calg-cayley -truncate-generators=0 -max-depth=0 -modulus=111 -quotient
1312
func main() {
1413
args := parseFlags()
1514
args.ProfileArgs.Start()
@@ -64,7 +63,7 @@ func computeSystolicCandidates(args *CalGCayleyExpanderArgs, f golsv.F2Polynomia
6463
maxDepth = 0
6564
E = golsv.NewCalGCayleyExpander(gens, maxDepth, args.Verbose, &f, quotient, nil)
6665
E.Expand()
67-
66+
6867
// now, project the candidates to the quotient complex, i.e. take
6968
// each vertex mod f. by construction, this ought to be a no-op
7069
// except for the last vertex, but let's verify that to be
@@ -81,6 +80,7 @@ func computeSystolicCandidates(args *CalGCayleyExpanderArgs, f golsv.F2Polynomia
8180
complex := E.Complex()
8281
writeComplexFiles(complex, args)
8382

83+
// xxx despite the comment, this doesn't appear to be de-duping
8484
log.Printf("converting candidates to edge vectors and deduping")
8585
vecs := make(map[string]golsv.BinaryVector)
8686
for _, path := range candidatePaths {
@@ -155,27 +155,27 @@ func dumpElements(els []golsv.ElementCalG) string {
155155
}
156156

157157
type CalGCayleyExpanderArgs struct {
158-
D1File string
159-
D2File string
160-
EdgeBasisFile string
161-
MaxDepth int
162-
MeshFile string
163-
Modulus string
164-
Quotient bool
158+
D1File string
159+
D2File string
160+
EdgeBasisFile string
161+
MaxDepth int
162+
MeshFile string
163+
Modulus string
164+
Quotient bool
165165
SystolicCandidatesFile string
166-
TriangleBasisFile string
167-
TruncateGenerators int
168-
Verbose bool
169-
VertexBasisFile string
166+
TriangleBasisFile string
167+
TruncateGenerators int
168+
Verbose bool
169+
VertexBasisFile string
170170
golsv.ProfileArgs
171171
}
172172

173173
func parseFlags() *CalGCayleyExpanderArgs {
174174
args := CalGCayleyExpanderArgs{
175-
MaxDepth: -1,
175+
MaxDepth: -1,
176176
TruncateGenerators: 0,
177-
Verbose: true,
178-
Modulus: "111",
177+
Verbose: true,
178+
Modulus: "111",
179179
}
180180
args.ProfileArgs.ConfigureFlags()
181181
flag.StringVar(&args.D1File, "d1", args.D1File, "d1 output file (sparse column support txt format)")

0 commit comments

Comments
 (0)